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
Geeks making the world a bit better.
February 25th, 2007 — Recipes
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
February 25th, 2007 — Enabling Technology, Links
The ModelTalker Synthesizer is a very interesting speech synthesis package that appears to allow you to record your own voices.
February 23rd, 2007 — Enabling Technology, Links
Grand Text Auto talks about text adventure games and includes a link (broken) to the Flash Adventure Creation Editor.
February 22nd, 2007 — Enabling Technology, Links
We should look at this list at Independent Gaming for ideas for accessible adventures.
February 16th, 2007 — Programming
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)
February 15th, 2007 — Enabling Technology, Links
These could be great for ET.
February 13th, 2007 — Deaf, Enabling Technology, Links
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.
February 12th, 2007 — Deaf, Enabling Technology, Ideas
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.
February 11th, 2007 — Programming
A few tricks I learned using ctypes to wrap OpenCV.
February 9th, 2007 — Links, Science
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!