6
votes
8answers
134 views
Why do Perl control statements require braces?
This may look like the recent question that asked why Perl doesn't allow one-liners to be "unblocked," but I found the answers to that question unsatisfactory because they either referred to the …
1
vote
6answers
132 views
Why doesn’t Perl allow one liners to be ‘unblocked’?
for example:
if (something)
function();
else
nope();
1
vote
4answers
97 views
More simple math help in bash!
In the same thread as this question, I am giving this another shot and ask SO to help address how I should take care of this problem. I'm writing a bash script which needs to perform the following:
…
5
votes
11answers
390 views
Why a full stop, “.” and not a plus symbol, “+”, for string concatentanation in PHP?
Why did the designers of PHP decide to use a full stop / period / "." as the string
concatenation operator rather than the more usual plus symbol "+" ?
Is there any advantage to it, or any reason at …
5
votes
2answers
79 views
What does the leading semicolon in JavaScript libraries do?
In several JavaScript libraries I saw this notation at the very beginning:
/**
* Library XYZ
*/
;(function () {
// ... and so on
While I'm perfectly comfortable with the "immediately executed …
0
votes
3answers
52 views
Simple ajax not working, probably syntax error.
window.onload = function(){
testAjax();
}
var testAjax = function(){
var request = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
…
2
votes
8answers
368 views
What’s the different between “2*2” and “2**2” in Python?
What is the difference between the following codes?
code1
var=2**2*3
code2
var2=2*2*3
I see no difference.
This raises the following question.
Why is the code1 used if we can use code2?
3
votes
1answer
32 views
Associationg vim syntax with file extension
Hi,
how do I tell vim to use a certain syntax definition with a new file extension ?
Let's say I have files that are some kind of xml, but have a different extension, how do I let vim know that it …
8
votes
5answers
5k views
How can I do a line break (line continuation) in Python?
I have a long line of code that I want to break up among multiple lines. What do I use and what is the syntax?
For example, adding a bunch of strings:
e = 'a' + 'b' + 'c' + 'd'
have it like this:
…
10
votes
1answer
267 views
JavaScript: immediate function invocation syntax
There is a JSLint option, one of The Good Parts in fact, that "[requires] parens around immediate invocations," meaning that the construction
(function () {
// ...
})();
would instead need to …
0
votes
2answers
33 views
JQuery clearing an input text field
I have a question regarding clearing an input text field when a different drop down on teh same page is clicked, the value in the input text field should be cleared. Here is my jQuery ftn. The alert …
0
votes
1answer
25 views
Tricky makefile syntax with quotes
Hello,
I have the following start on a makefile rule (thanks to help from others), but it doesn't quite work yet:
test_svn_version:
@if [ $$(svn --version --quiet \
perl -ne …
24
votes
22answers
1k views
How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?
Ever since I first made the mistake of doing an assignment in an if I've always written my ifs like this:
if (CONST == variable) {
to avoid the common (at least for me) mistake of doing this:
if …
0
votes
2answers
26 views
Conditional statement operands order
Often I stumble upon following approach of defining conditional statement:
if(false === $expr) {
...
}
I have several questions about this.
Is there a point of using constant
value (false, …
0
votes
4answers
63 views
What’s wrong with this $(this).attr(”id”).toggle(””);
What is the proper syntax for toggling the this.id object
$(this).attr("id").toggle("");
Thanks. Google is surprisingly not helping :(
