def changeWordSize ( words, inSize, outSize ):
    """
    >>> list( changeWordSize( [255, 18], 8, 1 ) )
...

Python changeWordSize

by Leif Ryge, July 18, 2011 18:31, No refactoring, tagged with generator, generators, binary, bitwise, bitshift, ordinal, words

Generator which transforms ...

264124475f095b65634c53da3380b88d Talk
/* Define the maximum password length */
#define MIN_PASSWORD_LENGTH 8
...

C Password gen in C with MD5 ...

by deepspring, January 14, 2011 20:38, 8 refactorings, tagged with c, password, generator, md5

I wanted to try my hand at ...

56438d61fd1c1b7d352a12c9b402f4a9 Talk
#!/usr/bin/env ruby -wKU
require 'rubygems'
require 'net/http'
...

Ruby Web2.0 Domain Name Generator

by dw, December 08, 2008 10:13, 12 refactorings, tagged with ruby, generator, domain, name

This generates a text file ...

Ed8cd6f26fffbe2b783df3b12508dfd0 Talk
#!/usr/bin/python2.5
def permute(li):
    """Generate all permutations of a sequence
...

Python Computing permutations with...

by Leif Ryge, October 22, 2008 04:16, 6 refactorings, tagged with recursion, generator, permutations, permutate

I suspect there is a better...

264124475f095b65634c53da3380b88d Talk