Explore >> Select a destination


You are here

chrispeoples.com
| | connorberry.com
2.9 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);...
| | aaronluna.dev
2.8 parsecs away

Travel
| | Have you ever wondered what is the correct way to determine either the local or public IP address of your PC? In this post, I explore various methods using built-in classes from the .NET Core framework. I attempt to determine my public/private IP address without the assistance of an external service, in order to eliminate any dependencies.
| | www.programmersranch.com
2.7 parsecs away

Travel
| | A blog created to help others learn various aspects of programming. It features regular articles that are concise rather than comprehensive.
| | soundmacguy.wordpress.com
14.7 parsecs away

Travel
| I thought I was done with SCEP (see parts 1, 2 and 3) but whilst undertaking an exercise looking into using SCEP on some Linux servers (and specifically looking at how it can provide reporting data to SCOMvia a Management Pack), I inadvertently came across a little-documented command line argument for one of its binaries,...