|
What is Quality Assurance? Is it testing and bug fixing, or is it something more?
Started by Jason on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
First QA Team will check the product against a bug and assigned to a developer... .
It includes the testing bug fixing and other things.
While tester can indicate or not.
Bug fix is not the job of tester.
QA = Testing, it validate and verify.
|
|
I have a div fix on bottom of the page it is working fine in IE7, IE8, FF and chrome. But in IE6 it is not fixing itself on the bottom how can I fix that.
Answer Snippets (Read the full thread at stackoverflow):
There are some workarounds:
http://www.howtocreate.co.uk/fixedPosition.html http://tagsoup.com/cookbook/css/fixed/ Suggestions:
use a CSS "reset" use a CSS framework use conditional styles (....
IE6 doesn't support position: fixed natively.
|
|
I am interested in how much of your daily work time do you spend on implementing new features compared to fixing bugs .
Started by koschi on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
In this case, we may choose to change this from 'bug' to 'known limitation' or 'known bug', and we fix it's not fixed (see my edit....
Reason I can think of to let a bug unfixed in my software is that it's definitely to costly to fix.
|
Ask your Facebook Friends
|
We are working in a CI environment, with Enterprise Cruise running our builds. Developers all have CCTray installed locally to notify us if a build breaks.
CCTray has a menu option Volunteer to fix build that you can use to let your team know that you...
Started by Richard Ev on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
It's worth noting that things that aren't monitored by the build, then in CCtray there is ... .
In others words, the one who breaks the build is also the one who will fix it!
Shooting "I take it guys laugh, and volunteer to fix the build.
|
|
I have just started to write code in C, C++, Java, ASP.NET, C#, Objective-C, I-Phone, etc.
But I don't understand why i have to spend 20% of my time for fixing bugs.
I just learned those programming languages as they are. Do most programmers face this...
Started by Hiren Gujarati on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Fixing bugs is a part driven design behavior driven design You don't necessarily have to spend 20% of your time fixing bugs litteraly, but - yes - most....
Now you can use 20% of your time to fix them.
So it's better "programmers".
|
|
Does anyone know of a library for fixing "broken" urls. When I try to open a url such as
http://www.domain.com/../page.html http://www.domain.com//page.html http://www.domain.com/page.html#stuff
urllib2.urlopen chokes and gives me an HTTPError traceback...
Started by erikcw on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What about something like...:
import re import urlparse urls = ''' http://www.domain.com/../page.html http://www.domain.com//page.html http://www.domain.com/page.html#stuff '''.split() def main(): for u in urls: pieces = list(urlparse.urlparse(u)) pieces... .
|
|
I tried to apply operators on Generics (for my example ,multiplication)
public static List<TOutput> Conversion<TOutput>(List<TInput> input) { List<TOutput> outList = new List<TOutput>(); foreach(TInput tinput in input) { ...
Answer Snippets (Read the full thread at stackoverflow):
The compiler shouldn't allow you to assign a double to an unknown type:
outList.Add(dbl);
For all it knows, you could be trying to assign... .
There is some code that does this available as part of MiscUtil .
Not possible without reflecting upon the type.
|
|
I have a solution file that's become 'unstuck' from the projects it references, so that the project GUID references in the .sln point to incorrect GUIDs for the projects that they reference, and this problem persists into several of the projects themselves...
Started by Dan Monego on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't know about automatic tools, but I've had this before and the manual fix of going know if there's an automated tool to fix it, but you can do it yourself in notepad or write a simple.
|
|
I am in the process of fixing some bad UTF8 encoding. I am currently using PHP 5 and MySQL
In my database I have a few instances of bad encodings that print like: î
The database collation is utf8_general_ci PHP is using a proper UTF8 header Notepad...
Started by Jayrox on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
To utf-8 when it was utf-8 already?
I've had to try to 'fix' a number of UTF8 broken situations to not even bother worrying about fixing the old data because of the pain levels involved, but instead to just fix things going forward....
|
|
I have been studying and reading about Scrum in the last few days and reading about Spring Planning and tasks, one problem that popped into my mind is how to deal with bugs in Scrum. Henrik Kniberg in his very nice book Scrum and XP from the Trenches ...
Started by Makis on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
In a scenario....
Bug fixing really explicit.
That makes the priority of feature development vs.
Unless critical to the running of the system, I prefer bugs to become story cards .
Be categorized from mission critical to hardly worth fixing.
|