I hereby claim:
- I am danielkoehler on github.
- I am danielkoehler (https://keybase.io/danielkoehler) on keybase.
- I have a public key ASA8HKWVRia8pacQEOJYNEuwFYDGB6f-GZZcjS1M4EbGwAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import re | |
| from os import path | |
| import click | |
| import json | |
| importExpression = r""".*import[ \t]+(?P<varname>[a-zA-Z0-9*_ ]+,*\s*)*({\s*(?P<module>[a-zA-Z0-9_*\s,]+)*\s*})*[ \t]+from[ \t]+(?P<br>['"])(?P<path>[a-zA-Z0-9-_\.\/]+)(?P=br).*""" | |
| def lookahead(iterable): | |
| # Get an iterator and pull the first value. | |
| it = iter(iterable) |
| Last login: Sun May 17 15:48:57 on ttys000 | |
| Daniels-MBP-2:Past Papers danielkoehler$ cd /Users/danielkoehler/Documents/Bits and Bobs/Past Papers | |
| Daniels-MBP-2:Past Papers danielkoehler$ tree | |
| . | |
| ├── Archi | |
| │ ├── 2004 - 2005 Autumn Semester | |
| │ │ ├── AR0025 - City, Landscape And Spatial Morphology ( Sp ).pdf | |
| │ │ ├── AR0035 - Architecture Since 1940 ( Rw ).pdf | |
| │ │ ├── AR0040 - Issues In Contemporary Architecture ( As ).pdf | |
| │ │ ├── AR0041 - Issues In Contemporary Architecture ( As ).pdf |
| Module | Date (Asc) |
|---|---|
| CM2303 - Algorithms And Data Structures | Friday, 15 May 2015 |
| CM2302 - Communication Networks And Pervasive Computing | Tuesday, 19 May 2015 |
| CM2203 - Informatics | Friday, 22 May 2015 |
| CM2202 - Scientific Computing And Multimedia Applications | Tuesday, 26 May 2015 |
| CM2201 - Object Oriented Applications | Friday, 29 May 2015 |
| CM2204 - Advanced Programming | Wednesday, 3 June 2015 |
| <!doctype html> | |
| <html lang="en-GB"> | |
| <head> | |
| <title>Google</title> | |
| </head> | |
| <body> | |
| <div> | |
| <form> | |
| <img src="google_logo.jpeg"> | |
| <input name="search" placeholder="Search."> |
| + (instancetype)singleton { | |
| static id singletonInstance = nil; | |
| if (!singletonInstance) { | |
| static dispatch_once_t onceToken; | |
| dispatch_once(&onceToken, ^{ | |
| singletonInstance = [[super allocWithZone:NULL] init]; | |
| }); | |
| } | |
| return singletonInstance; | |
| } |