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
# Using the "requests" library http://docs.python-requests.org/en/latest/ | |
import requests | |
token = 'yourtoken' | |
response = requests.get('https://example.allocate.co.uk/api/v2/offers/1', auth=(token, 'x')) | |
assert response.status_code == 200 | |
print response.json |
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
import random | |
# Generate n random numbers in the range start...end (inclusive) with no duplicates | |
# end-start must by a power of 2 minus 1 (so that we can keep on dividing into 2 without accounting for off by ones) | |
def rnd(start, end, n): | |
mid = (end-start)/2+start | |
assert end >= start | |
if n == 0: | |
return |
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
import random | |
# Given a (possible) large list of random numbers (positive and | |
# negative) find the largest sum of a contiguous sub-sequence. | |
# | |
# From chapter 8 of programming pearls. My attempt before reading past | |
# the first page. | |
def largestsub(lst): | |
prev = 0 | |
largest = float("-inf") |
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
# Given a dictionary of words and scores and prefix return the top 10 | |
# words in the dictionary that start with that prefix ordered by score | |
# (highest first) | |
# Builds a trie (a suffix tree) from the dictionary. The score | |
# ordering thing is my idea of how that could work, I haven't look at | |
# how others do it yet so it might be crazy :) | |
import random |
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
# Another from Programming Pearls (again, my attempt before reading | |
# the rest of the chapter). Rotate a vector left in place by some | |
# amount without using extra memory proportional to the length of the | |
# input vector and while running in in O(n) | |
def rotate_left(vec, n): | |
i = 0 | |
start = 0 | |
letter = vec[i] | |
seen = 0 |
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
# Another from Programming Pearls (again, my attempt before reading | |
# the rest of the chapter). Given a dictionary and a word, find all | |
# anagrams of the word in the dictionary. | |
words = (x.strip().lower() for x in open("/usr/share/dict/words")) | |
lookup = {} | |
for word in words: | |
letters = "".join(sorted(list(word))) | |
lookup.setdefault(letters, []).append(word) |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<link | |
href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" | |
rel="stylesheet"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="masthead"> |
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
{% if tweets %} | |
<table class="table"> | |
<thead> | |
<tr> | |
<th>User</th> | |
<th>Tweet</th> | |
<th>When?</th> | |
<th>View on Twitter</th> | |
</tr> | |
</thead> |
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
// Translated from https://github.com/maccman/mach/blob/150c06a0991674b1cb122bb9b1b0e801c52a72ac/prototypes/generators.js | |
// Uses my fork of CoffeeScript with the yield statement added at https://github.com/almost/coffee-script | |
mach = require('mach') | |
app = mach.stack() | |
Q = require('q') | |
sleep = (millis, answer) -> | |
deferredResult = Q.defer() | |
setTimeout((-> | |
deferredResult.resolve(answer) |
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
[ | |
{"name": "Afghanistan", "code": "AF"}, | |
{"name": "Åland Islands", "code": "AX"}, | |
{"name": "Albania", "code": "AL"}, | |
{"name": "Algeria", "code": "DZ"}, | |
{"name": "American Samoa", "code": "AS"}, | |
{"name": "AndorrA", "code": "AD"}, | |
{"name": "Angola", "code": "AO"}, | |
{"name": "Anguilla", "code": "AI"}, | |
{"name": "Antarctica", "code": "AQ"}, |