The post Using PeeringDB to set up your internet exchange peering appeared first on Noction.
Carole Warner Reece explains how she resolved a vPC port channel problem involving Nexus 5500 switches and NetApp controllers.
Learn how to get the most accurate results using an optical loss test set.
Russ White wrote a great blog post about our failure to predict the future. The part I love most:
If the definition of insanity is doing the same things over and over again, each time expecting different results, what does that say about the world of network engineering?
Enjoy!
There is little doubt that 2017 will be a dense year for deep learning. With a sudden new wave of applications that integrate neural networks into existing workflows (not to mention entirely new uses) and a fresh array of hardware architectures to meet them, we expect the space to start shaking out its early winners and losers and show a clearer path ahead.
As we described earlier this week, Intel has big plans to integrate the Nervana ASIC and software stack with its Knights family of processors in the next several years. This effort, codenamed Knights Crest, is a long-term …
Inside Intel’s Strategy to Integrate Nervana Deep Learning Assets was written by Nicole Hemsoth at The Next Platform.
The company's New Look might be prone to more tweaking.
In this post, I’m going to show you how to use the GNOME Keyring on Fedora 25 as a credential helper for Git. This post is very closely related to my earlier post on using GNOME Keyring as a Git credential helper on Ubuntu 16.04. As with the earlier Ubuntu-related post, what I’m including here isn’t new or ground-breaking information; I’m posting it primarily to make the information easier to find for others.
Like Ubuntu 16.04, Fedora 25 already has the basis for integrating GNOME Keyring into Git as a credential helper already installed into the /usr/share/doc/git-core-doc/contrib/credential/gnome-keyring
directory.
Unlike Ubuntu 16.04, though, Fedora already has a compiled credential helper installed. This Git credential helper is found at /usr/libexec/git-core/git-credential-gnome-keyring
. This credential helper is ready to use.
To get GNOME Keyring support for storing Git credentials, then, all one has to do is simply configure Git appropriately (no need to install additional packages or compile anything). You can configure Git via a couple of different ways:
You can use the git config
command, like this:
git config --global credential.helper /usr/libexec/git-core/git-credential-gnome-keyring
You can edit ~/.gitconfig
directly, using the text editor of your choice. Add this text:
[credential]
helper Continue reading