You are here |
nodogmablog.bryanhogan.net | ||
| | | |
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);... | |
| | | |
langexplr.blogspot.com
|
|
| | | | In this post I'm going to show how to use the Google Desktop COM API from .NET . Google Desktop provides a couple of ways to query its ind... | |
| | | |
benbrougher.tech
|
|
| | | | What is IEnumerable in C#? And why should I use it? | |
| | | |
zserge.com
|
|
| | Whether we like it or not, but Java is one of the most widely used programming languages. However, since most of the applications in Java are either too boring or too complex - not every Java developer has enough curiosity to look under the hood and see how JVM works. In this post I will try to write a toy (and incomplete) JVM to show the core principles behind it and hopefully sparkle some interest in you to learn it further. |