How do I get my C# program to sleep for 50 milliseconds?
How do I get my C# program to sleep (pause execution) for 50 milliseconds?
Max parallel HTTP connections in a browser?
I am creating some suspended connections to an HTTP server (comet, reverse AJAX, etc). It works ok, but I see the browser only allows two suspended connections to a given domain simultaneously. So if ...
- Modified
- 10 Jul at 13:17
CodeIgniter removing index.php from url
My current urls look like this `[mysite]index.php/[rest of the slug]`. I want to strip `index.php` from these urls. `mod_rewrite` is enabled on my apache2 server. In `config`, `$config['index_page']...
- Modified
- 15 Dec at 05:32
Chrome Uncaught Syntax Error: Unexpected Token ILLEGAL
Receiving the subject error when Chrome tries to load the script file on the page. It says it's at the last line of the javascript file. I can't seem to find anything wrong with it. No errors in firef...
- Modified
- 23 May at 12:17
How to resolve AttributeError: 'DataFrame' object has no attribute
I know that this kind of question was asked before and I've checked all the answers and I have tried several times to find a solution but in vain. In fact I call a Dataframe using Pandas. I've upload...
Android SDK installation doesn't find JDK
I'm trying to install the Android SDK on my Windows 7 x64 System. `jdk-6u23-windows-x64.exe` is installed, but the setup refuses to proceed because it doesn't find the installation. Is this a kn...
- Modified
- 19 Apr at 11:18
Convert datatable to JSON in C#
1. I want to get records from database into a DataTable. 2. Then convert the DataTable into a JSON object. 3. Return the JSON object to my JavaScript function. I use [this](https://stackoverflow.c...
How to properly use jsPDF library
I want to convert some of my divs into PDF and I've tried jsPDF library but with no success. It seems I can't understand what I need to import to make the library work. I've been through the examples ...
- Modified
- 10 Sep at 21:24
Where does Chrome store extensions?
I looked in: ``` C:\Documents and Settings\username\Local Settings\Application Data\Google\Chrome\User Data\Default\Extensions ``` for unpacked extensions, but that folder is empty for me. For new...
- Modified
- 24 Feb at 10:59
Is it possible to move/rename files in Git and maintain their history?
I would like to rename/move a project subtree in Git moving it from ``` /project/xyz ``` to ``` /components/xyz ``` If I use a plain `git mv project components`, then all the commit history for...
How can I introduce multiple conditions in LIKE operator?
I want to write an SQL statement like below: ``` select * from tbl where col like ('ABC%','XYZ%','PQR%'); ``` I know it can be done using `OR`. But I want to know is there any better solution.
How to check if SMTP is working from commandline (Linux)
I have a SMTP-server, for the purpose of this question lets call it: `smtp.mydomain.example`. How do I check if the SMTP-server is in working? Can I send emails manually from Linux commandline?
- Modified
- 22 Jun at 19:9
How to add a spinner icon to button when it's in the Loading state?
Twitter [Bootstrap's buttons](http://getbootstrap.com/javascript/#buttons) have a nice `Loading...` state available. The thing is that it just shows a message like `Loading...` passed through the `da...
- Modified
- 20 Mar at 22:20
No Persistence provider for EntityManager named
I have my `persistence.xml` with the same name using `TopLink` under the `META-INF` directory. Then, I have my code calling it with: ``` EntityManagerFactory emfdb = Persistence.createEntityManagerFa...
- Modified
- 15 Jul at 16:23
How to wait for async method to complete?
I'm writing a WinForms application that transfers data to a USB HID class device. My application uses the excellent Generic HID library v6.0 which can be found [here](http://janaxelson.com/hidpage.ht...
- Modified
- 3 Sep at 13:0
How to switch to the new browser window, which opens after click on the button?
I have situation, when click on button opens the new browser window with search results. And work with it, then return back to original(first) window.
- Modified
- 26 Dec at 16:33
iloc giving 'IndexError: single positional indexer is out-of-bounds'
I am trying to encode some information to read into a Machine Learning model using the following ``` import numpy as np import pandas as pd import matplotlib.pyplot as py Dataset = pd.read_csv('fil...
- Modified
- 27 May at 11:27
How can I define an interface for an array of objects?
I have the following interface and code. I thought I was doing the definitions correctly but I am getting an error: ``` interface IenumServiceGetOrderBy { id: number; label: string; key: any }[]; ```...
- Modified
- 25 Sep at 09:34
How can I get color-int from color resource?
Is there any way to get a color-int from a color resource? I am trying to get the individual red, blue and green components of a color defined in the resource (R.color.myColor) so that I can set the v...
- Modified
- 6 Aug at 10:57
Validating email addresses using jQuery and regex
I'm not too sure how to do this. I need to validate email addresses using regex with something like this: ``` [a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*...
- Modified
- 22 Oct at 07:2
Creating and Update Laravel Eloquent
What's the shorthand for inserting a new record or updating if it exists? ``` <?php $shopOwner = ShopMeta::where('shopId', '=', $theID) ->where('metadataKey', '=', 2001)->first(); if ($shopOwne...
- Modified
- 12 May at 17:16
Difference between timestamps with/without time zone in PostgreSQL
Are timestamp values stored differently in PostgreSQL when the data type is `WITH TIME ZONE` versus `WITHOUT TIME ZONE`? Can the differences be illustrated with simple test cases?
- Modified
- 21 Feb at 11:3
Multiple IF AND statements excel
I need to write an "if" statement in Excel based on text in two different cells. ``` If E2 ='in play' and F2 ='closed' output 3 If E2= 'in play' and F2 ='suspended' output 2 If E2 ='In P...
- Modified
- 19 Jan at 19:39