MySQL query to get column names?
I'd like to get all of a mysql table's col names into an array in php? Is there a query for this?
Produce a random number in a range using C#
How do I go about producing random numbers within a range?
How do I call a JavaScript function on page load?
Traditionally, to call a JavaScript function once the page has loaded, you'd add an `onload` attribute to the body containing a bit of JavaScript (usually only calling a function) ``` <body onload="f...
- Modified
- 8 Apr at 19:51
No connection could be made because the target machine actively refused it?
Sometimes I get the following error while I was doing HttpWebRequest to a WebService. I copied my code below too. --- --- ``` ServicePointManager.CertificatePolicy = new TrustAllCertificate...
- Modified
- 31 May at 10:46
How to add new elements to an array?
I have the following code: ``` String[] where; where.append(ContactsContract.Contacts.HAS_PHONE_NUMBER + "=1"); where.append(ContactsContract.Contacts.IN_VISIBLE_GROUP + "=1"); ``` Those two append...
How do I convert a numpy array to (and display) an image?
I have created an array thusly: ``` import numpy as np data = np.zeros( (512,512,3), dtype=np.uint8) data[256,256] = [255,0,0] ``` What I want this to do is display a single red dot in the center o...
- Modified
- 27 Apr at 22:27
How to get the first line of a file in a bash script?
I have to put in a bash variable the first line of a file. I guess it is with the grep command, but it is any way to restrict the number of lines?
- Modified
- 17 Mar at 14:33
How to initialize a dict with keys from a list and empty value in Python?
I'd like to get from this: ``` keys = [1,2,3] ``` to this: ``` {1: None, 2: None, 3: None} ``` Is there a pythonic way of doing it? This is an ugly way to do it: ``` >>> keys = [1,2,3] >>> dic...
- Modified
- 22 Jul at 19:30
What are allowed characters in cookies?
What are the allowed characters in both cookie name and value? Are they same as URL or some common subset? Reason I'm asking is that I've recently hit some strange behavior with cookies that have `-`...
- Modified
- 2 Dec at 15:59
Force browser to clear cache
Is there a way I can put some code on my page so when someone visits a site, it clears the browser cache, so they can view the changes? Languages used: ASP.NET, VB.NET, and of course HTML, CSS, and j...
What does [STAThread] do?
I am learning C# 3.5 and I want to know what `[STAThread]` does in our programs?
- Modified
- 31 Jan at 15:46
Stack smashing detected
I am executing my a.out file. After execution the program runs for some time then exits with the message: ``` **** stack smashing detected ***: ./a.out terminated* *======= Backtrace: =========* */li...
Check if a class is derived from a generic class
I have a generic class in my project with derived classes. ``` public class GenericClass<T> : GenericInterface<T> { } public class Test : GenericClass<SomeType> { } ``` Is there any way to find ou...
- Modified
- 2 Oct at 15:43
How to create a string or formula containing double quotes in Excel?
How can I construct the following string in an Excel formula: > Maurice "The Rocket" Richard If I'm using single quotes, it's trivial: `="Maurice 'The Rocket' Richard"` but what about double quotes?
- Modified
- 9 Jun at 21:48
sudo: npm: command not found
I'm trying to upgrade to the latest version of node. I'm following the instructions at [http://davidwalsh.name/upgrade-nodejs](http://davidwalsh.name/upgrade-nodejs) But when I do: ``` sudo npm instal...
Uses for Optional
Having been using Java 8 now for 6+ months or so, I'm pretty happy with the new API changes. One area I'm still not confident in is when to use `Optional`. I seem to swing between wanting to use it ev...
- Modified
- 2 Nov at 12:16
Convert Pandas column containing NaNs to dtype `int`
I read data from a .csv file to a Pandas dataframe as below. For one of the columns, namely `id`, I want to specify the column type as `int`. The problem is the `id` series has missing/empty values. ...
Cannot change version of project facet Dynamic Web Module to 3.0?
I am using maven to create a dynamic webapp in Eclipse. I added some folders like `src/test/java` and `src/test/resources`. Also I changed the library in Java Build Path to obtain the JavaSE-1.7. It's...
Case insensitive access for generic dictionary
I have an application that use managed dlls. One of those dlls return a generic dictionary: ``` Dictionary<string, int> MyDictionary; ``` The dictionary contains keys with upper and lower case. ...
- Modified
- 5 Nov at 10:42
On select change, get data attribute value
The following code returns 'undefined'... ``` $('select').change(function(){ alert($(this).data('id')); }); <select> <option data-id="1">one</option> <option data-id="2">two</option> ...
- Modified
- 1 Dec at 17:31
What is the Windows equivalent of the diff command?
I know that there is a post similar to this : [here](https://stackoverflow.com/questions/1011269/how-to-do-diff-r-of-unix-in-windows-cmd-prompt). I tried using the `comp` command like it mentioned, bu...
How to turn NaN from parseInt into 0 for an empty string?
Is it possible somehow to return 0 instead of `NaN` when parsing values in JavaScript? In case of the empty string `parseInt` returns `NaN`. Is it possible to do something like that in JavaScript to...
- Modified
- 20 Jul at 21:52
Java - get the current class name?
All I am trying to do is to get the current class name, and java appends a useless non-sense to the end of my class name. How can I get rid of it and only return the actual class name? ``` String cl...
Can Mockito stub a method without regard to the argument?
I'm trying to test some legacy code, using Mockito. I want to stub a `FooDao` that is used in production as follows: ``` foo = fooDao.getBar(new Bazoo()); ``` I can write: ``` when(fooDao.getBar(...
- Modified
- 29 Nov at 16:24
How to get the start time of a long-running Linux process?
Is it possible to get the start time of an old running process? It seems that `ps` will report the date (not the time) if it wasn't started today, and only the year if it wasn't started this year. Is ...