Tagged Questions
The reset tag has no wiki summary.
157
votes
17answers
124k views
Resetting a multi-stage form with jQuery
I have a form with a standard reset button coded thusly:
<input type="reset" class="button standard" value="Clear" />
Trouble is, said form is of the multi-stage sort, so if a user fills out ...
118
votes
1answer
11k views
Git: How to move existing work to new branch?
I started some work on a new feature. After coding for a bit I decided this feature should be on its own branch. How do I move the existing uncommitted changes to a new branch and reset my current ...
45
votes
4answers
3k views
Can you explain what “git reset” does in plain english?
I have seen interesting posts explaining subtleties about git reset.
Unfortunately, the more I read about it, the more it appears that I don't understand it fully. I come from a SVN background and ...
39
votes
3answers
5k views
What are Scala continuations and why use them?
So I just finished "Programming in Scala" and I've been looking into the changes between Scala 2.7 and 2.8. The one that seems to be the most important is the continuations plugin but I don't ...
31
votes
4answers
7k views
How to reuse an ostringstream?
I'd like to clear out and reuse an ostringstream (and the underlying buffer) so that my app doesn't have to do as many allocations. How do I reset the object to its initial state?
21
votes
2answers
403 views
Why are delimited continuation primitives named “shift” and “reset”?
I think I understand (in general) what shift and reset mean. However I do not understand why they are named so ? What do shift and reset as Delimited Continuation primitives have to do with "shift" ...
18
votes
3answers
2k views
What is the different between Normalize.css and Reset CSS?
I know what CSS Reset is, but recently I heard about this new thing called Normalize.css
What is the difference between Normalize.css and Reset CSS?
What is the difference between normalizing CSS ...
13
votes
3answers
3k views
How can I uncommit the last commit in a git bare repository?
Taking into consideration that there are several git commands that make no sense in a bare repository (because bare repositories don't use indexes and do not have a working directory),
git reset ...
10
votes
2answers
655 views
git update-index --assume-unchanged and git reset
Here is the scenario:
In my working directory, I have a number of files (let's call them A,B,C) that I've edited. I then ran git update-index --assume-unchanged on those files. Now git status ...
9
votes
5answers
10k views
Command/Powershell script to reset a network adapter
OS: Vista enterprise
When i switch between my home and office network, i always face issues with getting connected to the network. Almost always I have to use the diagnostic service in 'Network and ...
7
votes
6answers
257 views
Fastest way to reset every value of std::vector<int> to 0
What's the fastest way to reset every value of a std::vector<int> to 0 and keeping the vectors initial size ?
A for loop with de [] operator ?
7
votes
2answers
129 views
Example of nested resets in Scala
This is a question about Scala continuations. Can resets be nested? If they can: what are nested resets useful for ? Is there any example of nested resets?
7
votes
1answer
259 views
What is difference between “git checkout -f” and “git reset --hard HEAD”?
I need to revert local changes for deployments. (I'd used svn revert for this in old skool SVN days.)
And im using git reset --hard HEAD for this. (Also git fetch and git merge origin/$branch --no-ff ...
7
votes
3answers
1k views
How to reset UIWebView's zoom? I'm already using scalesPagesToFit = YES;
I've been looking for the past week for the answer to this question.
I have a UIWebView, inside of a UIScrollView. Everything works great, but I want the content of the UIWebView to reset its zoom, ...
7
votes
3answers
3k views
Reset an asp.net validation control via javascript?
How do I reset an asp.net validation control via JavaScript? The current code sample clears the error message text but does not reset the validation control for the next form submission.
var cv= ...
7
votes
5answers
3k views
SQL Server Reset Identity Increment for all tables
Basically I need to reset Identity Increment for all tables to its original.
Here I tried some code, but it fails.
http://pastebin.com/KSyvtK5b
actual code from link:
USE World00_Character
GO
-- ...
6
votes
7answers
630 views
why does this happen (see image)?
Why does the following have the effect it does - it prints a terminal full of random characters and then exits leaving a command prompt that produces garbage when you type in it. (I tried it because I ...
6
votes
5answers
17k views
jQuery Toggle State
Here's the quick and skinny of my issue:
$("a").toggle(function() { /*function A*/ }, function() { /*function B*/ });
Inside function A a form is displayed. If the user successfully completes the ...
5
votes
4answers
881 views
jQuery detect keystrokes and set variables accordingly
I have created a rudimentary EasterEgg within my code to activate when the following keystrokes are made (not simultaneously) Enter + c + o + l + o + r + s with the following code:
isEnter = 0; isC = ...
5
votes
5answers
798 views
Python equivalent of IDL's stop and .reset
I'm relatively new to python but have a bit of experience using IDL. I was wondering if anyone knows if there are equivalent commands in python for IDL's stop and .reset commands.
If I'm running some ...
5
votes
2answers
5k views
What's the difference between git reset --hard and git reset --merge
In my experiments I haven't been able to find any functional difference between
git reset --hard
and
git reset --merge
The usage instructions don't give any hint either
--hard ...
4
votes
1answer
110 views
Prevent Android Reset
We do short-term rentals on cell phones and tablets. You need a tablet for a week, you can come to us and we rent it too you. What happens, is at the end of the week (or weeks) you need to return ...
4
votes
3answers
295 views
Why does the reset button on html forms not reset hidden fields?
While answering another question, which asked whether the reset button cleared hidden fields, I discovered something surprising:
<html>
<head>
<script type="text/javascript">
...
4
votes
2answers
461 views
NSUserDefaults reset
Can we reset NSUserDefaults for all the keys at the same time?
Right now I reset for individual keys. So if there is a way to do that in a single go please tell me.
Thanks
4
votes
2answers
101 views
Does it matter where a shift stands in a reset block?
Suppose, there is a reset block with a single shift:
val r = reset {
// do smth. 1
shift {...}
// do smth. 2
// do smth. 3
}
Is it correct that I place the shift after "do smth. 2" or ...
4
votes
3answers
556 views
How to detect cold boot versus warm boot on an ARM processor?
I'm looking for a way to determine whether an ARM processor is booting from a cold boot (i.e. initial power-on) versus a warm boot (i.e. reset assertion without actual power loss). Specifically I'm ...
4
votes
1answer
180 views
nested CPS “reset”
using the CPS compiler-plugin of Scala 2.8, there are the two magic controls reset and shift. Reset delimits the continuation and shift captures the continuation.
There is an example of using CPS ...
4
votes
2answers
149 views
Anonymous branch after doing git reset
Background: Swip was working on a test project solely for the purpose of trying out git. This is a local one-person repository that has not been shared so swip did a reset hard in order to obliterate ...
4
votes
2answers
2k views
Reseting the form when usering the jquery validations plugin
I have a simple form like below that I have added the jQuery validations plugin onto (http://docs.jquery.com/Plugins/Validation). I have this form in a modal popup window so if there are errors and ...
4
votes
1answer
5k views
Why do I sometimes see an “Entry 'filename' not uptodate. Cannot merge.” after a 'git reset --hard' and a 'git pull'?
Occasionally, when I do the following...
git reset --hard
HEAD is now at 0123abde comment is here
git pull
Updating 0123abde..456789fa
I get the error...
error: Entry 'filename' not uptodate. ...
3
votes
3answers
48 views
Compare about using checkout or reset hard to undo git commit
If I use:
$ git reset --hard HEAD~N
or
$ git checkout HEAD~N
Both of two will use the version of HEAD~N to change working directory and stage area.
If there is any different between these two ...
3
votes
1answer
147 views
Resetting CSS3 *-transform: translate(…)
How am I supposed to reset CSS transforms previously applied?
Say I have
somediv.someclass {
-webkit-transform: translate3d(0, -50%, 0);
-moz-transform: translate(0, -50%);
...
3
votes
1answer
126 views
Django flush vs sqlclear & syncdb
Can anyone tell if there is a difference between
>manage.py flush # or reset
and
>manage.py sqlclear appname | python manage.py dbshell
>manage.py syncdb
3
votes
1answer
82 views
How to handle reset behaviour when escape character is pressed twice in Orbeon Xforms
I have come to know that from IE 5, there is a strange behaviour that when escape character is pressed twice, all the form fields are reset automatically. This is not occuring in Mozilla. So as a ...
3
votes
1answer
128 views
Clojure - reset! atom causing a stack overflow
I am learning clojure and just playing with atoms and refs. Here is a simple tree implementation, but it is causing a stack overflow when executing the add-child method:
(ns mytree)
(defprotocol ...
3
votes
1answer
109 views
Restarting a game and reinstantiate objects
Introduction
I am creating a small game in C++ and would like to create a function to restart the game.
First I am creating the object player. Then I have an if statement to determine when a certain ...
3
votes
1answer
359 views
reverting push'd git commit
I've got a repo with two branches-- master and dev. I was working on the master branch and pulled, and got a message that the repo was up to date. I committed my changes, and pushed to the remote repo ...
3
votes
3answers
373 views
Why not reset CSS using the asterisk?
I noticed that many CSS developers reset the margin, font and padding of a big number of HTML elements by explicitly declaring them all in the beginning (e.g.Yahoo and meyerweb versions). So I ask ...
3
votes
3answers
984 views
Extjs: (TimeField) reset minValue and maxValue
I have an ExtJS TimeField where I use the setMinValue(...) and setMaxValue(...) to only show the valid time-elements to the user. This works just fine, but how do I reset the minValue and maxValue so ...
3
votes
1answer
116 views
Efficacy of combinging reset and base, instead of building one off the other
Recently I've taken to combining reset and base into one nefarious optimized streamlined smorgasbord. I'm finding it to be a real treat, and wonder if this is common practice. My guess is "no"...and ...
3
votes
2answers
164 views
How to reset Ada.Real_Time.Clock?
when reading Ada.Real_Time.Clock right after power-up it shows a value that isn't close to zero and sometimes even negative.
As far as I know Ada.Real_Time.Clock suppose to reset on power-up.
How can ...
3
votes
7answers
120 views
Why is there the need for browser resets?
Okay that's probably not the best title, I know why we need browser resets: because browsers have different defaults set.
My question that was too long to put into a title is:
If everyone needs to ...
3
votes
2answers
816 views
The Cleanest Reset for an ARM Processor
Lately, I've been cleaning up some some C code that runs on an ARM7 controller. In some situations (upgrade, fatal error, etc...) the program will perform a reset. Presently it just jumps to 0 and ...
3
votes
5answers
2k views
javascript: True form reset for hidden fields
Unfortunately form.reset() function doesn't reset hidden inputs of the form.
Checked in FF3 and Chromium.
Does any one have an idea how to do the reset for hidden fields as well?
3
votes
2answers
1k views
Problems with Clearing InputText in a JSF Datatable
I'm trying to reset some input text fields, inside of a data table, using a cancel button. The issue I'm having is that, if I attempt to cancel it, but there are validation errors, it does not allow ...
3
votes
3answers
833 views
Git: How to move back and forth between commits
I have a newbie question about Git:
I need to move back and forth in a history of a branch.
That means, I need to get all the files to the state they were in in some old revision, and then I need to ...
3
votes
1answer
271 views
Why does FileSystemWatcher reset our website sessions?
We have an ASP.NET 2.0 website with an advanced configuration that is not catered for by a standard Web.config. Instead we're storing the config in our own Xml schema in the /bin/ folder, and we have ...
3
votes
3answers
298 views
CSS reset that applies only to #widget
Let's say I have widget that uses complicated CSS, and must be embedded in multiple websites that all have their CSSes.
If I prefix all widget's CSS rules with "#widget", they won't apply to anything ...
3
votes
1answer
1k views
Eclipse workspace UI layout reset
Every time I open Eclipse, I get the error:
Unable to read workbench state.
workbench UI layout will be reset.
Naturally, any UI changes I have made are not saved. I have tried:
Making sure ...
2
votes
3answers
39 views
Reset all subviews of UIView (e.g. textfields)
Is there a quick way on how to reset all the subviews like textfields, labels etc. to its original state like they are when they get initialized the first time? I guess dealloc and init again would ...