Kaki King 04/24/2013

Warning: Spoilers

“What is that T-Shirt about?”

“What is that T-Shirt about?”

Many a buddy of Aaron’s has said kind words for him. It is hard to put my own thoughts into words. Right now I am numb; Soon, I know, sad. Talking is hard, writing too. I think I will talk of a short point back in January of 2011, around my arrival in MA.

In Mako’s library Aaron and I, during a party, sat with a man who consults with a civil rights organization that works with digital copyright law, and is a fan of zork (or so I know now from his IRC account). All around, Mako, Aaron, and I said words that fit a constraint. This man said notably “I do not find it hard to talk in this way.” Aaron said “Nor do I.” I did, as did Mako. Mako said for us to stop, as slow talking was annoying to him. Though short, it was stunning.

I, at points, thought back to this party with joy. A dazzling show of fast thinking from Aaron and his cohorts. That was long ago. Now it is as if my world is gray. Songs fall flat, and grins go slack. Much as our words had a constraint back in 2011, my joy has a constraint now.

That is all I can say for now, but who knows, I may want to talk of similar things again soon. And if you can, you should too.

A nice constrained crossword from Jan 16 201

A nice constrained crossword from Jan 16 201

How to Reverse a String

def new_stringer(passed_string):
    new_string  “”
    for num in range(len(passed_string)-1,0,-1):
        newstring += passed_string[num]
    return new_string

def same_as_new_stringer_but_with_more_objects(passed_string):
    x = []
    for letter in passed_string:
        x.append[letter]
    x.reverse()           #
    return “”.join(x)     #return “”.join(x.reverse())

def in_place_temp(passed_string):
    num = 0
    length = len(passed_string)-1
    while num < length-num:
        tmp = passed_string[length-num]
        passed_string[length-num] = passed_string[num]
        passed_string[num] = tmp
    return passed_string

def without_temp(passed_string):
    i = 0
    while i<len(passed_string):
        passed_string = passed_string[i]+passed_string
        i+=2
    return passed_string[:i/2]

def recur_printer(passed_string):
    print passed_string[-1]
    if len(passed_string)>1:
        recur_printer(passed_string[:-1])

def recur_writer(passed_string):
    if len(passed_string)>1:
        return passed_string[-1] +recur_writer(passed_string[:-1])
    return passed_string[-1]


def simple(passed_string):
    return passed_string[::-1]