User Ali - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T06:35:11Zhttp://stackoverflow.com/feeds/user/8689http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/501839/is-calloc4-6-the-same-as-calloc6-49Is calloc(4, 6) the same as calloc(6, 4) ?Ali2009-02-01T23:36:57Z2009-04-22T10:19:04Z
<p>I'm a beginner C programmer, and I assumed that this would be the case, but would like some affirmation if possible.</p>
<p>If they are the same, why not just take one argument instead?</p>
http://stackoverflow.com/questions/193344/starting-compsci-uni-next-week-whats-the-best-advice-you-can-muster6Starting CompSci Uni next week, what's the best advice you can muster?Ali2008-10-10T23:34:11Z2009-04-18T12:19:58Z
<p>What's the one thing you would you tell someone just starting at Uni, or wish someone had told you before you started?</p>
<p>[Edit: thanks already for the astounding advice, I won't mark any as accepted because I couldn't choose.]</p>
http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310768#3107688Answer by Ali for Defend PHP; convince me it isn't horribleAli2008-11-22T02:32:45Z2008-11-22T02:45:13Z<p>A couple of people at my university were talking about how bad PHP is recently.</p>
<p>My opinion is that anyone with any knowledge of other programming languages shouldn't even be wasting their time talking about how bad PHP is, they just should use something better and forget about it.</p>
<p>However, I also take slight issue with completely writing off PHP as I only entered my programming career through PHP.</p>
<p>This may sound absolutely mad, but to me PHP almost fits into the same category as C and Lisp as being a language that more or less nails what it is trying to do in a fairly in a fairly fundamental way.</p>
<p>My explanation to them was simply: "<strong>PHP went down the simplicity road from C and I think it stopped at more or less the right place.</strong>"</p>
<p>Edit:
When you look at the bad code from PHP programmers, you are looking at the code from people who didn't graduate to bigger things, is it really surprising that they write poorer code? Even for the people who did move on, you are still looking at their first programs, before they learned better programming ideas. I can tell you, my PHP code written after learning Lisp is indistinguishable from the code I wrote a year ago in PHP.</p>
http://stackoverflow.com/questions/155615/is-it-reasonable-to-assume-my-visitors-have-javascript-enabled/181087#1810871Answer by Ali for Is it reasonable to assume my visitors have javascript enabled?Ali2008-10-08T01:37:34Z2008-10-08T01:37:34Z<p>Never ever assume Javascript for form validation, as your question implies. Someone will eventually realise this and turn Javascript off.</p>
<p>Instead, code the app in fairly regular html manner and use Javascript for what it is: an optional perk for your users.</p>
<p>Even for an entirely AJAX app like Gmail, the complete works of form validation is required on the server side.</p>
http://stackoverflow.com/questions/172798/lisp-in-the-real-world/172909#1729099Answer by Ali for Lisp in the real worldAli2008-10-06T00:31:38Z2008-10-06T00:31:38Z<p>ITA software uses a fair amount of CL.</p>
<p><a href="http://www.itasoftware.com/careers/l_e_t_lisp.html?catid=8" rel="nofollow">http://www.itasoftware.com/careers/l_e_t_lisp.html?catid=8</a></p>
http://stackoverflow.com/questions/157207/can-one-language-be-better-than-another/157664#1576640Answer by Ali for Can one language be better than another?Ali2008-10-01T13:45:41Z2008-10-01T13:45:41Z<p>Some of the answers here have been "yes, depending on the circumstances".</p>
<p>This is correct, where one language has features that another hasn't and vice-versa. Given the complexity of life there will always be circumstances where one is better. If you can't distinguish which is best in a circumstance, it does not mean they're equally good, just that you are imperfect at distinguishing.</p>
<p>Take for example, C. Given two languages, C and "C without a for loop", I can tell you with certainty that the former is better than the latter.</p>
<p>Unfortunately this analogy must be taken with a pinch of salt when comparing different languages. In the above example, all other things were being equal, but in the real world, using a language has lots of other consequences, such as the wage of your programmers etc.</p>
http://stackoverflow.com/questions/148905/how-did-you-first-get-interested-in-programming/151491#1514910Answer by Ali for How did you first get interested in programming?Ali2008-09-30T02:06:00Z2008-09-30T02:06:00Z<p>My school counter-strike server needed to be L-3-3-T, so I made a website for its Message of the Day welcome. Cutting and pasting HTML got me what I wanted quickly, and I was always looking to make the HTML more perfect through semantics and xhtml etc.</p>
<p>My second website used PHP and similarly I loved the early wonders and continually improving.</p>
<p>I was 17 and considered I'd be step behind against people who start at age 10, but that didn't matter because I enjoyed it.</p>
<p>I got a PHP job after school, and later changed my University course to CompSci, where I'll be starting in 2 weeks!</p>
http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/112682#1126822Answer by Ali for What was the biggest lesson you learned in your career as an IT professional?Ali2008-09-22T00:43:18Z2008-09-22T15:07:20Z<p>There's a quickest way to add feature X, and there's the right way to add feature X.</p>
<p>When you're newly starting on something, the quickest way is almost never the right way. </p>
<p>However, if you've previously done everything the right way, you'll soon enough find that the quickest way <em>is</em> the right way. If you haven't, then you'll now have to add feature X in a <em>slower and worse</em> way!</p>
<p>Because of this, working on any project for a reasonable amount of time will either feel like affirmation that you are coding super god, or that you have produced a horrible abomination unto this earth.</p>
<p>Although you don't know it yet, there will always be another feature X to do after the current one that will further compound whichever of those feelings you now experience.</p>
<p><strong>Never just do it the quickest way!</strong> By the time it starts to hurt enough to want to rewrite it properly, you'll need a fair amount of time to do it.</p>
http://stackoverflow.com/questions/111102/how-does-a-javascript-closure-work/111200#11120031Answer by Ali for How does a javascript closure work ?Ali2008-09-21T15:16:36Z2008-09-22T00:26:00Z<p>Whenever you see the function keyword within another function, the inner function has access to variables in the outer function.</p>
<pre><code>function foo(x) {
var tmp = 3;
function bar(y) {
alert(x + y + (++tmp));
}
bar(10);
}
foo(2)
</code></pre>
<p>This will always alert 16, because bar can access the x which was defined as an argument to foo, and it can also access tmp from foo.</p>
<p>That is not a closure. A closure is when you <b>return</b> the inner function.
The inner function will close-over the variables of foo before leaving.</p>
<pre><code>function foo(x) {
var tmp = 3;
return function (y) {
alert(x + y + (++tmp));
}
}
var bar = foo(2); // bar is now a closure.
bar(10);
</code></pre>
<p>The above function will also alert 16, because bar can still refer to x and tmp, even though it is no longer directly inside the scope.</p>
<p>However, since tmp is still hanging around inside bar's closure, it is also being incremented. It will be incremented each time you call bar.</p>
<p>(Not for your 6 year old: It is possible to create more than one closure function, either by returning a list of them or by setting them to global variables. All of these will refer to the <strong>same</strong> x and the same tmp, they don't make their own copies.)</p>
<p>Edit:
And now to explain the part that isn't obvious.</p>
<p>Here the number x is a literal number. As with other literals in Javascript, when foo is called, the number x is <b>copied</b> into foo as its argument x.</p>
<p>On the other hand, Javascript always uses references when dealing with Objects. If say, you called foo with an Object, the closure it returns will <b>reference</b> that original Object!</p>
<pre><code>function foo(x) {
var tmp = 3;
return function (y) {
alert(x + y + tmp);
x.memb = x.memb ? x.memb + 1 : 1;
alert(x.memb);
}
}
var age = new Number(2);
var bar = foo(age); // bar is now a closure referencing age.
bar(10);
</code></pre>
<p>As expected, each call to bar(10) will increment x.memb. What might not be expected, is that x is simply referring to the same object as the age variable! After a couple of calls to bar, age.memb will be 2!</p>
<p>This is the basis for memory leaks with HTML objects, but thats a little beyond the scope of this, ahem, article, ahem. <a href="http://stackoverflow.com/questions/111102#112265">http://stackoverflow.com/questions/111102#112265</a></p>
http://stackoverflow.com/questions/112482/what-is-the-difference-between-lang-and-type-attributes-in-a-script-tag/112511#1125112Answer by Ali for What is the difference between "lang" and "type" attributes in a script tag?Ali2008-09-21T23:20:30Z2008-09-22T00:17:02Z<p><script language=""> can be used for serving VBScript and different versions of Javascript.</p>
<p>Unless you need a specific version of Javascript, don't use the language attribute, your code will still work as normal without it.</p>
<p>Even if you do need a specific Javascript version for some part of the code, try to test if the feature exists instead, with a (typeof window.blah.feature != "undefined") check.</p>
<p>Here is an example of the language attribute's usage:
<a href="http://bclary.com/2004/08/27/javascript-version-incompatibilities" rel="nofollow">http://bclary.com/2004/08/27/javascript-version-incompatibilities</a></p>
<p>The language attribute is deprecated because of this loosely defined or uncertain behaviour.</p>
<p>The type attribute is different entirely. It tells the browser what mime type the script is, and should always be specified in a script tag.</p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88487#8848768Answer by Ali for What's your favorite "programmer" cartoon?Ali2008-09-17T22:52:58Z2008-09-21T19:22:42Z<p><img src="http://www.codecomics.com/images/comics/assalto_en.png" alt="License" title="" /></p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/111243#1112430Answer by Ali for What is the single most effective thing you did to improve your programming skills?Ali2008-09-21T15:39:14Z2008-09-21T15:39:14Z<p>Watch all of the SICP lectures and learn to program in the way that they do.</p>
<p><a href="http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/" rel="nofollow">http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/</a></p>
<p>I've known rudimentary Lisp for half a year now and programming for 1 and a half years before that. Right now I'm starting to watch the videos, and I'm almost certain I'll watch them again in a few years to refresh my memory. They're entertaining, interesting and mind bending of the way you think about programs.</p>
http://stackoverflow.com/questions/110933/how-should-i-choose-between-get-and-post-methods-in-html-forms/111174#1111740Answer by Ali for How should I choose between GET and POST methods in HTML forms?Ali2008-09-21T15:00:20Z2008-09-21T15:00:20Z<p>The Google search engine is an example of a GET form, because you should be able to search twice in a row and not affect the results by doing this. It also has the nice effect that you can link to a search results page, because it is a normal GET request, like any other address.</p>
<p>As said previously, use POST for deleting or updating data, but I'd like to add that you should immediately <b>redirect</b> your user to a GET page.</p>
<p><a href="http://en.wikipedia.org/wiki/Post/Redirect/Get" rel="nofollow">http://en.wikipedia.org/wiki/Post/Redirect/Get</a></p>
http://stackoverflow.com/questions/110928/is-there-a-valid-reason-for-enforcing-a-maximum-width-of-80-characters-in-a-code/111156#1111561Answer by Ali for Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age?Ali2008-09-21T14:47:24Z2008-09-21T14:47:24Z<p>In the Linux coding standard, not only do they keep the 80 character limit, but they also use 8 space indentation.</p>
<p>Part of the reasoning is that if you ever reach the right margin, you should consider moving an indentation level into a separate function.</p>
<p>This will make clearer code because regardless of indentation lengths, it is harder to read code with many nested control structures.</p>
http://stackoverflow.com/questions/71088/what-is-the-best-way-to-access-a-database-from-php/71177#711770Answer by Ali for What is the best way to access a database from PHP?Ali2008-09-16T10:54:24Z2008-09-16T10:54:24Z<p>For executing a command, I'd use functions for commonly executed SQL commands.
These functions can then be used to make something more specific like get_users()</p>
<p>a) Make a function for each of the queries you might want to make, such
as</p>
<pre><code>db_select($opts)
</code></pre>
<p>where $opts is a hash array with keys:</p>
<pre><code>['table_name', 'selection', 'condition', 'group_by', 'order_by', 'limit']
</code></pre>
<p>b) If you used SQL heavily, I might be tempted to make a SQL command builder, which takes a hash array and returns a command. Something like:</p>
<pre><code>db_builder(array('select'=>array('customers','from'=>'bar','where'=>'foo=10')))
</code></pre>
<p>The above mentioned functions would use this in their implementations and so would you if you need a completely random statement, and hopefully the whole thing would be rock solid by reusing the command builder code everywhere.</p>
http://stackoverflow.com/questions/64508/guile-scheme-quoted-period2Guile scheme - quoted period?Ali2008-09-15T16:36:44Z2008-09-16T10:34:57Z
<p>What does the following Guile scheme code do?</p>
<pre><code>(eq? y '.)
(cons x '.)
</code></pre>
<p>The code is not valid in MzScheme, is there a portable equivalent across scheme implementations?</p>
<p>I am trying to port this code written by someone else. Guile seems to respond to '. with #{.}#, but I'm not sure what it means or how to do this in another scheme.</p>
http://stackoverflow.com/questions/64508/guile-scheme-quoted-period/66068#660682Answer by Ali for Guile scheme - quoted period?Ali2008-09-15T19:39:24Z2008-09-15T19:39:24Z<p>Okay, it seems that '. is valid syntax for (string->symbol ".") in Guile, whereas MzScheme at least requires |.| for the period as a symbol.</p>
http://stackoverflow.com/questions/64953/anyone-using-lisp-for-a-mysql-backended-web-app/65000#650000Answer by Ali for Anyone using Lisp for a MySQL-backended web app?Ali2008-09-15T17:38:42Z2008-09-15T17:38:42Z<p>Cliki is a good resource for Common Lisp libraries:
<a href="http://www.cliki.net/database" rel="nofollow">http://www.cliki.net/database</a></p>
<p>There is a project named Elephant (<a href="http://common-lisp.net/project/elephant/index.html" rel="nofollow">http://common-lisp.net/project/elephant/index.html</a>), which is an abstraction for object persistence in CL.</p>
http://stackoverflow.com/questions/64508/guile-scheme-quoted-period/64947#649470Answer by Ali for Guile scheme - quoted period?Ali2008-09-15T17:30:24Z2008-09-15T17:30:24Z<p>Thank you Kyle, I already recognise that this code is not portable, which is why I seek a replacement. I also know that (a . b) is the syntax for a pair in Scheme, but I don't know what (a b '.) means to Guile, which is why I ask the question in the first place. If anyone knows the symbol needed instead, your reply would be most welcome.</p>
http://stackoverflow.com/questions/501839/is-calloc4-6-the-same-as-calloc6-4/501843#501843Comment by Ali on Is calloc(4, 6) the same as calloc(6, 4) ?Ali2009-02-02T23:00:32Z2009-02-02T23:00:32Z@ocdecio - Actually I think it could be misleading. Perhaps would be slightly better to say "Use a single argument wrapper on calloc" or "Use malloc followed by memset". Although clearly its not that big a problem.http://stackoverflow.com/questions/501839/is-calloc4-6-the-same-as-calloc6-4/501854#501854Comment by Ali on Is calloc(4, 6) the same as calloc(6, 4) ?Ali2009-02-02T00:00:04Z2009-02-02T00:00:04ZThanks. Btw you need to change the second calloc in the bottom code to a malloc.http://stackoverflow.com/questions/58640/great-programming-quotes/58855#58855Comment by Ali on Great programming quotesAli2009-02-01T21:05:50Z2009-02-01T21:05:50Zagreed with hasen, that's a lame way to respond to criticism.http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/310768#310768Comment by Ali on Defend PHP; convince me it isn't horribleAli2008-11-22T19:36:46Z2008-11-22T19:36:46ZYeah this answer is defending PHP because its pretty good at being simple IMO, nothing more.http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/216240#216240Comment by Ali on Why isn't LISP more widely used?Ali2008-11-22T03:21:42Z2008-11-22T03:21:42ZThe only thing I can infer from this is that we should all be using clojure right now.http://stackoverflow.com/questions/172798/lisp-in-the-real-world/173680#173680Comment by Ali on Lisp in the real worldAli2008-11-22T03:09:45Z2008-11-22T03:09:45ZMy plans are probably quite similar:
1) Make a kickass library on top of scheme (halfway there now).
2) Test the library by writing cool programs in it (1 down, few more to go).
3) Open source the library (already done but very casually).
4) ...
5) Lisp becomes the natural tool for a job at work.
http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/310673#310673Comment by Ali on What programming language should be taught in Computer Science 101?Ali2008-11-22T03:00:01Z2008-11-22T03:00:01ZSame here with York UK. Unfortunately with point 5, I'm afraid a few people also seem to get the impression that what they see in the intro course is the limit of its capabilities and walk away with an unfounded disrespect for lisp. Towards the end of the course I'll try and clear some of that up.http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106240#106240Comment by Ali on Why isn't LISP more widely used?Ali2008-10-08T13:09:08Z2008-10-08T13:09:08Z@Attila, thats a remarkably silly suggestion. A very minor reason Lisp is not used more widely is that people believe if <i>forces</i> you to use emacs. And you've only perpetuated that myth. I use any normal text editor for lisp, and do_something() has the same number of parens as (do_something).http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182117#182117Comment by Ali on How do you advance beyond being an 'advanced' programmer?Ali2008-10-08T13:02:43Z2008-10-08T13:02:43Z@dblack: I wouldn't say so. Mentoring would be a kind of personal development, and you could even learn something from the people you're mentoring.http://stackoverflow.com/questions/155615/is-it-reasonable-to-assume-my-visitors-have-javascript-enabled/155636#155636Comment by Ali on Is it reasonable to assume my visitors have javascript enabled?Ali2008-10-08T11:59:28Z2008-10-08T11:59:28Z@matt and flea: You're both kind of missing the point. Javascript can introduce security holes, and it is reasonable to turn it off for normal usage. A site which needlessly breaks when Javascript is off is pretty dumb.http://stackoverflow.com/questions/155615/is-it-reasonable-to-assume-my-visitors-have-javascript-enabled/156648#156648Comment by Ali on Is it reasonable to assume my visitors have javascript enabled?Ali2008-10-08T01:31:27Z2008-10-08T01:31:27ZDown-voted: AJAX is not a silver bullet. Do not use AJAX willy nilly to prove a point. For small updates where it is suitable, sure, use AJAX. For major page updates, unless you already have AJAX as an absolute <i>requirement</i>, use http, respecting other's valid security concerns.http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175281#175281Comment by Ali on What's the most egregious pop culture perversion of programming?Ali2008-10-07T11:24:35Z2008-10-07T11:24:35Z
@CrashCodes: Hacker.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88487#88487Comment by Ali on What's your favorite "programmer" cartoon?Ali2008-10-06T14:33:01Z2008-10-06T14:33:01ZRobbers initially took note of this and started saying "Give me your money or both your money and you life", but they soon shortened it to simply "GIVE ME YOUR F****** MONEY!!"http://stackoverflow.com/questions/172798/lisp-in-the-real-world/172802#172802Comment by Ali on Lisp in the real worldAli2008-10-06T14:25:47Z2008-10-06T14:25:47Z@1800: Forget what Matthias said, I actually think its quite funny. Your assertion that "there have been no other significant examples of LISP being used in the real world" directly implies that you are omniscient. Bravo!http://stackoverflow.com/questions/157260/whats-the-best-way-to-loop-through-a-set-of-elements-in-javascript/157270#157270Comment by Ali on What's the best way to loop through a set of elements in JavaScript?Ali2008-10-01T13:35:03Z2008-10-01T13:35:03ZAgreed. If you're counting backwards, write a comment that says "its merely a speed issue", then anyone who wants to edit your code won't be confused by it.