Skip to content

Instantly share code, notes, and snippets.

@odalet
odalet / msdnKeys.xslt
Created May 2, 2013 12:59
MSDN Keys export viewer
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>MSDN Product Keys</h2>
<table border="1">
<tr bgcolor="#cccccc">
<th align="left">Product Name</th>
<th align="left">Key Type</th>
@odalet
odalet / ohlohApiExample.cs
Created August 15, 2010 16:08
Ohloh API Java sample translated to C#, F# and VB.NET
/*
This is an example of using the Ohloh API from C#.
Detailed information can be found at the Ohloh website:
http://www.ohloh.net/api
This example retrieves an account and simply shows the name associated.
Pass your Ohloh API key as the first parameter to this example.
Ohloh API keys are free. If you do not have one, you can obtain one
/*
This is an example of using the Ohloh API from Java.
Detailed information can be found at the Ohloh website:
http://www.ohloh.net/api
This examples retrieves a account and simply shows the name associated.
Pass your Ohloh API key as the first parameter to this example.
Ohloh API keys are free. If you do not have one, you can obtain one
Module HelloWorld
Sub Main()
System.Console.WriteLine("Hello World")
End Sub
End Module