ReactJS - .JS vs .JSX
There is something I find very confusing when working in `React.js`. There are plenty of examples available on internet which use `.js` files with `React` but many others use `.jsx` files. I have read...
- Modified
- 12 Oct at 05:11
AngularJS ngClass conditional
Is there any way to make an expression for something like [ng-class](https://docs.angularjs.org/api/ng/directive/ngClass) to be a conditional? For example, I have tried the following: ``` <span ng-c...
An example of how to use getopts in bash
I want to call `myscript` file in this way: ``` $ ./myscript -s 45 -p any_string ``` or ``` $ ./myscript -h #should display help $ ./myscript #should display help ``` My requirements are: ...
ReSharper "Cannot resolve symbol" even when project builds
But when I install ReSharper and ReSharper code analysis is enable, many keywords of my code are red with this error: ![Enter image description here](https://i.stack.imgur.com/mtS8B.jpg) ...
- Modified
- 26 Nov at 16:54
How to fix Error: listen EADDRINUSE while using NodeJS?
If I run a server with the port 80, and I try to use [XMLHttpRequest](https://github.com/driverdan/node-XMLHttpRequest) I am getting this error: `Error: listen EADDRINUSE` Why is it problem for NodeJS...
- Modified
- 6 Dec at 17:12
jQuery: Return data after ajax call success
I have something like this, where it is a simple call to a script that gives me back a value, a string.. ``` function testAjax() { $.ajax({ url: "getvalue.php", success: function(da...
- Modified
- 18 Feb at 08:58
How do I get the index of an iterator of an std::vector?
I'm iterating over a vector and need the index the iterator is currently pointing at. What are the pros and cons of the following methods? - `it - vec.begin()`- `std::distance(vec.begin(), it)`
- Modified
- 17 Jul at 09:39
Returning value that was passed into a method
I have a method on an interface: ``` string DoSomething(string whatever); ``` I want to mock this with MOQ, so that it returns whatever was passed in - something like: ``` _mock.Setup( theObject =...
What is the Record type?
What does `Record<K, T>` mean in Typescript? Typescript 2.1 introduced the `Record` type, describing it in an example: > ``` // For every properties K of type T, transform it to U function mapObject<K...
- Modified
- 29 Sep at 13:24
How to rebuild docker container in docker-compose.yml?
There are scope of services which are defined in docker-compose.yml. These services have been started. I need to rebuild only one of these and start it without up other services. I run the following c...
- Modified
- 18 Oct at 19:39
What is the idiomatic Go equivalent of C's ternary operator?
In C/C++ (and many languages of that family), a common idiom to declare and initialize a variable depending on a condition uses the ternary conditional operator : ``` int index = val > 0 ? val : -val...
- Modified
- 3 Oct at 09:5
Close Bootstrap Modal
I have a bootstrap modal dialog box that I want to show initially, then when the user clicks on the page, it disappears. I have the following: ``` $(function () { $('#modal').modal(toggle) }); <...
- Modified
- 3 Mar at 07:8
HTML5 Canvas vs. SVG vs. div
What is the best approach for creating elements on the fly and being able to move them around? For example, let's say I want to create a rectangle, circle and polygon and then select those objects and...
- Modified
- 17 Sep at 10:19
How to revert to origin's master branch's version of file
I'm in my local computer's master branch of a cloned master-branch of a repo from a remote server. I updated a file, and I want to revert back to the original version from the remote master branch. ...
- Modified
- 24 May at 22:34
How to have an auto incrementing version number (Visual Studio)?
I want to store a set of integers that get auto incremented at build time: ``` int MajorVersion = 0; int MinorVersion = 1; int Revision = 92; ``` When I compile, it would auto-increment `Revision`....
- Modified
- 6 Jul at 18:29
Why is lock(this) {...} bad?
The [MSDN documentation](https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2012/c5kehkcz(v=vs.110)) says that ``` public class SomeObject { public void SomeOperation() ...
- Modified
- 19 Apr at 06:24
Maximum length of the textual representation of an IPv6 address?
I want to store the data returned by `$_SERVER["REMOTE_ADDR"]` in PHP into a DB field, pretty simple task, really. The problem is that I can't find any proper information about the maximum length of t...
- Modified
- 11 Apr at 21:14
What is an unsigned char?
In C/C++, what an `unsigned char` is used for? How is it different from a regular `char`?
How do I increase the cell width of the Jupyter/ipython notebook in my browser?
I would like to increase the width of the ipython notebook in my browser. I have a high-resolution screen, and I would like to expand the cell width/size to make use of this extra space. Thanks! --- ...
- Modified
- 15 Nov at 14:22
Xcode Project vs. Xcode Workspace - Differences
I am trying to understand how the whole ecosystem of `iOS` works. Until now, I could find an answer for most of my question (and trust me, there have been a lots of them), but for this one, there see...
- Modified
- 8 Feb at 10:47
Unresolved reference issue in PyCharm
I have a directory structure ``` ├── simulate.py ├── src │ ├── networkAlgorithm.py │ ├── ... ``` And I can access the network module with `sys.path.insert()`. ``` import sys import os.path...
Grunt watch error - Waiting...Fatal error: watch ENOSPC
Why do I get the `Waiting...Fatal error: watch ENOSPC` when I run the watch task ? How do I solve this issue?
JavaScript math, round to two decimal places
I have the following JavaScript syntax: ``` var discount = Math.round(100 - (price / listprice) * 100); ``` This rounds up to the whole number. How can I return the result with two decimal places? ...
- Modified
- 1 Nov at 03:28
How to check if an array is empty or exists?
When the page is loading for the first time, I need to check if there is an image in `image_array` and load the last image. Otherwise, I disable the preview buttons, alert the user to push new image ...
- Modified
- 20 Oct at 12:42
Using CSS for a fade-in effect on page load
Can CSS transitions be used to allow a text paragraph to fade-in on page load? I really like how it looked on [http://dotmailapp.com/](http://web.archive.org/web/20120728071954/http://www.dotmailapp....
- Modified
- 25 Sep at 17:20