Posts
Time Estimates and Story Points
- Get link
- X
- Other Apps

I would like to share an excellent write-up by the JIRA Agile Product Manager from Atlassian Shawn Clowes . This was written a while ago, but the depth and detail present in this reply from Shawn for one of the questions in the Answers site still amazes us. This was his explanation about time estimates and story points in the agile context. Here it goes: I'd like to provide a full explanation of why we we've offered 'Original Time Estimate' as an 'Estimate' value and not 'Remaining Estimate'. Some of my discussion refers to agile concepts that anyone reading probably knows well but I've included it because the context is important. Note that the discussion refers to the best practices we've implemented as the main path in GreenHopper, you can choose not to use this approach if you feel it's really not suitable. Estimation is separate from Tracking In Scrum there is a distinction between estimation and tracking. Estimation is typically perform...
How Popchrom And Lazarus Saves My Day
- Get link
- X
- Other Apps
What is Popchrom and Where To Get It Save time and effort with Popchrom by creating your own shortcuts for text phrases! Whether it's a simple email signature or… To transform your abbreviation place the cursor on it and hit your personal shortcut (default is 'ctrl + space'). Get Popchrom What is Lazarus and Where To Get It Lazarus Form Recovery is a free browser add-on for Firefox, Chrome and Safari that autosaves everything you type into any given web-form. We've all had the frustrating experience of spending ages getting a form entry just right, only to suffer rage and disgust when all that hard work is destroyed, whether it's a website timeout, a browser crash, a network failure, or just a cat wandering across the keyboard. Lazarus makes recovering from such mishaps painless in most cases, and we're working on the rest of them! UPDATE: Lazarus is withdrawn and now we have Typio
Maintaining Database Data Consistency Across Test Runs
- Get link
- X
- Other Apps
Most times we are in a situation to rollback the database to a good known state before starting our tests (LQ/BQ/Whatever Tests). An old article directly from Oracle suggests the following method: To quote from the same: Restore Points Jane proceeds to demonstrate how to use restore points, starting with an example of how Paul's QA team can benefit from this technique. Jane creates a restore point named qa_gold. create restore point qa_gold; This command, Jane reminds them, is new in Oracle Database 10 g Release 2. It creates a named restore point, which is an alias to the system change number (SCN) of the database at that time. Jane runs one of the QA team's tests, altering the test data. To flash back the database to the restore point she created, Jane shuts down the database, restarts it in mounted mode, and issues the flashback database command. shutdown immediate; startup mount; flashback database to restore point qa_gold; That's it; the database is now "r...