active questions tagged syntax - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T02:30:29Z http://stackoverflow.com/feeds/tag/syntax http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1866098/why-a-full-stop-and-not-a-plus-symbol-for-string-concatentanation-in-p 4 Why a full stop, "." and not a plus symbol, "+", for string concatentanation in PHP? CJ 2009-12-08T10:35:47Z 2009-12-09T01:00:51Z <p>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 "+" ?</p> <p>Is there any advantage to it, or any reason at all? Or did they just like to? :o)</p> http://stackoverflow.com/questions/1865530/more-simple-math-help-in-bash 0 More simple math help in bash! vgm64 2009-12-08T08:33:34Z 2009-12-08T22:10:35Z <p>In the same thread as <a href="http://stackoverflow.com/questions/1850235/simple-math-statements-in-bash-in-a-for-loop">this question</a>, 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:</p> <ol> <li>I have a circle in <code>x</code> and <code>y</code> with radius <code>r</code>.</li> <li>I specify <code>resolution</code> which is the distance between points I'm checking.</li> <li>I need to loop over x and y (from -r to r) and check if the current (x,y) is in the circle, but I loop over discrete <code>i</code> and <code>j</code> instead.</li> <li>Then <code>i</code> and <code>j</code> need to go from <code>-r/resolution</code> to <code>+r/resolution</code>.</li> <li>In the loop, what will need to happen is <code>echo "some_text i*resolution j*resolution 15.95 cm"</code> (note lack of <code>$</code>'s because I'm clueless). This output is what I'm really looking for.</li> </ol> <p>My best shot so far:</p> <pre><code>r=40.5 resolution=2.5 end=$(echo "scale=0;$r/$resolution") | bc for (( i=-end; i&lt;=end; i++ ));do for (( j=-end; j&lt;=end; j++ ));do x=$(echo "scale=5;$i*$resolution") | bc y=$(echo "scale=5;$j*$resolution") | bc if (( x*x + y*y &lt;= r*r ));then &lt;-- No, r*r will not work echo "some_text i*resolution j*resolution 15.95 cm" fi done done </code></pre> <p>I've had just about enough with bash and may look into ksh like was suggested by someone in my last question, but if anyone knows a proper way to execute this, please let me know! What ever the solution to this, it will set my future temperament towards bash scripting for sure.</p> http://stackoverflow.com/questions/1869777/associationg-vim-syntax-with-file-extension 2 Associationg vim syntax with file extension Homer J. Simpson 2009-12-08T20:56:50Z 2009-12-08T20:59:31Z <p>Hi,</p> <p>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 should use syntax=xml by default for that new type ? </p> <p>Any help appreciated.</p> http://stackoverflow.com/questions/110870/how-do-i-break-lines-in-python 2 How do I break lines in python? [closed] Matt Gregory 2008-09-21T12:17:31Z 2009-12-08T20:58:50Z <h3>Duplicate:</h3> <blockquote> <ul> <li><a href="http://stackoverflow.com/questions/53162/how-can-i-do-a-line-continuation-of-code-in-python">How can I do a line break (line continuation) in Python?</a></li> </ul> </blockquote> <p><sup><sub>...Please continue the discussion there.</sub></sup></p> <p><hr></p> <p>How do I break lines in Python code?</p> http://stackoverflow.com/questions/53162/how-can-i-do-a-line-break-line-continuation-in-python 8 How can I do a line break (line continuation) in Python? Ray Vega 2008-09-09T23:45:30Z 2009-12-08T20:27:55Z <p>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?</p> <p>For example, adding a bunch of strings:</p> <pre><code>e = 'a' + 'b' + 'c' + 'd' </code></pre> <p>have it like this:</p> <pre><code>e = 'a' + 'b' + 'c' + 'd' </code></pre> http://stackoverflow.com/questions/939386/javascript-immediate-function-invocation-syntax 10 JavaScript: immediate function invocation syntax Bobby Eickhoff 2009-06-02T13:05:24Z 2009-12-08T19:00:08Z <p>There is a <a href="http://www.jslint.com" rel="nofollow">JSLint</a> option, one of The Good Parts in fact, that "[requires] parens around immediate invocations," meaning that the construction</p> <pre><code>(function () { // ... })(); </code></pre> <p>would instead need to be written as</p> <pre><code>(function () { // ... }()); </code></pre> <p>My question is this -- can anyone explain why this second form might be considered better? Is it more resilient? Less error-prone? What advantage does it have over the first form?</p> <p><hr></p> <p>Since asking this question, I have come to understand the importance of having a clear visual distinction between function values and the values of functions. Consider the case where the result of immediate invocation is the right-hand side of an assignment expression:</p> <pre><code>var someVar = (function () { // ... }()); </code></pre> <p>Though the outermost parentheses are syntactically unnecessary, the opening parenthesis gives an up-front indication that the value being assigned is <em>not</em> the function itself but rather the result of the function being invoked.</p> <p>This is similar to Crockford's advice regarding capitalization of constructor functions -- it is meant to serve as a visual cue to anyone looking at the source code.</p> http://stackoverflow.com/questions/1868773/jquery-clearing-an-input-text-field 0 JQuery clearing an input text field msharma 2009-12-08T18:05:02Z 2009-12-08T18:19:18Z <p>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 message is shown everytime I select an option from drop down but the field does not get cleared. Any idea what the correct syntax should be:</p> <pre><code>jQuery(document).ready(function(){ jQuery("[id$='serialNumForm:noSerialNumProductKey']").change(function () { alert("In jquery change ftn!!"); jQuery("[id$='serialNumForm:inputSN']").value=""; }); }); </code></pre> <p>I have a form Id so I need to prepend the Id to the element id name. the alert displays fine just the value does not change.</p> http://stackoverflow.com/questions/1868024/tricky-makefile-syntax-with-quotes 0 Tricky makefile syntax with quotes WilliamKF 2009-12-08T16:16:47Z 2009-12-08T16:30:20Z <p>Hello,</p> <p>I have the following start on a makefile rule (thanks to help from others), but it doesn't quite work yet:</p> <pre><code>test_svn_version: @if [ $$(svn --version --quiet \ perl -ne '@a=split(/\./); \ print $$a[0]*10000 + $$a[1]*100 + $$a[2]') \ -lt 10600 ]; \ then \ echo &gt;&amp;2 "Svn version $$(svn --version --quiet) too old; upgrade to v1.6"; false; \ fi </code></pre> <p>It seems the single quote in the conditional is unmatched.</p> <p>Please help correct the syntax. I've tried many variants, but none seem correct.</p> <p>Thanks.</p> <p>-William</p> http://stackoverflow.com/questions/26086/how-do-you-make-wrong-code-look-wrong-what-patterns-do-you-use-to-avoid-semantic 24 How do you make wrong code look wrong? What patterns do you use to avoid semantic errors? Sam Hasler 2008-08-25T14:17:10Z 2009-12-08T16:19:06Z <p>Ever since I first made the mistake of doing an assignment in an <code>if</code> I've always written my ifs like this:</p> <pre><code>if (CONST == variable) { </code></pre> <p>to avoid the common (at least for me) mistake of doing this:</p> <pre><code>if (variable = CONST) { //WRONG, assigning 0 to variable </code></pre> <p>And since I read Joel Spolsky's essay <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Making Wrong Code Look Wrong</a> I've been trying to put his advice into practice.</p> <p>So what other patterns do you use to make wrong code look wrong, or to force syntactic errors if you make a semantic mistake?</p> http://stackoverflow.com/questions/1866617/conditional-statement-operands-order 0 Conditional statement operands order altern 2009-12-08T12:21:29Z 2009-12-08T12:28:46Z <p>Often I stumble upon following approach of defining conditional statement:</p> <pre><code>if(false === $expr) { ... } </code></pre> <p>I have several questions about this.</p> <ol> <li><p>Is there a point of using constant value (false, 1, 0, 123, 'string' etc) as a first operand instead of second in cases when second operand is not too long. For example, I would prefer to put false as the first operand when I have following statement:</p> <p><code>if(false === file_put_contents($file_path, $document['title'].PHP_EOL.PHP_EOL.$document['body'])) { ... }</code></p></li> <li><p>Does it make sense at all to use such approach in interpreted language which php is? I assume this comes from compiled languages such as Java when we want to avoid NullPointerException or in similar cases. Am I right?</p></li> <li><p>What useful cases of using constant value as first operand do you know?</p></li> </ol> http://stackoverflow.com/questions/1865548/whats-wrong-with-this-this-attrid-toggle 0 What's wrong with this $(this).attr("id").toggle(""); Ankur 2009-12-08T08:36:42Z 2009-12-08T09:22:09Z <p>What is the proper syntax for toggling the this.id object</p> <blockquote> <p>$(this).attr("id").toggle("");</p> </blockquote> <p>Thanks. Google is surprisingly not helping :(</p> http://stackoverflow.com/questions/1839016/f-explicit-match-vs-function-syntax 5 F# explicit match vs function syntax Benjol 2009-12-03T10:23:45Z 2009-12-08T07:03:28Z <p>Sorry about the vague title, but part of this question is what these two syntax styles are called:</p> <pre><code>let foo1 x = match x with | 1 -&gt; "one" | _ -&gt; "not one" let foo2 = function | 1 -&gt; "one" | _ -&gt; "not one" </code></pre> <p>The other part is what difference there is between the two, and when I would want to use one or the other?</p> http://stackoverflow.com/questions/1860998/strange-syntax-of-number-methods-in-javascript 2 Strange syntax of Number methods in JavaScript Andreas Grech 2009-12-07T16:13:47Z 2009-12-07T19:18:55Z <p>Take a look at the following code:</p> <pre><code>Number.prototype.isIn = function () { for (var i = 0, j = arguments.length; i &lt; j; ++i) { if (parseInt(this, 10) === arguments[i]) { return true; } } return false; }; var x = 2; console.log(x.isIn(1,2,3,4,5)); // &lt;= 'true' console.log(2.isIn(1,2,3,4,5)); // &lt;= Error: 'missing ) after argument list' </code></pre> <p>Why is it that when it's a variable, the code works correctly yet when it is a number literal, it fails ?</p> <p><hr></p> <p>And also, strangely enough, why does the following line work?</p> <pre><code>console.log((2).isIn(1,2,3,4,5)); // &lt;= 'true' </code></pre> <p>In the above line, I basically enclosed the literal in parenthesis.</p> http://stackoverflow.com/questions/1860662/c-typing-variables-holding-instances-of-constrained-generic-classes 2 C#: Typing variables holding instances of constrained generic classes vitch 2009-12-07T15:23:01Z 2009-12-07T15:37:46Z <p>I am just starting to get to grips with generics and am (ab)using them to refactor a fairly complex section of my code (I've only been using c# for a little while but am fairly experienced in other languages).</p> <p>I have an inheritance structure where my classes extend a base class. In the base class I have most of the functionality implemented. But I want to be able to associate these children classes with instances of their siblings.</p> <p>Here is a simplification of some of the relevant code:</p> <pre><code>class ParentClass&lt;T&gt; where T : ParentClass&lt;T&gt;, new() { public static T Create() { return new T(); } private object joinedItem; public void Join&lt;TJoinee&gt;(TJoinee item) where TJoinee : ParentClass&lt;TJoinee&gt;, new() { joinedItem = item; } } class ChildOne : ParentClass&lt;ChildOne&gt; { } class ChildTwo : ParentClass&lt;ChildTwo&gt; { } </code></pre> <p>With this code in place I can do something like: </p> <pre><code>var a = ChildOne.Create(); a.Join(new ChildTwo()); </code></pre> <p>The problem is that I needed to type <code>joinedItem</code> as object when really I want to type it as <code>ParentClass&lt;Something&gt;</code>. Is it possible to prescribe a more specific type to <code>joinedItem</code>? Or am I just horribly abusing the language and should be taking a completely different approach?</p> http://stackoverflow.com/questions/1858698/simple-c-new-question-syntax-related 0 Simple C# "new" question - syntax related Petr 2009-12-07T08:49:15Z 2009-12-07T09:05:54Z <p>Hi, I am just curious how to create new object in the command. (in order to save space and learn it of course). Just to combine the commands together and do not have picturebox abc= new picturebox on the extra line, Like this: <code>this.Form.Controls.Add(new Picturebox abc)</code> //something like that?</p> <p>Thanks for help</p> http://stackoverflow.com/questions/1850235/simple-math-statements-in-bash-in-a-for-loop 0 Simple math statements in bash in a for loop. vgm64 2009-12-04T23:03:18Z 2009-12-07T00:45:28Z <p>Hi. I'm quite new to bash scripting and usually avoid it all costs but I need to write a bash script to execute some simple things on a remote cluster. I'm having problems with a for loop that does the following:</p> <pre><code>for i in {1..20} do for j in {1..20} do echo (i*i + j*j ) **.5 &lt;--- Pseudo code! done done </code></pre> <p>Can you help me with this simple math? I've thrown <code>$</code>'s everywhere and can't write it properly. If you could help me understand how variables are named/assigned in bash for loops and the limitations of bash math interpretation (how do you do the square root?) I'd be very grateful. Thanks!</p> http://stackoverflow.com/questions/1856102/if-parentviewcontoller-statement 0 if parentViewContoller statement freaknroller 2009-12-06T18:12:06Z 2009-12-06T19:21:51Z <p>I'm writing a program with a UITableView with and add button in the Navigation Bar which leads to an edit page. When you click on an item in the table, a view (rView) is pushed with information pertaining to that item. This view has an edit button that also leads to the edit page. Is there a way that I could put an if statement for the done button on the edit page that says "if parentViewController is the UITableView to go to rView, else popViewController?" I would assume there is a way to do this, but I'm not sure of the syntax to do so. Thanks</p> http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha 31 What is your (least) favorite syntax gotcha? Goran 2008-10-02T15:30:33Z 2009-12-06T12:04:05Z <p>You know the ones that make you go WTH and are easily spotted by a coworker just passing by? </p> <p>Please keep it one gotcha per answer to simplify voting.</p> http://stackoverflow.com/questions/1851432/visualbasic-2010-syntax-refresher 1 VisualBasic 2010 Syntax Refresher Kaji 2009-12-05T07:15:31Z 2009-12-05T07:19:44Z <p>With Parallels and WinXP installed, I thought I'd put VisualStudio back on my computer and tinker around a bit, but it's been a while and I'm a bit rusty with it. Can someone refer me to a quick and easy guide to VBasic syntax?</p> http://stackoverflow.com/questions/1849643/php-mysql-fails-whenever-where-statement-is-present 0 PHP MySQL fails whenever WHERE statement is present Elliot 2009-12-04T21:06:01Z 2009-12-05T07:06:40Z <p>I am trying to make a simple query to a small MYSQL table, but when I insert the Where clause, I suddenly get an invalid query error (added a <code>while(mysql_fetch_array ){}</code> when working without the where). The MYSQL console gives a 1064 (syntax) error, however, I checked the MYSQL documentation and I am using the proper syntax as far as I can determine.</p> <pre><code>&lt;?php $ind=rand(1,3); $quote=Null; $sign=Null; $afil=Null; $con=mysql_connect(localhost,root,********);//connect to database mysql_select_db("phone_site",$con);//select table $query="SELECT * FROM quotes WHERE index=$ind";//get the row for that index $data=mysql_query($query); //print out text print ("&lt;p id=\"quote\"&gt;" . $data['quote'] . "&lt;/p&gt;"); print ("&lt;p id=\"ename\"&gt;" . $data['sign'] . "&lt;/p&gt;"); print ("&lt;p id=\"afill\"&gt;-- " . $data['afil'] . "&lt;/p&gt;"); mysql_close($con);//close connection ?&gt; </code></pre> <p>Anyone know what the problem is? I'm using XAMPP. Is there something wrong with its MYSQL?</p> http://stackoverflow.com/questions/1850108/f-always-unexpected-when-keyword 5 F#: always "unexpected 'when' keyword" Martin 2009-12-04T22:35:20Z 2009-12-04T22:58:33Z <p>The VS2010 Beta 2 F# compiler always complains about my usage of the when keyword, even when using copy-pasted code which is supposed to work, such as either of <a href="http://diditwith.net/2008/04/24/YetAnotherProjectEulerSeriesYAPES.aspx" rel="nofollow">these snippets</a>. For instance, this is the error I get when trying to execute a very trivial expression:</p> <p>"Error FS0010: Unexpected keyword 'when' in expression. Expected '->' or other token. "</p> <pre><code>[for i in 1..50 when i &lt; 10 -&gt; i] ---------------^^^^ </code></pre> http://stackoverflow.com/questions/1849162/creating-an-object-of-the-type-a-static-method-is-called-on-in-an-inheritance-cha 2 Creating an object of the type a static method is called on in an inheritance chain in C# vitch 2009-12-04T19:34:42Z 2009-12-04T19:42:04Z <p>I am trying to do something like this in C#</p> <pre><code>public class ParentClass { public static ParentClass GetSomething() { var thing = new // ????? return thing; } } public class ChildClass : ParentClass { } </code></pre> <p>And then I want to be able to call the static method on the child class like so:</p> <pre><code>ChildClass blah = ChildClass.GetSomething(); </code></pre> <p>e.g. When calling the static method on the child class I want to instantiate an instance of the child class. But I just want the static method defined on the parent. Is this at all possible? I'd be happy even with:</p> <pre><code>ChildClass blah = (ChildClass) ChildClass.GetSomething(); </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1738317/how-to-change-out-of-focus-text-selection-color-in-xcode 1 How to change out-of-focus text selection color in Xcode? Jackson 2009-11-15T18:14:44Z 2009-12-04T04:27:53Z <p>Okay, I'll bite.</p> <p>I've got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible.</p> <p>When I am doing a project search and iterating through the results, however, the results list stays in focus and the found text remains out of focus, using a different background color. This color is extremely hard to detect, especially when the text is embedded in a larger code block and the view is shifting around as it scrolls to the results.</p> <p>Here's an example:</p> <p><a href="http://img163.imageshack.us/img163/9780/infocusoutoffocus.jpg" rel="nofollow">Left side is in focus (just normal selection), right side is out of focus (during project find)</a></p> <p>Often it takes a few seconds to find where the heck the selected text is.</p> <p>Unless I'm just missing it, Xcode seems to offer no way to change this particular selection color. Interestingly, it also doesn't seem to follow the selection color from the Appearance panel. </p> <p>Does anyone know a way to change this color or force it to be more visible, short of changing my entire color scheme around?</p> http://stackoverflow.com/questions/1836178/how-do-i-call-a-function-name-that-is-stored-in-a-hash-in-perl 3 How do I call a function name that is stored in a hash in Perl? Ether 2009-12-02T22:06:34Z 2009-12-03T20:33:05Z <p>I'm sure this is covered in the documentation somewhere but I have been unable to find it... I'm looking for the syntactic sugar that will make it possible to call a method on a class whose name is stored in a hash (as opposed to a simple scalar):</p> <pre><code>use strict; use warnings; package Foo; sub foo { print "in foo()\n" } package main; my %hash = (func =&gt; 'foo'); Foo-&gt;$hash{func}; </code></pre> <p>If I copy <code>$hash{func}</code> into a scalar variable first, then I can call <code>Foo-&gt;$func</code> just fine... but what is missing to enable <code>Foo-&gt;$hash{func}</code> to work?</p> <p>(EDIT: I don't mean to do anything special by calling a method on class <code>Foo</code> -- this could just as easily be a blessed object (and in my actual code it is); it was just easier to write up a self-contained example using a class method.)</p> <p>EDIT 2: Just for completeness re the comments below, this is what I'm actually doing (this is in a library of Moose attribute sugar, created with <a href="http://search.cpan.org/perldoc?Moose%3A%3AExport" rel="nofollow">Moose::Export</a>):</p> <pre><code># adds an accessor to a sibling module sub foreignTable { my ($meta, $table, %args) = @_; my $class = 'MyApp::Dir1::Dir2::' . $table; my $dbAccessor = lcfirst $table; eval "require $class" or do { die "Can't load $class: $@" }; $meta-&gt;add_attribute( $table, is =&gt; 'ro', isa =&gt; $class, init_arg =&gt; undef, # don't allow in constructor lazy =&gt; 1, predicate =&gt; 'has_' . $table, default =&gt; sub { my $this = shift; $this-&gt;debug("in builder for $class"); ### here's the line that uses a hash value as the method name my @args = ($args{primaryKey} =&gt; $this-&gt;${\$args{primaryKey}}); push @args, ( _dbObject =&gt; $this-&gt;_dbObject-&gt;$dbAccessor ) if $args{fkRelationshipExists}; $this-&gt;debug("passing these values to $class -&gt; new: @args"); $class-&gt;new(@args); }, ); } </code></pre> <p>I've replaced the marked line above with this:</p> <pre><code> my $pk_accessor = $this-&gt;meta-&gt;find_attribute_by_name($args{primaryKey})-&gt;get_read_method_ref; my @args = ($args{primaryKey} =&gt; $this-&gt;$pk_accessor); </code></pre> <p>PS. I've just noticed that this same technique (using the Moose meta class to look up the coderef rather than assuming its naming convention) <em>cannot</em> also be used for predicates, as <a href="http://search.cpan.org/perldoc?Class%3A%3AMOP%3A%3AAttribute" rel="nofollow">Class::MOP::Attribute</a> does not have a similar <code>get_predicate_method_ref</code> accessor. :(</p> http://stackoverflow.com/questions/1837874/invalid-token-when-using-octal-numbers 2 Invalid Token when using Octal numbers. Rafael 2009-12-03T05:39:29Z 2009-12-03T17:16:48Z <p>Hi,</p> <p>I'm a beginner in python and I'm trying to use a octal number in my script, but when I try it, it returns me that error:</p> <pre><code>&gt;&gt;&gt; a = 010 SyntaxError: invalid token (&lt;pyshell#0&gt;, line 1) &gt;&gt;&gt; 01 SyntaxError: invalid token (&lt;pyshell#1&gt;, line 1) </code></pre> <p>There's something wrong with my code? I'm using Python3 (and reading a python 2.2 book)</p> http://stackoverflow.com/questions/1837738/ruby-equivalent-of-c-using-statement 0 Ruby Equivalent of C# 'using' Statement Jason Whitehorn 2009-12-03T04:55:38Z 2009-12-03T05:34:06Z <p>I've been getting into Ruby over the past few months, but one thing that I haven't figured out yet is what the Ruby equivalent of C#'s (and other languages) <code>using</code> statement is.</p> <p>I have been using the <code>require</code> statement to declare my dependencies on Gems, but I am getting lazy and would prefer to not fully qualify my frequently used class names with their module (namespace) name.</p> <p>Surely this is possible, right? I must not be using the right terminology as Google hasn't given me anything useful.</p> http://stackoverflow.com/questions/1814447/why-is-last-called-last-in-perl 7 Why is 'last' called 'last' in Perl? knorv 2009-11-29T02:26:52Z 2009-12-03T02:15:13Z <p>What is the historical reason to that <code>last</code> is called that in Perl rather than <code>break</code> as it is called in C?</p> <p>The design of Perl was influenced by C (in addition to awk, sed and sh - see man page below), so there must have been some reasoning behind not going with the familiar C-style naming of break/last.</p> <p>A bit of history from the Perl 1.000 (released 18 December, 1987) man page:</p> <blockquote> <p>[Perl] combines (in the author's opinion, anyway) some of the best features of C, sed, awk, and sh, so people familiar with those languages should have little difficulty with it. (Language historians will also note some vestiges of csh, Pascal, and even BASIC|PLUS.) </p> </blockquote> http://stackoverflow.com/questions/160971/what-are-your-language-hangups 9 What are your language "hangups"? Dan 2008-10-02T05:16:28Z 2009-12-02T18:53:28Z <p>I've read some of the recent language vs. language questions with interest... <a href="http://stackoverflow.com/questions/150043/python-v-perl#150103">Perl vs. Python</a>, <a href="http://stackoverflow.com/questions/136977/after-c-python-or-java#137343">Python vs. Java</a>, <a href="http://stackoverflow.com/questions/157207/can-one-language-be-better-than-another">Can one language be better than another?</a></p> <p>One thing I've noticed is that a lot of us have <em>very superficial</em> reasons for disliking languages. We notice these things at first glance and they turn us off. We shun what are probably perfectly good languages as a result of features that we'd probably learn to love or ignore in 2 seconds if we bothered.</p> <p>Well, I'm as guilty as the next guy, if not more. Here goes:</p> <ul> <li>Ruby: All the Ruby example code I see uses the <code>puts</code> command, and that's a sort of childish Yiddish anatomical term. So as a result, I can't take Ruby code seriously even though I should.</li> <li>Python: The first time I saw it, I smirked at the whole significant whitespace thing. I avoided it for the next several years. Now I hardly use anything else.</li> <li>Java: I don't like identifiersThatLookLikeThis. I'm not sure why exactly.</li> <li>Lisp: I have trouble with all the parentheses. Things of different importance and purpose (function declarations, variable assignments, etc.) are not syntactically differentiated and I'm too lazy to learn what's what.</li> <li>Fortran: uppercase everything hurts my eyes. I know modern code doesn't have to be written like that, but most example code is...</li> <li>Visual Basic: it bugs me that <code>Dim</code> is used to declare variables, since I remember the good ol' days of GW-BASIC when it was <em>only</em> used to dimension arrays.</li> </ul> <p>What languages <em>did</em> look right to me at first glance? Perl, C, QBasic, JavaScript, assembly language, BASH shell, FORTH.</p> <p>Okay, now that I've aired my dirty laundry... I want to hear yours. <strong>What are your language hangups? What superficial features bother you? How have you gotten over them?</strong></p> http://stackoverflow.com/questions/1634268/explain-javascripts-encapsulated-anonymous-function-syntax 8 Explain JavaScript's encapsulated anonymous function syntax Premasagar 2009-10-27T23:23:11Z 2009-12-02T18:10:09Z <h2>Summary</h2> <p>Can you explain the reasoning behind the syntax for encapsulated anonymous functions in JavaScript? Why does this work: <code>(function(){})();</code> but this doesn't: <code>function(){}();</code>?</p> <p><hr /></p> <h2>What I know</h2> <p>In JavaScript, one creates a named function like this:</p> <pre><code>function twoPlusTwo(){ alert(2 + 2); } twoPlusTwo(); </code></pre> <p>You can also create an anonymous function and assign it to a variable:</p> <pre><code>var twoPlusTwo = function(){ alert(2 + 2); }; twoPlusTwo(); </code></pre> <p>You can encapsulate a block of code by creating an anonymous function, then wrapping it in brackets and executing it immediately:</p> <pre><code>(function(){ alert(2 + 2); })(); </code></pre> <p>This is useful when creating modularised scripts, to avoid cluttering up the current scope, or global scope, with potentially conflicting variables - as in the case of Greasemonkey scripts, jQuery plugins, etc.</p> <p>Now, I understand why this works. The brackets enclose the contents and expose only the outcome (I'm sure there's a better way to describe that), such as with <code>(2 + 2) === 4</code>.</p> <p><hr /></p> <h2>What I don't understand</h2> <p>But I don't understand why this does not work equally as well:</p> <pre><code>function(){ alert(2 + 2); }(); </code></pre> <p>Can you explain that to me?</p> http://stackoverflow.com/questions/1833468/sql-query-designer 1 SQL Query Designer Belliez 2009-12-02T15:05:35Z 2009-12-02T15:45:41Z <p>I am wondering what the best (free preferred) sql query designers tools for Windows Vista are?</p> <p>I am looking to create quite complicated INSERTS and UPDATES that involves joins etc and being a SQL beginner would like to use a tool to help design my queries a bit faster.</p> <p>Thanks</p>