Skip to content

Instantly share code, notes, and snippets.

View acrymble's full-sized avatar

Adam Crymble acrymble

  • London
View GitHub Profile
@acrymble
acrymble / hello-world.py
Created June 28, 2011 10:37
Hello World - Core.py
# hello-world.py
print 'hello world'
@acrymble
acrymble / hello-world-terminal.py
Created June 28, 2011 14:23
Hello World terminal
print 'hello world'
@acrymble
acrymble / hello-world-terminal-response.py
Created June 28, 2011 14:25
hello world terminal response
hello world
@acrymble
acrymble / hello-world-terminal-response2.py
Created June 28, 2011 14:29
hello world terminal response 2
-> hello world
@acrymble
acrymble / hello-world.html
Created June 28, 2011 15:18
Hello World - Core.html
<html>
<head></head>
<body>Hello World!</body>
</html>
@acrymble
acrymble / html-em-tag.html
Created June 28, 2011 15:19
html <em> tag example
... in Cohen and Rosenzweig's <em>Digital History</em>, for example ...
@acrymble
acrymble / basic-html.html
Created June 28, 2011 15:26
basic html page
<!doctype html>
<html dir="ltr" lang="en-US">
<head>
<title><!-- Insert your title here --></title>
</head>
<body>
<!-- Insert your content here -->
</body>
@acrymble
acrymble / insert-title.html
Created June 28, 2011 15:27
Insert Title HTML
<!-- Insert your title here -->
@acrymble
acrymble / insert-content.html
Created June 28, 2011 15:28
Insert Content HTML
<!-- Insert your content here -->
@acrymble
acrymble / hello-world.txt
Created June 28, 2011 15:29
hello-world text
Hello World!