|
You are here |
chrispeoples.com | ||
| | | | |
connorberry.com
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | | | A blog created to help others learn various aspects of programming. It features regular articles that are concise rather than comprehensive. | |
| | | | |
soundmacguy.wordpress.com
|
|
| | | 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,... | ||