Skip to content

Instantly share code, notes, and snippets.

@cx20
cx20 / hello.sql
Created June 10, 2012 13:42
Hello, SQL Server World!
SELECT 'Hello, SQL Server World!' AS Message
GO
@cx20
cx20 / hello.sql
Created June 10, 2012 13:41
Hello, SQLite World!
SELECT 'Hello, SQLite World!' AS Message;
@cx20
cx20 / hello.sql
Created June 10, 2012 13:40
Hello, PostgreSQL World!
SELECT 'Hello, PostgreSQL World!' AS Message
@cx20
cx20 / hello.sql
Created June 10, 2012 13:39
Hello, MySQL World!
SELECT 'Hello, MySQL World!' AS Message
@cx20
cx20 / hello.hta
Created June 10, 2012 13:37
Hello, HTA World!
<html>
<head>
<title>Hello, World!</title>
<hta:application id="hello"
applicationName="helloapp"
windowState="normal">
</head>
<body>
<p>Hello, HTA World!</p>
</body>
@cx20
cx20 / hello.curl
Created June 10, 2012 13:35
Hello, Curl World!
{curl 8.0 applet}
Hello! Curl World!
@cx20
cx20 / hello.html
Created June 10, 2012 13:34
Hello, Silverlight World! (HTML)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hello, World!</title>
</head>
<body>
<object type="application/x-silverlight" width="400" height="300">
<param name="source" value="hello.xaml" />
</object>
@cx20
cx20 / hello.xaml
Created June 10, 2012 13:33
Hello, Silverlight World! (XAML)
<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<TextBlock Text="Hello, Silverlight World!" />
</Canvas>
@cx20
cx20 / hello.html
Created June 10, 2012 13:32
Hello, Flash World! (HTML)
<html>
<head>
<title>Hello, World!</title>
</head>
<body>
<embed src="Hello.swf" type="application/x-shockwave-flash" width="400" heigt="300" />
</body>
</html>
@cx20
cx20 / hello.as
Created June 10, 2012 13:31
Hello, Flash World! (ActionScript)
package
{
import flash.display.*;
import flash.text.*;
public class Hello extends Sprite
{
public function Hello()
{
var textField:TextField = new TextField();