Skip to main content

Inserting code snippets in blogger using github gists

From a hint on stackoverflow, a very convenient way of typing in code examples into blogger is to first enter the code as a gist on github and then find the 'embed' code and paste that into the 'html' tab of your post, like so:
#!python
"""pyboy4000 - your companion to the pipboy3000 for all your hacking needs.
Simply fireup pyboy, enter all the choice words, then, as you try a word in the
terminal during hacking, enter the number of correct letters for each word tried.
pyboy will do the thinking for you. It will tell you if it has found a match, or
it will suggest the next word to try.
The algorithm used is as follows:
Keep a list of candidate words. In the beginning this is the whole list.
When a word is tried and the number of correct letters is obtained, remove all words in the candidate list whose count of position sensitive common letters with the tested word is different from the number of correct letters. Repeat.
"""
def test_list():
wl = ['dangers', 'sending', 'central', 'hunters', 'resides', 'believe', 'venture', 'pattern', 'gangers', 'mention', 'cutters', 'canteen', 'cancers', 'beliefs', 'banning', 'minigun', 'cistern']
return wl
def enter_list():
print 'Enter the choice words'
print 'x - to finish'
print 'd - to reenter the last word'
word_list = []
while True:
print_list(word_list)
word = raw_input('Enter next choice word: ')
if word is 'x':
break;
if word is 'd':
word_list.pop()
else:
word_list.append(word)
return word_list
def print_list(word_list):
print '|=============================|'
for n,w in enumerate(word_list):
print ' ', n, w
print '|=============================|'
def eliminate(wl, sl, no):
test_word = wl[sl]
for w in list(wl):
matching = 0
for l1,l2 in zip(w, test_word): #For each letter in test word
if l1 == l2:
matching += 1
if matching is not no:
wl.remove(w)
return wl
wl = enter_list()
#wl = test_list()
print 'For each word you try, first enter the serial number of the word, and then enter how many letters are correct'
while True:
print 'Candidate words are'
print_list(wl)
sl = int(raw_input('Serial number of word tried (-1 to end): '))
if sl == -1:
break
no = int(raw_input('Number of letters correct: '))
wl = eliminate(wl, sl, no)
view raw pyboy4000.py hosted with ❤ by GitHub

Comments

Popular posts from this blog

A note on Python's __exit__() and errors

Python's context managers are a very neat way of handling code that needs a teardown once you are done. Python objects have do have a destructor method ( __del__ ) called right before the last instance of the object is about to be destroyed. You can do a teardown there. However there is a lot of fine print to the __del__ method. A cleaner way of doing tear-downs is through Python's context manager , manifested as the with keyword. class CrushMe: def __init__(self): self.f = open('test.txt', 'w') def foo(self, a, b): self.f.write(str(a - b)) def __enter__(self): return self def __exit__(self, exc_type, exc_val, exc_tb): self.f.close() return True with CrushMe() as c: c.foo(2, 3) One thing that is important, and that got me just now, is error handling. I made the mistake of ignoring all those 'junk' arguments ( exc_type, exc_val, exc_tb ). I just skimmed the docs and what popped out is that you need to return True or...

Store numpy arrays in sqlite

Use numpy.getbuffer (or sqlite3.Binary ) in combination with numpy.frombuffer to lug numpy data in and out of the sqlite3 database: import sqlite3, numpy r1d = numpy.random.randn(10) con = sqlite3.connect(':memory:') con.execute("CREATE TABLE eye(id INTEGER PRIMARY KEY, desc TEXT, data BLOB)") con.execute("INSERT INTO eye(desc,data) VALUES(?,?)", ("1d", sqlite3.Binary(r1d))) con.execute("INSERT INTO eye(desc,data) VALUES(?,?)", ("1d", numpy.getbuffer(r1d))) res = con.execute("SELECT * FROM eye").fetchall() con.close() #res -> #[(1, u'1d', <read-write buffer ptr 0x10371b220, size 80 at 0x10371b1e0>), # (2, u'1d', <read-write buffer ptr 0x10371b190, size 80 at 0x10371b150>)] print r1d - numpy.frombuffer(res[0][2]) #->[ 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.] print r1d - numpy.frombuffer(res[1][2]) #->[ 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.] Note that for work where data ty...