Tagged Questions
The keeping tag has no wiki summary.
3
votes
6answers
127 views
Who judges and keeps the quality of the code within a team of programmers?
Even there are some coding conventions in a software development team, if there are more than 7-8 people coding on the same solution, who or what mechanism assures the standardizing and keeping the ...
2
votes
0answers
237 views
MPMovieplayerController keeps download after stop (iphone)
When I stop the movie and the MPMovieplayerController is dismissed, I see in my router that the movie is continuing to download. Is this normal?
1
vote
1answer
47 views
Stop Jquery from replacing the field
I almost got what I want now. (Cobbled together from code all over the internet.)
But I need to know how to keep my query from being over written.
Example I have a text field. When a word on the ...
0
votes
3answers
115 views
How to keep :active css style after clicking an element
I use anchor as my site navigation.
<div id='nav'>
<a href='#abouts'>
<div class='navitem about'>
about
</div>
</a>
<a href='#workss'>
<div class='navitem ...
0
votes
3answers
52 views
Keeping a list of processes
Here is my scenario: I have a function which performs operations on other processes. It performs an operation on a given process, then performs some more operations, then undoes the first operation. I ...