Blog of me, Chris Idzerda, containing my thoughts, comments, and questions. RSS Feed

ION TTUSB
16 Jan 2008, 04:51:00 PM
About a year ago I received an ION TTUSB. It's a turntable that accepts 33's and 45's and has a USB output. I finally got around to using it last month to create some CDs for my mom from some old albums she has. My experience was good but the main ...
Read post

Approximating a Sine Wave with a Cubic Bézier Curve
07 Jan 2008, 04:44:00 PM
The standard cubic Bézier curve is given by P(t) = (1–t)3P0 + 3(1–t)2tP1 + 3(1–t)t2P2 + t3P3 To find an approximation of the sine curve given by y = sin(πx/2) over the interval [0, 1], set P0 to (0, 0) and P3 to (1, 1). Here are a few methods th ...
Read post

Spin Buffers for Message Passing
04 Jan 2008, 01:11:00 PM
There is a post on Dr. Dobb's about a message passing mechanism called Spin Buffers. The author of the article starts with a discussion of the canonical message passing producer-consumer problem and how the message buffer requires synchronization ...
Read post

Consistency Models
03 Jan 2008, 06:04:00 PM
While working on my subsequent post about message passing, I realized I was creating a great deal of background information. So, rather than having that post be about two subjects, I decided to split it and discuss here the background information, ...
Read post