How to revert the last migration?
I've made a migration that added a new table and want to revert it and delete the migration, without creating a new migration. How do I do it? Is there a command to revert last migration and then I c...
- Modified
- 10 Nov at 09:47
How To Auto-Format / Indent XML/HTML in Notepad++
Is there a way to re-indent a block of code? I'm looking for something similar to ++ in Eclipse (Auto-Format/Indent). To be clear, - - - I already know about NppAutoIndent - it won't work, as I'm...
- Modified
- 24 Nov at 15:54
How can I upload files to a server using JSP/Servlet?
How can I upload files to server using JSP/Servlet? I tried this: ``` <form action="upload" method="post"> <input type="text" name="description" /> <input type="file" name="file" /> <input...
- Modified
- 27 Oct at 19:55
"Parameter" vs "Argument"
I got and kind of mixed up and did not really pay attention to when to use one and when to use the other. Can you please tell me?
- Modified
- 10 Dec at 06:18
JavaScript window resize event
How can I hook into a browser window resize event? There's [a jQuery way of listening for resize events](https://stackoverflow.com/questions/599288/cross-browser-window-resize-event-javascript-jquery...
- Modified
- 7 Sep at 20:15
How do I remove packages installed with Python's easy_install?
Python's `easy_install` makes installing new packages extremely convenient. However, as far as I can tell, it doesn't implement the other common features of a dependency manager - listing and removing...
- Modified
- 5 Aug at 07:33
Expand a random range from 1–5 to 1–7
Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7.
Run a Docker image as a container
After building a Docker image from a `dockerfile`, I see the image was built successfully, but what do I do with it? Shouldn't i be able to run it as a container?
- Modified
- 26 Aug at 08:50
How to make a background 20% transparent on Android
How do I make the background of a `Textview` about 20% transparent (not fully transparent), where there is a color in the background (i.e. white)?
- Modified
- 28 Apr at 21:11
How do I create a new Git branch from an old commit?
> [Branch from a previous commit using Git](http://stackoverflow.com/questions/2816715/branch-from-a-previous-commit-using-git) I have a Git branch called `jzbranch` and have an old commit id: ...
What is the { get; set; } syntax in C#?
I am learning ASP.NET MVC and I can read English documents, but I don't really understand what is happening in this code: ``` public class Genre { public string Name { get; set; } } ``` What do...
- Modified
- 7 Aug at 00:21
Get the current language in device
How can we get the current language selected in the Android device?
- Modified
- 25 Dec at 16:7
Set ImageView width and height programmatically?
How can I set an `ImageView`'s width and height programmatically?
- Modified
- 23 Jan at 15:15
Targeting only Firefox with CSS
Using conditional comments it is easy to target Internet Explorer with browser-specific CSS rules: ``` <!--[if IE 6]> ...include IE6-specific stylesheet here... <![endif]--> ``` Sometimes it is the...
- Modified
- 3 Oct at 15:43
Multiple cases in switch statement
Is there a way to fall through multiple case statements without stating `case value:` repeatedly? I know this works: ``` switch (value) { case 1: case 2: case 3: // Do some stuff ...
- Modified
- 28 Feb at 00:54
AsyncTask Android example
I was reading about `AsyncTask`, and I tried the simple program below. But it does not seem to work. How can I make it work? ``` public class AsyncTaskActivity extends Activity { Button btn; ...
- Modified
- 24 Jan at 14:5
Check if a Bash array contains a value
In Bash, what is the simplest way to test if an array contains a certain value?
Remove CSS class from element with JavaScript (no jQuery)
Could anyone let me know how to remove a class on an element using JavaScript only? Please do not give me an answer with jQuery as I can't use it, and I don't know anything about it.
- Modified
- 4 Oct at 08:59
What is the equivalent of the C++ Pair<L,R> in Java?
Is there a good reason why there is no `Pair<L,R>` in Java? What would be the equivalent of this C++ construct? I would rather avoid reimplementing my own. It seems that is providing something simil...
Bash ignoring error for a particular command
I am using following options ``` set -o pipefail set -e ``` In bash script to stop execution on error. I have ~100 lines of script executing and I don't want to check return code of every line in t...
How to store Node.js deployment settings/configuration files?
I have been working on a few Node apps, and I've been looking for a good pattern of storing deployment-related settings. In the Django world (where I come from), the common practise would be to have a...
- Modified
- 3 May at 12:9
Why do this() and super() have to be the first statement in a constructor?
Java requires that if you call `this()` or `super()` in a constructor, it must be the first statement. Why? For example: ``` public class MyClass { public MyClass(int x) {} } public class MySubCl...
- Modified
- 23 Jun at 10:18
How can I fill out a Python string with spaces?
I want to fill out a string with spaces. I know that the following works for zero's: ``` >>> print "'%06d'"%4 '000004' ``` But what should I do when I want this?: ``` 'hi ' ``` of course I c...
- Modified
- 13 Feb at 06:2
Java: convert List<String> to a join()d String
JavaScript has `Array.join()` ``` js>["Bill","Bob","Steve"].join(" and ") Bill and Bob and Steve ``` Does Java have anything like this? I know I can cobble something up myself with `StringBuilder`: `...