The post Worth Reading: The selfish act of eating appeared first on 'net work.
Back to GIT! Just to have a quick recap of the things we’ve seen in the first part of our GIT deep dive, I am going to create a brand new repo, some files and commit everything:
$ mkdir myrepo2
$ cd myrepo2
$ git init
Initialized empty Git repository in /Users/huidesa/myrepo2/.git/
$ touch file1
$ touch license_agreement
$ touch installer.exe
$ touch hello.lib
$ git status
On branch master
Initial commit
Untracked files:
(use “git add <file>…” to include in what will be committed)
file1
hello.lib
installer.exe
license_agreement
nothing added to commit but untracked files present (use “git add” to track)
$ git add *
$ git status
On branch master
Initial commit
Changes to be committed:
(use “git rm –cached <file>…” to unstage)
new file: file1
new file: hello.lib
new file: installer.exe
new file: license_agreement
$ git commit -m “Creating my project”
[master (root-commit) ac129d8] Creating my project
Committer: Alexandra <[email protected]>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly. Run the
Continue reading
Is IP Telephony dead? “When a technology market stops growing, it’s dead” — this is the call and mantra of the technology world. Since we live in a percentage driven world, the first question we seem to ask is, “what story do the percentages tell?” Tom raises the counterpoint — it doesn’t matter if the market is growing or not, there’s still a huge need for phones on desks. Who is right?
But I think this entire percentage driven thing points to a problem in our technology culture. Let me tell you a story…
We have a dog. A black and white (black with white spots as my daughter tells me, because his nose is black) English Cocker Spaniel. With black spots in his white spots. Spaniels, if you’re not familiar with them, are balls of energy. They never really “grow up” — not really, anyway. The most sedate Spaniel breed in the world is a Clumber, and they’re not what you’d call “down” personalities. Now, when we first brought this little bundle of energy home, we weighed him on a regular basis. At some point, he slowed down in gaining weight, and eventually he stopped gaining weight altogether. Continue reading
Internet Exchange Points (IXPs) or Network Access Points (NAPs) facilities are where networks meet, participating in what's known as peering, which interconnects various parts of the global Internet.
At CloudFlare we are dedicated to peering. So much so that we just joined our 100th Internet Exchange point!
Image courtesy of Martin Levy
According to Wikipedia:
“In computer networking, peering is a voluntary interconnection of administratively separate Internet networks for the purpose of exchanging traffic between the users of each network”
In reality this normally means a physical place where two different networks (they could be backbones, CDNs, mobile networks or broadband ISPs) connect their respective networks together to exchange traffic. Over the last fifteen years, there has been a major expansion in network interconnections, running parallel to the enormous expansion of the global Internet. This expansion includes new data centre facilities being developed to house network equipment. Some of those data centres have attracted massive numbers of networks, in no small part due to the thriving Internet Exchanges Points (both new and existing) that operate within them. London with the LINX and LONAP exchanges, Amsterdam with AMS-IX and NL-IX exchanges, Frankfurt with DE-CIX and ECIX exchanges Continue reading
The new 802.11ah wireless standard is compelling for IoT, but don't get too excited just yet.
Flash-based storage and the cloud will play big roles in meeting enterprise storage needs.
In theory, you should shut down a network device with a well-defined procedure:
In practice, network devices don’t have a shutdown command, and reload typically just restarts the network OS.
Read more ...I’ve noticed recently a lot of annoying ads following me around on the Internet. Not just showing up every so often in the browser side panel, but some embedded deep within the pages I’m viewing, making them very difficult to ignore. Often the ads are for something I’ve already bought or something I’ve decided not […]
The post My Cookie Tracking Gripes appeared first on Packet Pushers.
I’ve noticed recently a lot of annoying ads following me around on the Internet. Not just showing up every so often in the browser side panel, but some embedded deep within the pages I’m viewing, making them very difficult to ignore. Often the ads are for something I’ve already bought or something I’ve decided not […]
The post My Cookie Tracking Gripes appeared first on Packet Pushers.
Subscribers MUST READ: New email pilot program to improve our news delivery to you--important changes to delivery schedule. Give us your feedback!
I’ve recently started to play around with OpenStack and decided the best way to do so would be in my home lab. During my first attempt, I ran into quite a couple of hiccups that I thought were worth documenting. In this post, I want to talk about the prep work I needed to do before I began the OpenStack install.
For the initial build, I wanted something simple so I opted for a 3 node build. The logical topology looks like this…
The physical topology looks like this…
It’s one of my home lab boxes. A 1u Supermicro with 8 gigs of RAM and a 4 core Intel Xeon (X3210) processor. The hard drive is relatively tiny as well coming in at 200 gig. To run all of the OpenStack nodes on 1 server, I needed a virtualization layer so I chose ProxMox (KVM) for this.
However, running a virtualized OpenStack environment presented some interesting challenges that I didn’t fully appreciate until I was almost done with the first build…
Nested Virtualization
You’re running a virtualization platform on a virtualized platform. While this doesn’t seem like a huge deal in a home Continue reading
In this post we’ll look at how to create arbitrary topologies and push configuration to Nodes in UNetlab via REST SDK. We’ll conclude by extending our sample application to create and configure a 3-node topology and enable full connectivity between all nodes.
Continue reading