This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="http://mikedonaghy.org" title="Mike's Website" class="special_link"> | |
This is the text that will show on the page | |
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<!-- Insert <style></style> fragment here --> | |
<title>The Title Of Your Page; Displayed in the title bar of the browser window</title> | |
</head> | |
<body> | |
<!-- Put Your Content Here --> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
.special_link:hover{ | |
font-size:14pt; | |
color:red; | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.views.generic.list_detail import object_list | |
from djournell.notes.models import * | |
from django import newforms as forms | |
from django.newforms import form_for_instance | |
from django.shortcuts import * | |
from django.template import RequestContext | |
from django.http import HttpResponseRedirect | |
def notes_for_course(request, course_slug): | |
course = Courses.objects.get(slug=course_slug) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.views.generic.list_detail import object_list | |
from djournell.notes.models import * | |
from django import newforms as forms | |
from django.newforms import form_for_instance | |
from django.shortcuts import * | |
from django.template import RequestContext | |
from django.http import HttpResponseRedirect | |
def notes_for_course(request, course_slug): | |
course = Courses.objects.get(slug=course_slug) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use WWW::Facebook::API; | |
use Data::Dumper; | |
my $client = WWW::Facebook::API->new( | |
desktop => 1, | |
api_key => 'api.key', | |
secret => 'api.secret', | |
); | |
$client->auth->get_session; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import web | |
import mpd | |
urls = ( | |
'/(.*)', 'index' | |
) | |
class index: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import web | |
import mpd | |
urls = ( | |
'/(.*)', 'index' | |
) | |
class index: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$filename = "data.txt"; | |
$whattoread = @fopen($filename, "r"); | |
$file_cnt = fread($whattoread, filesize($filename)); | |
$msg = "$file_cnt"; | |
fclose($whattoread); | |
?> | |
<html> | |
<head> | |
<meta http-equiv="refresh" content="7"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello #World #in #Whitespace * # # * # # # | |
+ *[Space] | |
+ #is #marked #with"#" # #[tab] #with"*" *line-feed #with #"+" * # *so | |
+it #would | |
+be #easier #to #write #again... #All *the *non-whitespace-characters #are *ignored... * # # | |
+ * | |
+ # # # # # * * # * * # # | |
+ * | |
+ # # # # # * * # * * * * | |
+ * |