Geeks making the world a bit better.

Entries from February 2007

Cinnamon Raisin Scones

My first attempt at scones. These are a bit too sweet and have a bit too much vanilla for my taste. The dough was very sticky, next time I should use less liquid.

From Sun-Maid Recipes

Continue reading →

ModelTalker Synthesizer

The ModelTalker Synthesizer is a very interesting speech synthesis package that appears to allow you to record your own voices.

Flash Adventure Creation Editor

Grand Text Auto talks about text adventure games and includes a link (broken) to the Flash Adventure Creation Editor.

Best Adventure Games of 2006

We should look at this list at Independent Gaming for ideas for accessible adventures.

Using the USB-1024HLS Digital I/O from Python

ctypes makes it really easy to control the USB-1024HLS Digital I/O box from python.

This gets the 2 functions I need and tests to see if the device is there

import ctypes
UL = ctypes.windll.cbw32
cbDConfigPort = UL.cbDConfigPort
cbDOut = UL.cbDOut

FIRSTPORTA = 10
FIRSTPORTB = 11
FIRSTPORTCL = 12
FIRSTPORTCH = 13
DIGITALOUT = 1
DIGITALIN  =  2

port = FIRSTPORTA

try:
    assert cbDConfigPort(0, port, DIGITALOUT) == 0
except AssertionError:
    print 'Configuration of the USB-1024HLS failed'

Then to send data, I simply

cbDOut(0, port, bits)

Radar on a CMOS chip

Viterbi School chip designers create novel CMOS architectures for ‘biometric radar’ and automobile accident avoidance systems

These could be great for ET.

MobileASL

MobileASL is a video compression project at the University of Washington with the goal of making wireless cell phone communication through sign language a reality.

USB-driven visual alert

Shelley Tabakman of the NC DHHS asked about some sort of visual alert for hearing-impaired users of email and IM. They’d like to be notified of an incoming message by a signal visible when not looking at the screen. The INSTEON developer kit looks like the right goods.

ctypes tricks

A few tricks I learned using ctypes to wrap OpenCV.

Continue reading →

Reversal of symptoms in an autism spectrum disorder

A press release from the Rett Syndrome Research Foundation announces results of a landmark study reversing the symptoms of Rett Syndrome (RTT) in a genetic mouse model. Wow!