python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
What is the "Common" folder used for in software files?
After looking through software files, I often came across a folder named "Common".
I suspect this is only used for convention and can be used however the developers desire, but what data is ...
Charlie
Votes: 0
Answers: 1
Eclipse is insisting that project name must be a lowercase while not letting me progress to the next step
Name(MyGraphics) must start with lowercase
"next", "finish" links are grayed out when same(myGraphics) starts with lowercase
user41187
Votes: 0
Answers: 0
Is there a convention in using dict vs curly brace initialisation when using Plotly?
The docs for Plotly and many answers on Stack Overflow trend toward using
dict(foo=bar)
instead of
{'foo':'bar'}
Is there a particular reason for this preference? I've been told in the past that cur...
Tassilo Selover-Stephan
Votes: 0
Answers: 1
Is it good practice to use a for-loop to set a variable?
For example, if I wanted to set x to the first element in an array that isn't equal to 0, I could write:
int x = 0;
for(; x<arr.length && arr[x] != 0; x++) {}
//use x
Is this bad practice...
Joe C.
Votes: 0
Answers: 1