|
We are bringing in our QA team into our agile development methodology. I would like to see some materials or learning videos geared towards QA and testers.
Started by CodeToGlory on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I would recommend just using the same agile materials that you have used for your developers... .
And with very brief, I mean very brief.
It's very brief introduction to Scrum roles and basic practices .
You could check out the " Scrum in five minutes " PDF .
|
|
Math - Never have and never will.
Technology - One day it works and the next day it breaks out of nowhere. Math - Never have and never will. Technology - One day it works and the next day it breaks out of nowhere.
Answer Snippets (Read the full thread at gametrailers):
I still don't understand what she do.
I have and even been to her workplace.
Too true.
ADMARA said: Math - Never have and never will.
I still don't understand what she do.
|
|
What are the essential pointers to keep in mind while understanding Business side of Software ?
Started by Rachel on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
A business understanding is critical.
I finished my MBA last year, and I found that in a number to understand things like "crossing the chasm", for example.
It into terms that other techies can understand.
|
Ask your Facebook Friends
|
What is the best method of understanding how and why a framework was written the way it was?
Started by Abi Noda on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Fixing a bug will really help you understand the code, because most of the time you are given will learn to understand what others expect from the framework (which might differ very much from your own expectation), and slowly ....
Easier.
|
|
Is there a programming language that is understandable by both developer and manager?
Started by Zubair on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
Some use cases....
If you mean "Is there a language that most managers think they understand it's business problems.
AFAIR from my university studies, COBOL ;-)
In general understand (usually).
Terms to understand what is going on.
|
|
Can any one suggest what is the best way to write good code that is understandable without a single line of comments?
Started by pang on
, 21 posts
by 21 people.
Answer Snippets (Read the full thread at stackoverflow):
Someone should....
But, to help someone better understand what it going on you may need some diagrams explaining how the program should work, as, if a person knows the big picture then it is easier to understand code the how (the behavior).
|
|
I understand what it means to access memory such that it is aligned but I don’t understand why this is necessary. For instance, why can I access a single byte from an address 0x…1 but I cannot access a half word (two bytes) from the same address.
Again...
Started by ChrisDiRulli on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Since the data bus can't fetch anything....
This means that any fetch that the CPU needs to do will fetch all 32 bits of a particular memory address .
A typical modern computer might have a 32-bit data bus .
Hardware is complex; this is a simplified explanation.
|
|
I want to know the most understandable tutorial for joomla.
Started by thinzar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have a look at these:
http://docs.joomla.org/Tutorial%3ACreating%5Fa%5Fbasic%5FJoomla!%5Ftemplate
http://www.siteground.com/tutorials/joomla/
Have you tried the Joomla Getting Started guide? Also the forums on the site are pretty active and well-organised... .
|
|
Hi
what is the purpose of backgroundWorker ? (can i get some sample code to understand ?)
thank's in advance
Started by Gold on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx
To do work....
The MSDN documentation has a C# code example illustrating what the backgroundworker does and how to use it .
It does work in the background by using threads.
|
|
Can someone help me understand question 2b at http://sqlzoo.net/2b.htm please
Started by JPro on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Then you select the item you are ....
If you group by something you can use the min() aggregate to show you what the smallest value for that group .
Find the first year that each subject won a prize .
The table contains a list of years for the nobel prize .
|