Explore >> Select a destination


You are here

weblog.west-wind.com
| | langexplr.blogspot.com
22.8 parsecs away

Travel
| | 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...
| | connorberry.com
20.6 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);...
| | nodogmablog.bryanhogan.net
20.6 parsecs away

Travel
| | Full source code here. Accessing generic methods by reflection is not easy. A while ago I needed to do just that and found relatively little information out there. So I dug in and figured it out for myself.
| | www.morling.dev
71.2 parsecs away

Travel
| One of the ultimate strengths of Java is its strong notion of backwards compatibility: Java applications and libraries built many years ago oftentimes run without problems on current JVMs, and the compiler of current JDKs can produce byte code, that is executable with earlier Java versions. For instance, JDK 16 supports byte code levels going back as far as to Java 1.7; But: hic sunt dracones. The emitted byte code level is just one part of the story. It's equally important to consider which APIs of the ...