On 13/06/2006, at 10:27, Ben Sizer wrote:
> > Collin L wrote: >> >> Does this behavior really bug other people, or is it just me? It >> really seems to slow down development. > > It does bother me. On my 1.1GHz machine it was typically a 10 second > wait, easily enough to break your flow if you're used to truly rapid > iterations: Ctrl-S, Alt-Tab, F5... on my new PC it's down to 5 > seconds, which is ok most of the time but still slows down those times > you want to quickly check the minor adjustments. > > Sometimes I type something wrong, causing a Python compilation > error of > some nature, and it stops running completely, meaning I have to > manually start everything up again - now that's irritating! What I do for this is to wrap start-myapp in a loop, using bash: while true; do sleep 1 && ./start-myapp.py; done You can skip the delay but watch out 'cause you're CPU usage will rocket until you fix any typos ;) Alberto --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

