How do I free my port 80 on localhost Windows?
I installed XAMPP 1.6.8 and for some reason it didn't work. Later realized port 80 is not free or not listening. How can I release it or make it free? Thanks a lot!
- Modified
- 30 Dec at 04:27
how to bypass Access-Control-Allow-Origin?
I'm doing a ajax call to my own server on a platform which they set prevent these ajax calls (but I need it to fetch the data from my server to display retrieved data from my server's database). My aj...
- Modified
- 2 Feb at 04:26
Cross-Domain Cookies
I have two webapps WebApp1 and WebApp2 in two different domains. 1. I am setting a cookie in WebApp1 in the HttpResponse. 2. How to read the same cookie from HttpRequest in WebApp2? I know it sou...
- Modified
- 25 Dec at 07:11
Calling C/C++ from Python?
What would be the quickest way to construct a Python binding to a C or C++ library? (I am using Windows if this matters.)
How to update a single library with Composer?
I need to install only 1 package for my SF2 distribution (DoctrineFixtures). When I run ``` php composer.phar update ``` I get ``` - Updating twig/twig (dev-master 39d94fa => v1.13.0) The pa...
- Modified
- 27 Jul at 09:53
Replacing .NET WebBrowser control with a better browser, like Chrome?
Is there any relatively easy way to insert a modern browser into a .NET application? As far as I understand, the `WebBrowser` control is a wrapper for , which wouldn't be a problem except that it lo...
- Modified
- 4 Oct at 20:53
How to install OpenJDK 11 on Windows?
In the past, Oracle used to publish an executable installers for Windows that would: - - - - As of Java 11, the Oracle's free version of Java ([Oracle OpenJDK](http://jdk.java.net/11)) doesn't seem...
brew install mysql on macOS
I'm trying to setup up MySQL on mac os 10.6 using Homebrew by `brew install mysql 5.1.52`. Everything goes well and I am also successful with the `mysql_install_db`. However when I try to connect to ...
- Modified
- 21 May at 11:11
Compare given date with today
I have following ``` $var = "2010-01-21 00:00:00.0" ``` I'd like to compare this date against today's date (i.e. I'd like to know if this `$var` is before today or equals today or not) What funct...
How to use onClick() or onSelect() on option tag in a JSP page?
How to use `onClick()` or `onSelect()` with `option` tag? Below is my code in which I tried to implement that, but it is not working as expected. Note: where `listCustomer` domain object list getting...
- Modified
- 17 Jul at 14:33
Chrome: Uncaught SyntaxError: Unexpected end of input
When loading my page in Google Chrome, I get a vague error in the console: > Uncaught SyntaxError: Unexpected end of input I have no idea what is causing it. How would I go about debugging this erro...
- Modified
- 9 Dec at 10:24
How can I write a regex which matches non greedy?
I need help about regular expression matching with non-greedy option. The match pattern is: ``` <img\s.*> ``` The text to match is: ``` <html> <img src="test"> abc <img src="a" src='a' a=b> </h...
- Modified
- 18 Jul at 16:8
Produce a random number in a range using C#
How do I go about producing random numbers within a range?
Visual Studio Code how to resolve merge conflicts with git?
I tried to merge my branch with another branch and there was a merge conflict. In Visual Studio Code (version 1.2.1) I resolved all of the issues, however when I try to commit it keeps giving me this ...
- Modified
- 6 Jul at 04:56
Git: "please tell me who you are" error
I have app servers that I bootstrap together using Chef + some ad-hoc bash scripts. The problem is, when I want to run an update on one of these app servers, I get: ``` 19:00:28: *** Please tell me w...
- Modified
- 25 Jul at 19:4
Wildcards in jQuery selectors
I'm trying to use a wildcard to get the id of all the elements whose id begin with "jander". I tried `$('#jander*')`, `$('#jander%')` but it doesn't work.. I know I can use classes of the elements to...
- Modified
- 7 Dec at 22:39
Find records from one table which don't exist in another
I've got the following two tables (in MySQL): ``` Phone_book +----+------+--------------+ | id | name | phone_number | +----+------+--------------+ | 1 | John | 111111111111 | +----+------+----------...
How to show all privileges from a user in oracle?
Can someone please tell me how to show all privileges/rules from a specific user in the sql-console?
- Modified
- 15 Jul at 20:43
How to view files in binary from bash?
I would like to view the contents of a file in the current directory, but in binary from the command line. How can I achieve this?
List of All Locales and Their Short Codes?
I'm looking for a list of all locales and their short codes for a PHP application I am writing. Is there much variation in this data between platforms? Also, if I am developing an international appli...
- Modified
- 7 Jul at 03:31
error: passing xxx as 'this' argument of xxx discards qualifiers
``` #include <iostream> #include <set> using namespace std; class StudentT { public: int id; string name; public: StudentT(int _id, string _name) : id(_id), name(_name) { } int ...
- Modified
- 20 Jun at 09:12
How to check if a value exists in an object using JavaScript
I have an object in JavaScript: ``` var obj = { "a": "test1", "b": "test2" } ``` How do I check that test1 exists in the object as a value?
- Modified
- 9 Jul at 19:46
PHP Warning: PHP Startup: Unable to load dynamic library
I run a PHP script and get this error: > PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20090626/ixed.5.2.lin' - /usr/local/lib/php/extensio...
- Modified
- 21 Mar at 14:37
"Expected BEGIN_OBJECT but was STRING at line 1 column 1"
I have this method: ``` public static Object parseStringToObject(String json) { String Object = json; Gson gson = new Gson(); Object objects = gson.fromJson(object, Object.class); par...
CUSTOM_ELEMENTS_SCHEMA added to NgModule.schemas still showing Error
I just upgraded from Angular 2 rc4 to rc6 and having troubles doing so. I see the following error on my console: ``` Unhandled Promise rejection: Template parse errors: 'cl-header' is not a known ...
- Modified
- 13 Oct at 16:14