Resetting something restores it to a default position or value, or to a previous position or value

learn more… | top users | synonyms

233
votes
23answers
182k 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 ...
161
votes
4answers
30k 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 ...
54
votes
4answers
19k 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?
49
votes
4answers
9k 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 ...
35
votes
4answers
8k 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 ...
23
votes
2answers
635 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" ...
19
votes
4answers
25k 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 ...
18
votes
2answers
4k 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 ...
15
votes
4answers
425 views

How to git reset --hard a subdirectory?

Update: This will work more intuitively as of Git 1.8.3, see my own answer. Imagine the following use case: I want to get rid of all changes in a specific subdirectory of my Git working tree, ...
12
votes
3answers
8k 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 ...
12
votes
5answers
9k 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= ...
11
votes
6answers
19k 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 ...
11
votes
2answers
1k views

How to Re-Execute Log4j “Default Initialization Procedure”?

At runtime I often create/modify log4j Loggers, Appenders, Levels, Layouts, and time to time need to reset everything back to defaults. Log4j system has well defined Default Initialization Procedure ...
10
votes
6answers
6k 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 -- ...
10
votes
1answer
25k views

Wipe data/Factory reset through ADB [closed]

Basically this is my problem/ I have 200+ phones running stock Android that need to be wiped (in the Wipe Data/Factory Reset way) and then a new ROM installed with some additional apks. Currently ...
9
votes
3answers
6k views

Reset auto increment counter in postgres

I would like to force the auto increment field of a table to some value, I tried with this: ALTER TABLE product AUTO_INCREMENT = 1453 AND ALTER SEQUENCE product RESTART WITH 1453; ERROR: ...
9
votes
1answer
3k views

NSUserDefaults reset [duplicate]

Possible Duplicate: How can I reset the NSUserDefaults data in the iPhone simulator? Can we reset NSUserDefaults for all the keys at the same time? Right now I reset for individual keys. So ...
9
votes
1answer
1k views

Why git can't do hard/soft resets by path?

$ git reset -- <file_path> can reset by path. However, $ git reset (--hard|--soft) <file_path> will report an error like below: Cannot do hard|soft reset with paths.
8
votes
5answers
35k 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 ...
8
votes
2answers
3k 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 ...
8
votes
6answers
7k 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?
8
votes
2answers
7k views

Git: Revert to previous commit status

I'm confused. I want to go back to a previous commit that I identified in "git log". But when I do "git checkout ", I don't get said commit. Nothing changes. It tells me I'm in detached HEAD mode, ...
8
votes
2answers
207 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
5answers
2k 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
4answers
3k views

How do I control the format MembershipUser.ResetPassword()

Is it possible to control the format of the password that is automatically generated by a call to MembershipUser.ResetPassword()? I want to be able to allow or not allow certain special characters in ...
7
votes
3answers
455 views

C++11 When clearing shared_ptr, should I use reset or set to nullptr?

I have a question about C++11 best practices. When clearing a shared_ptr, should I use the reset() function with no parameter, or should I set the shared_ptr to nullptr? For example: ...
7
votes
4answers
21k views

JQuery - Form Reset - Exclude “Select” box

All, I can reset all my form elements using the following JQuery Syntax: ('#myform')[0].reset(); How can I modify this to exclude the reset of "select box" values? Thanks
7
votes
4answers
3k 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
1answer
954 views

Java Pattern Matcher: create new or reset?

Assume a Regular Expression, which, via a Java Matcher object, is matched against a large number of strings: String expression = ...; // The Regular Expression Pattern pattern = ...
7
votes
2answers
2k 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
6
votes
7answers
641 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
12k views

JQuery datePicker date reset

I would like to add a "Reset" control to the datepicker at the bottom of the calendar - where the "close" control goes. This would enable the user to reset the input tied to datepicker to blank (no ...
6
votes
3answers
1k 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 ...
6
votes
4answers
780 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 ...
6
votes
1answer
6k 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. ...
6
votes
2answers
1k 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 ...
5
votes
7answers
6k views

Generate temporary URL to reset password

I am looking to implement a Forgot Password feature on my website. I like the option where an email containing a temporary one-time use URL that expires after some time is sent to the user. I have ...
5
votes
1answer
2k views

How to reset CSS3 *-transform: translate(…)?

How am I supposed to reset CSS transforms previously applied? Say I have: div.someclass { -webkit-transform: translate3d(0, -50%, 0); -moz-transform: translate(0, -50%); ...
5
votes
3answers
1k views

Password reset by email without a database table

The normal flow for resetting a user's password by mail is this: Generate a random string and store it in a database table Email string to user User clicks on link containing string String is ...
5
votes
4answers
2k 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
3answers
1k views

Undo reset on subscript and superscript tags in CSS

We use a CSS reset file that names every element from html to p to img, etc. and resets the margins, heights, sizes, etc. A pretty standard reset file. However, a client noticed that their ...
5
votes
2answers
5k views

a “forgot user password” standard class or script in php/mysql environment?

I am hoping that there is a standard class/php script that we can use for the "forgot password" functionality. It seems almost every website has one, and I'd like to reduce the development time on ...
5
votes
2answers
1k views

Css reset: font-size: 100%; Why?

I am studying the css reset of S. Meyer, found here: http://meyerweb.com/eric/tools/css/reset/ My question is: what is the purpose of: font-size: 100%? Can somebody explain it? Thank you!
5
votes
1answer
283 views

Set var value from other JavaScript file using jQuery

I have a two JavaScript files: Main.js Pmt.js I'm also using thick box (Ajax call) in Main.js $(document).ready(function() { var cnt=0; $("#btnPmt").click(function(){ cnt=cnt+1; ...
5
votes
5answers
2k 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
3k views

Does a form reset button fire a select elements onChange event?

I have a form with some select elements that have onChange events attached to them. I would like the event to fire even when someone clicks the form reset button. My question is: does resetting a ...
4
votes
5answers
7k views

Reset MVC form with jquery

How do I reset a form? i.e. Clear values of all fields and remove ValidationSummary error messages validation-summary-errors with jquery. I use the below code but it does not work: var ...
4
votes
1answer
2k views

Git: undo a merge (that has been pushed)

OK, i have made a bit of a mess.. Apparently, on my machine at home, the develop branch was not updated. I made a commit and pushed. The result was that the actual origin/develop branch has been ...
4
votes
2answers
4k views

Javascript - Reset setInterval back to 0

How do I reset a setInterval timer back to 0? var myTimer = setInterval(function() { console.log('idle'); }, 4000); I tried clearInterval(myTimer) but that completely stops the interval. I ...
4
votes
3answers
2k views

reset hard on git push

I have a post-receive hook script sitting on the remote repo I am pushing to that does a git reset --hard Something like this: $ git push opal Counting objects: 74, done. Delta compression using up ...

1 2 3 4 5 15