Archives
TotT: Time is Random
Submitted by noreply@blogger.com (dastels) on Fri, 04/04/2008 - 06:59./** Return a date object representing the start of the next minute from now */
public Date nextMinuteFromNow() {
long nowAsMillis = System.currentTimeMillis();
Date then = new Date(nowAsMillis + 60000);
then.setSeconds(0);
then.setMilliseconds(0);
return then;
}
Feynman Lectures Available Online
Submitted by jason@parlezuml.com (Jason Gorman) on Fri, 04/04/2008 - 07:32.
Another Continuous Background Testing Tool
Submitted by jason@parlezuml.com (Jason Gorman) on Fri, 04/04/2008 - 07:45.Josh notes:
Just wanted to mention that another tool, autotest does this and is quite popular in the Ruby community. It's not tied to any IDE, you just keep a command window open or a command panel in your favourite editor. I believe the RadRails and Netbeans IDEs have built-in autotest support.
Practical Testing: 16 - Fixing a timeout bug
Submitted by /* Rambling comments... */ on Fri, 04/04/2008 - 11:28.Testing — Mission Impossible?
Submitted by Jason Huggins on Fri, 04/04/2008 - 21:18.… test automation created by a siloed QA team working in isolation to reverse-engineer existing software and automate tests against an untestable UI using proprietary tools accessible only to a few select team members is guaranteed to be incredibly expensive both to create and to maintain, and also ridiculously fragile.
People still do that?! :-) No [...]
