Category Archives: Uncategorized

11th Avenue

I used 3 programs to make this:
hugin
autopano
emblend

JT Concert

Joe

Originally uploaded by Collin Anderson

This is what I like to call a “Stone Soup Broadcast”. We pulled together equipment from many different places to make this happen. Thanks to Tom Bowar, Ken Larsen, South Bend, and many others for their time and equipment.

Wow. I want to see this.

“Big Ben” Heads North to Minneapolis
The barge that will be used to install the pre-cast segments on the bridge is on its way to Minneapolis. It left Homa, Louisiana — near New Orleans — on Tuesday afternoon, March 4. Traveling at an average speed of about four knots, it will make its way upriver over [...]

Facebook

We had an awesome conversation at MIS dinner tonight. I took rough notes.
Should we use Facebook? Is it a lost cause?
People doing stupid stuff on FB
Not directly FB’s fault.
Is this a good reason not to use FB?
You can also do stupid stuff in public.
Very bad privacy policy?
For a time, when you deleted your account, all [...]

New Vine & Branches and New Song Books

New Vine & Branches about the New River Ridge
Also, the new song books are in South Bend ready for the music conference starting tonight.

3 Things

One:Ten found an interesting article by Wired, Free! Why $0.00 Is the Future of Business. It goes into the business models and economics of Free 2.0.
These two are very encouraging:
Jon tells us to create instead of sitting around entertaining ourselves.
In January, Josh wrote about getting stuff done, even when you are not in the mood. [...]

11 Guests across Dinkytown for Dinner tonight

Many people are currently in town and it is really neat to catch up with everyone.

Head Cook and the Section that is Cooking Dinner

Monday: Action (Kristin)
Tuesday: MIS (Kevin)
Wednesday: Mission (Colleen)
Thursday: Finance (Jeremiah)
Friday: Action & Mission (Colleen)

New Blog just for Code

I’ve noticed I’ve been posting a lot of code on this blog, so I made another blog just for code.

Closures in Python

def incorrect():
fruit = ['apples', 'bananas', 'peaches']
printers = {}

for food in fruit:
def output():
print food
printers[food] = output

[...]