Explore >> Select a destination


You are here

eradman.com
| | feeding.cloud.geek.nz
9.3 parsecs away

Travel
| |
| | blog.oddbit.com
6.8 parsecs away

Travel
| | My internet service provider (FIOS) doesn't yet (sad face) offer IPv6 capable service, so I've set up an IPv6 tunnel using the Hurricane Electric tunnel broker. I want to provide IPv6 connectivity to multiple systems in my house, but not to all systems in my house 1. In order to meet those requirements, I'm going to set up the tunnel on the router, and then expose connectivity over an IPv6-only VLAN. In this post, we'll walk through the steps necessary to set that up.
| | blog.infected.systems
9.1 parsecs away

Travel
| |
| | connorberry.com
109.2 parsecs away

Travel
| Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);...