Archives
Agile Coach Camp (May 30 - June 1, Grand Rapids, MI, USA)
Submitted by Brian Marick on Mon, 11/02/2008 - 16:58.$1,000 of Free Consulting Advice
Submitted by iclemartin on Mon, 11/02/2008 - 18:31.One of my staff (Aaron) found this great post from David Bock called the 7 Question Project Health Check.
The only thing I'd add is start working on this today!
Simple Object Persistence - When, Goddamit?!
Submitted by jason@parlezuml.com (Jason Gorman) on Mon, 11/02/2008 - 18:50.It Is 2008 And Your Website Doesn't Work in Firefox??
Submitted by Corey Goldberg on Mon, 11/02/2008 - 21:55.I just read a Techcrunch article about a new Startup named VisualCV. It is an online resume service and I thought it looked cool. I go to the site, and the front page contains a gigantic flash object. It doesn't display in Firefox... only IE.
Are you serious?
Python - Terminating Threads - Boolean Flag and threading.Event()
Submitted by Corey Goldberg on Mon, 11/02/2008 - 22:37.In many programming languages you can't terminate a thread directly. Python is no different. Rather than termintaing a thread from the code that spawned it, you just a pass a flag to the thread that tells it to terminate itself. Typically a thread will run in a loop, periodically checking this flag so it knows if it should continue or not. To terminate the thread from the outside, you just set its flag to die.
