1
vote
10answers
85 views
java - string declaration occupying multiple lines ?
i am using java . inside java program i am writing an sql query.
string query = "select * from tableA" ;
however sometimes the query is really large . in those cases i want to write the query in …
1
vote
2answers
24 views
C# Attaching Eventhandler with New Handler vs Directly assigning it
Hello,
I was just wondering what the actual difference, advantage and disadvantages of creating a new event handler, vs assigning it directly to the event ?
_gMonitor.CollectionChanged += new …
1
vote
5answers
88 views
C# sample syntax question
Please, help me with to understand this piece of code:
protected Customer()
{
}
in the following class (Model class from sample WPF MVVM app):
public class Customer : …
2
votes
6answers
89 views
What is %2 in $id%2
What does %2 do in the following php?
$id=(int)@$_REQUEST['id'];
echo ( !($id%2) )?
"{'id':$id,'success':1}":
"{'id':$id,'success':0,'error':'Could not delete subscriber'}";
0
votes
3answers
74 views
Why this fails in PHP?
echo explode(' ','A B')[0]
What's the right version?
8
votes
8answers
192 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
151 views
Why doesn’t Perl allow one liners to be ‘unblocked’?
for example:
if (something)
function();
else
nope();
5
votes
2answers
80 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
56 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();
…
3
votes
1answer
35 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 …
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
26 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 …
0
votes
2answers
27 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, …
7
votes
11answers
426 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 …
0
votes
4answers
65 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 :(
