ISO Cooking Timer

The friendliest place on the web for anyone that enjoys cooking.
If you have answers, please help by responding to the unanswered posts.

Julio

Senior Cook
Joined
Jun 3, 2009
Messages
268
Location
Bronx, NY
Hello,

I was watching good eats when alton brown used a timer to time the chicken wings he was cooking. I was wondering if anyone here know the name of the cooking timer he used in the show. It kinda looks like a small stove with the big dials and stainless steel.

The timer shows at around 10:30 in the video

http://www.youtube.com/watch?v=4HX6q61JWR4
 
He uses an old photography darkroom timer that can be found on eBay for about $25. New, the equivalent model runs for about $115.
 
I don't think that's the one he's using in the episode that I posted. This one looks like a stainless steel of a stove with the dial buttons of a stove.
 
I took a quick look through the video, jumping around to find the timer. I didn't find it.

It might be helpful to those who are trying to help if they didn't have to watch the whole video to see the timer.
 
screen caps of the timer
 

Attachments

  • Good_Eats_S11E14_-_The_Wing_and_I.mkv_snapshot_10.37_[2011.03.19_11.30.01].png
    Good_Eats_S11E14_-_The_Wing_and_I.mkv_snapshot_10.37_[2011.03.19_11.30.01].png
    320.8 KB · Views: 955
  • Good_Eats_S11E14_-_The_Wing_and_I.mkv_snapshot_10.42_[2011.03.19_11.31.16].png
    Good_Eats_S11E14_-_The_Wing_and_I.mkv_snapshot_10.42_[2011.03.19_11.31.16].png
    225.8 KB · Views: 463
I've seen Brown use different timers, including my Polder brand. I think his consistent point is to consider function first.

I like the idea of my boxed and inactive darkroom timer next to my kitchen stoves because I sometimes want to heat things for a few or fraction of seconds. I should also screw in a darkroom redlight bulb in my kitchen.
 
How loud is it? That's my big thing, since I've usually got the TV going and my hearing isn't good besides that. If I am going to be in the kitchen, which usually means a short timer setting, I'll use the microwave's timer. If I am going to be walking around, going out to the grill or plopped down in front of the TV waiting for the next step, I'll use a timer app on my cell phone, so the timer goes where I go.
That looks like a nifty timer though if you've got an all SS kitchen you are trying to match.
 
Julio, This looks very similar to Alton's timer--and it's on sale!
cutleryandmore.com then search for "dual timer."
 
I prefer to use my PC for timing projects. The format of the input to the timer program is 999.99 (minutes) E.G. 3 hours 45 seconds is entered as 180.75.

dBASE5 Program code looks like this:

* 01/12/2011
* Written as a backup to Lux mechanical timer
Input 'Enter NUMBER OF MINUTES ' To NrMinutes
TimeStart=Time()
Do While (Elapsed(Time(),TimeStart) / 60) < NrMinutes
MinDone= (Elapsed(Time(),TimeStart) / 60)
@ 09, 6 Say 'Minutes Requested = '
@ 09, 25 Say NrMinutes Picture "999.99"
@ 11, 8 Say 'ELAPSED MINUTES = '
@ 11, 25 Say MinDone Picture "999.99"
@ 13, 6 Say 'REMAINING MINUTES = '
@ 13, 25 Say (NrMinutes - MinDone) Picture "999.9"
Enddo
* PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
* I=0
* Do While I < 10
* DO BUZZER
* I =I + 1
* PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
* Enddo
* PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
* I=0
* Do While I < 10
* I =I + 1
* DO BUZZER
* PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
* Enddo
* PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
* I=0
* Do While I < 10
* I =I + 1
* DO BUZZER
* PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
* Enddo
DO BUZZER
DO BUZZER
DO BUZZER
SET TALK OFF
J = 0
DO WHILE J < 500
J = J + 1
I= 0
DO WHILE I < 20000
I=I+ 1
MinDone= (Elapsed(Time(),TimeStart) / 60)
@ 11, 8 Say 'ELAPSED MINUTES = '
@ 11, 25 Say MinDone Picture "999.99"
ENDDO
DO BUZZER
ENDDO
SET TALK ON
* PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
PROCEDURE BUZZER
PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
RETURN
 
Following is previous post with some of the nonexecutables (remarks) removed:
dBASE5 program code looks like this:

* 01/12/2011
* Written as a backup to Lux mechanical timer
Input 'Enter NUMBER OF MINUTES ' To NrMinutes
TimeStart=Time()
Do While (Elapsed(Time(),TimeStart) / 60) < NrMinutes
MinDone= (Elapsed(Time(),TimeStart) / 60)
@ 09, 6 Say 'Minutes Requested = '
@ 09, 25 Say NrMinutes Picture "999.99"
@ 11, 8 Say 'ELAPSED MINUTES = '
@ 11, 25 Say MinDone Picture "999.99"
@ 13, 6 Say 'REMAINING MINUTES = '
@ 13, 25 Say (NrMinutes - MinDone) Picture "999.9"
Enddo
DO BUZZER
DO BUZZER
DO BUZZER
SET TALK OFF
J = 0
DO WHILE J < 500
J = J + 1
I= 0
DO WHILE I < 20000
I=I+ 1
MinDone= (Elapsed(Time(),TimeStart) / 60)
@ 11, 8 Say 'ELAPSED MINUTES = '
@ 11, 25 Say MinDone Picture "999.99"
ENDDO
DO BUZZER
ENDDO
SET TALK ON
PROCEDURE BUZZER
PLAY SOUND FILENAME C:\Windows\Media\Ringout.wav
RETURN
 
I'm sorry carrie!

I meant that they don't have the one that's in the video that alton brown is using.
 

Attachments

  • Good_Eats_S11E14_-_The_Wing_and_I.mkv_snapshot_10.42_[2011.03.19_11.31.16].png
    Good_Eats_S11E14_-_The_Wing_and_I.mkv_snapshot_10.42_[2011.03.19_11.31.16].png
    225.8 KB · Views: 362
Back
Top Bottom