User dlamblin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:54:59Z http://stackoverflow.com/feeds/user/459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1276638/substring-arguments-best-practice/1911120#1911120 0 Answer by dlamblin for Substring arguments best practice dlamblin 2009-12-15T23:08:52Z 2009-12-15T23:08:52Z <p>It depends on the case, but I more often find I know exactly how many characters I want to take out, and prefer the start with length parameterization. But I could easily see a case where I've searched a long string for two tokens and now have their indexes, while it's trivial math to use either case, in this case I might prefer the start and end indexes.</p> <p>Also, from a document writer's perspective, having two parameters of the same basic meaning is probably easier to write about and an easier mnemonic.</p> <p>Each of these functions does neat saves when given strange values, such as an end smaller than a start, a negative length, a negative start, or a length or end beyond the string's end.</p> <p>For JavaScript the best practice is to use <code>substring</code> over <code>substr</code> because it's supported in more (albeit usually older) browsers. If they'd gone with BasicScript instead would there have been a MID() and a MIDDLE() function? Who doesn't love BASIC syntax?</p> http://stackoverflow.com/questions/1904478/firefox-plugin-to-build-custom-links-for-the-right-click-menu/1904548#1904548 0 Answer by dlamblin for Firefox plugin to build custom links for the right click menu dlamblin 2009-12-15T00:40:18Z 2009-12-15T00:40:18Z <p>I believe in <a href="http://www.linuxjournal.com/article/9730" rel="nofollow" title="How to write your own context menu plug-in">you</a>!</p> <p>I know you're trying to save yourself some time with due diligence researching whether it's been done, but with the power of copy and paste, you could "write your own" almost as quickly as asking the question.</p> http://stackoverflow.com/questions/1811818/running-ruby-something-rb-in-each-loop/1811827#1811827 2 Answer by dlamblin for running "ruby something.rb" in each loop dlamblin 2009-11-28T06:59:49Z 2009-12-08T20:57:08Z <p>So starting up the ruby process, parsing the script, executing it and exiting 100,000 times is faster than importing the script into the loop under JRuby? Well, fine if you've measured that then there isn't too much wrong with what you're doing. But if you've only measured running the script once in JRuby and once under ruby (or maybe averaged 5 runs, not in loops of 100,000 times, then there may well be something wrong with what you're doing because you've partially compared the JRuby startup time to the ruby startup time, which wouldn't be a fair comparison since you must run JRuby and then ruby in what you've actually written.</p> <p>From you comments it seems you're having trouble clearing the memory used by each run when run in JRuby. In that case, you might try a varient of running the loop in the external ruby if that handles the memory correctly it's better than starting up ruby 100,000 times.</p> <pre><code>#main.rb `ruby dosomething.rb` ---- #dosomething.rb (1..100000).each do |loop| doingSomething end </code></pre> http://stackoverflow.com/questions/423080/aw-snap-google-chrome-error/1864204#1864204 0 Answer by dlamblin for Aw, Snap! (Google Chrome error) dlamblin 2009-12-08T02:21:44Z 2009-12-08T02:21:44Z <p>I opened it in chrome under XP and it said:</p> <pre><code>A PHP Error was encountered Severity: Notice Message: Undefined index: all Filename: controllers/tracker.php Line Number: 53 Fatal error: ob_start() [&lt;a href='ref.outcontrol'&gt;ref.outcontrol&lt;/a&gt;]: Cannot use output buffering in output buffering display handlers in /var/www/sof.modos.org/system/libraries/Exceptions.php on line 160 </code></pre> http://stackoverflow.com/questions/1864134/modern-batch-processing-in-linux/1864164#1864164 1 Answer by dlamblin for Modern Batch Processing in Linux dlamblin 2009-12-08T02:07:58Z 2009-12-08T02:07:58Z <p>Tools languages infrastructure? <code>Vim</code>, <code>bash</code>, <code>cron</code>. Unless I misunderstand your question. For MySQL type tasks I use <code>perl</code> or <code>python</code>.</p> http://stackoverflow.com/questions/1863426/trouble-synchronizing-threads-with-apache-mina/1864115#1864115 0 Answer by dlamblin for Trouble synchronizing threads with Apache Mina dlamblin 2009-12-08T01:52:35Z 2009-12-08T01:52:35Z <p>If three threads are each in loops of <code>sendMessage()</code> then you would expect them to output the lines sometimes interleaved, sometimes not. Which is the behavior you describe.</p> <p>I do see you've attempted to synchronize those threads in order to output full blocks of messages each. So what is probably going wrong is that each thread has it's own <code>session</code> object. Your threads must share the object on which they synchronize.</p> <p>The simplest way to address this is to remove the synchronized statement and make <code>sendMessage()</code> a <a href="http://java.sun.com/docs/books/tutorial/essential/concurrency/syncmeth.html" rel="nofollow">synchronized method</a>. This might not be very speedy though.</p> http://stackoverflow.com/questions/1817716/how-to-create-a-super-huge-file-with-pure-c-or-linux-shell-or-dos-commands/1817919#1817919 1 Answer by dlamblin for How to create a super-huge file with pure c or linux-shell or dos-commands? dlamblin 2009-11-30T04:56:30Z 2009-11-30T04:56:30Z <p>In suse in a VM I did <code>dd if=/dev/zero of=file;rm file</code> which filled the disk, and when it was full deleted the file. This allowed me to compress the image a little more for some reason, and I read about doing it on a forum somewhere.</p> http://stackoverflow.com/questions/165473/are-programming-books-a-necessity-nowadays/1760916#1760916 1 Answer by dlamblin for Are programming books a necessity nowadays dlamblin 2009-11-19T04:40:16Z 2009-11-27T09:00:52Z <p>Books, or perhaps their e-paper descendants, will never be completely useless. There are a number of wonderful books out there about programming, and general practices which are already mentioned by other persons.</p> <p>Books as a reference are quickly becoming unnecessary (I have the <a href="http://rads.stackoverflow.com/amzn/click/1565922875" rel="nofollow">B</a><a href="http://pr0n.net/e6372a" rel="nofollow">e Developer's</a>) due to the fact that any good library, language, or framework will have good, up-to-date online documentation in a consistent and useful format. Sure the inter-provider differences (compare Apple Developer site's iPhone sdk, MSDN's ASP.NET MVC, php.net, Adobe livedocs and netbsd man pages) are vast and confusing, but your first step in becoming fluent is to learn to find, skim and read the docs. It's certainly (barring network issues) faster than using a book, or sitting through a tutorial screen-cast.</p> <p>However books as either a guide or a discussion of a particular practice or style aren't as easily replaced on-line; though there's excellent free on-line books too, these are still books in a way since they're meant to be read in ordered chapters. This type of learning can not be replicated by a video or audio, though it can be supplemented, which is why despite universities having a focus of class time and lectures, you generally always get assigned a textbook or stack of journals.</p> <p>All that said, the <em>majority of programming books</em> you'll see on store shelves, and yes, libraries too, fall into two categories of <em>poor quality</em>: Those written by programmers with no business writing a book (these lack clear organization, pacing, introductory material, or a progression of knowledge, and sometimes they lack editing thus being unreadable), and those written by decent technical writers with more potential yet with no business writing a programming book (these have a clear readable book style, yet fail by either skipping huge parts of what they purport to teach as though the writer didn't know anyone might need to know that part, or they fail by being littered with step by step notes including hot-keys or photos and listings that get mundane, or having useless examples and listings that mix in far too many comments when clearly those comments could be better explained in the main text or in margins). It's pretty rare you find a good programming book written well by an experienced writer in a way that shows complete knowledge of and for an experienced programmer (or for a novice, as the goal may be).</p> <p>PS Seriously, a book with code that's shorter than two facing pages should basically never have a comment anywhere. Crudely the code should be marked with asterisks, double crosses etc with footnotes, or the code should be properly introduced and followed by explanatory text that would invalidate any further need to explain the code in the code sample. </p> http://stackoverflow.com/questions/1585683/postal-address-parsing-with-gmail-contacts/1805484#1805484 0 Answer by dlamblin for postal address parsing with gmail contacts dlamblin 2009-11-26T20:18:18Z 2009-11-26T20:18:18Z <p>There is not a standard parser for addresses; You might look at the suggestions in this question: <a href="http://stackoverflow.com/questions/16413/parse-usable-street-address-city-state-zip-from-a-string">http://stackoverflow.com/questions/16413/parse-usable-street-address-city-state-zip-from-a-string</a> but it seems US centric. There's also the recommendation of using the google maps API. This is actually very useful, but it's rate limited.</p> http://stackoverflow.com/questions/1805214/curl-how-do-i-know-if-my-cookies-are-being-set-properly/1805230#1805230 0 Answer by dlamblin for cURL: How do I know if my cookies are being set properly? dlamblin 2009-11-26T19:07:53Z 2009-11-26T19:52:49Z <p>If this were the command line curl you'd throw in the <code>-v</code> parameter. Pay attention to the lines starting with <code>&gt; Cookie: </code>.</p> <p>The php version of this is:</p> <pre><code>curl_setopt($ch,CURLOPT_VERBOSE,TRUE);//and set CURLOPT_STDERR to STDOUT </code></pre> <p>And if this were a browser I would debug with one of these: you can use <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a> on IE, <a href="https://addons.mozilla.org/en-US/firefox/addon/966" rel="nofollow">TamperData</a> or <a href="http://getfirebug.com/net.html" rel="nofollow">Firebug (net)</a> on Firefox, the inspector <a href="http://blog.chromium.org/2009/06/developer-tools-for-google-chrome.html" rel="nofollow">on Chrome</a> and <a href="http://www.playingwithwire.com/2009/06/safari-4-launches-new-developer-tools/" rel="nofollow">on Safari</a>, or a <a href="http://www.google.com/search?q=debug+proxy" rel="nofollow">proxy</a> with any browser to watch how the form is submitted by a "normal" browser.</p> <p>The proxy approach might work if you set php's curl to use it.</p> <pre><code>curl_setopt($ch,CURLOPT_HTTPPROXYTUNNEL,TRUE);//&amp; CURLOPT_PROXYPORT CURLOPT_PROXY </code></pre> <p>If you want to just add cookies to one request you could write a line like:</p> <pre><code>$ch-&gt;headers[] = 'Cookie: recent=543..; _session_id=6185..; __utma=572.1.1.1.1; __utmc=572..; __utmz=572.1.1.1.1.utmccn=(referral)|utmcsr=domain.com|utmcct=/request/path|utmcmd=referral'; </code></pre> <p>but I'm not certain about that one, these might be more along the same line:</p> <pre><code>curl_setopt($ch,CURLOPT_COOKIE,"recent=543..; _session_id=618.."); // Possibly, but I think this might overwrite other headers. curl_setopt($ch,CURLOPT_HTTPHEADER, "Cookie: recent=543..; _session_id=6185.."); </code></pre> http://stackoverflow.com/questions/1805160/getting-the-original-secretkey-from-hex-format/1805194#1805194 0 Answer by dlamblin for Getting the original secretkey from hex format dlamblin 2009-11-26T19:00:07Z 2009-11-26T19:06:24Z <p>What is the original SecretKey format?<br> Are you aware <code>byte[]</code> contains signed bytes valued from -128 to 127? Would it hurt if you tried this:</p> <pre><code>byte[] key = { 0x00,0x01,0x02,0x03,0x05,0x06,0x07,0x08, 0x0A,0x0B,0x0C,0x0D,0x0F,0x10,0x11,0x12 }; </code></pre> <p>Note: If you have values like 0x80 - 0xFF you'll need to cast them as (byte)0x80 - (byte)0xFF to avoid a warning about the range.</p> http://stackoverflow.com/questions/1795114/login-via-curl-to-javascript-page/1795197#1795197 1 Answer by dlamblin for Login via cURL to Javascript Page? dlamblin 2009-11-25T07:22:00Z 2009-11-25T07:22:00Z <p>You can use <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a> on IE, <a href="https://addons.mozilla.org/en-US/firefox/addon/966" rel="nofollow">TamperData</a> or <a href="http://getfirebug.com/net.html" rel="nofollow">Firebug (net)</a> on Firefox, the inspector <a href="http://blog.chromium.org/2009/06/developer-tools-for-google-chrome.html" rel="nofollow">on Chrome</a> and <a href="http://www.playingwithwire.com/2009/06/safari-4-launches-new-developer-tools/" rel="nofollow">on Safari</a>, or a <a href="http://www.google.com/search?q=debug+proxy" rel="nofollow">proxy</a> with any browser to watch how the form is submitted by a "normal" browser. You'll then recreate the query strings and any post data with the multitude of parameters available to curl. Curl can even store cookies from one request in a file until they're needed for the next request, which I've found very helpful.</p> http://stackoverflow.com/questions/1777944/analogy-a-programming-language-without-namespaces-is-like/1777976#1777976 -1 Answer by dlamblin for Analogy? A programming language without namespaces is like (...) dlamblin 2009-11-22T06:11:03Z 2009-11-22T06:19:21Z <p>A programming language without namespaces is like an traveling without a passport. It works fine if you stay in the same country or travel between trusting neighbors, but it's likely to lead to unhappy complications if you plan to do more than that.</p> <p>I also considered a THX1138 reference involving family names and the necessity for giving up naming control to a central authority if they're removed, but this didn't flow well.</p> http://stackoverflow.com/questions/1761762/writing-a-file-type-viewer-for-a-browser 0 Writing a file-type viewer for a browser dlamblin 2009-11-19T08:31:25Z 2009-11-19T23:30:52Z <p>I need some help moving from the concept phase to the requirements gathering phase on this:<br> Imagine I want to extend existing browsers (FireFox primarily, Safari, Chrome (multiple platforms would be nice)) to recognize a new filetype and display it 'correctly'. Sort of like the Adobe PDF plugin (which Safari no longer needs), but for something like (TeX) DVI or PostScript. This will not be embedded in HTML like a movie, or image, but the whole file, like a pdf.</p> <p>Where would you start for each of these browsers? Would this be best done as an <a href="http://www.mozilla.org/projects/plugins/" rel="nofollow">NPAPI</a> plugin for all browsers or might there be a better route for specific browsers (like <a href="http://developer.apple.com/mac/library/documentation/InternetWeb/Conceptual/WebKit%5FPluginProgTopic/WebKitPluginTopics.html" rel="nofollow">Apple's webkit plugins</a>)? This is how SVG support kind of started with Batik and other plugins. Are there samples for making an Netscape Plugin API object built for and installable on Windows, Mac OS X and Linux?</p> <p>What if the viewing of the source format was best translated to HTML (on the client side) rather than a fully rendered image (E.G. bolding and indenting for YAML, or syntax coloring for <code>*.ini</code> files or apache log files, perhaps even a language like go) would that change your answer as to how to approach this?</p> http://stackoverflow.com/questions/1250912/safari-plugin-development/1761633#1761633 0 Answer by dlamblin for Safari plugin development dlamblin 2009-11-19T07:57:29Z 2009-11-19T07:57:29Z <p>Since you want to write a plugin for Safari, you might also be interested in reading about <a href="http://developer.apple.com/mac/library/documentation/InternetWeb/Conceptual/WebKit%5FPluginProgTopic/WebKitPluginTopics.html" rel="nofollow">developing plugins for webkit</a>.</p> http://stackoverflow.com/questions/1757918/should-i-use-0-or-copy-the-argument-list-in-perl/1757939#1757939 0 Answer by dlamblin for Should I use $_[0] or copy the argument list in Perl? dlamblin 2009-11-18T18:06:09Z 2009-11-19T04:10:13Z <p>Since they work, both are fine, the common practice is to <code>shift</code> off parameters.</p> <pre><code>sub parse { my $hr = shift; my $var1 = $hr-&gt;{'elem1'}; } </code></pre> http://stackoverflow.com/questions/1715138/duplicate-referrer-header-http-sys-barfs/1757975#1757975 1 Answer by dlamblin for Duplicate Referrer Header - HTTP.sys barfs dlamblin 2009-11-18T18:12:11Z 2009-11-18T18:12:11Z <p>If I number these 1-4, I would say that 2 makes the best sense for your live environment, while 3 might be something you'd need to do if your development environment cannot similarly match your live environment. Number 1 and 2 are quite similar since a load balancer is basically a reverse proxy. Number 4, as you pointed out, seems impossible without waiting for Sony to update the browser and plugin they're using, which seems unlikely since they probably farmed it out and have poor control over it in the first place (kind of like the firmware on my korean made TV is made in Palo Alto, and it took them 10 months to comply with the GPL due to not being able to communicate well enough).</p> http://stackoverflow.com/questions/1754126/javascript-subtraction-problem/1754154#1754154 0 Answer by dlamblin for JavaScript subtraction problem dlamblin 2009-11-18T07:05:44Z 2009-11-18T07:05:44Z <p>It honestly looks fine, but you'd get better milage out of learning to use <a href="http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback" rel="nofollow">jQuery</a> to do this. (press run).</p> http://stackoverflow.com/questions/1754045/using-regular-expression-to-extract-full-words-from-text/1754102#1754102 0 Answer by dlamblin for Using regular expression to extract full words from text dlamblin 2009-11-18T06:44:50Z 2009-11-18T06:49:53Z <p>Basic and direct:</p> <pre><code>$s = "Scottish Premier League (click ... coupon)"; $s =~ m/(Scottish) (Premier League)/; print "Match groups one and two: '$1' '$2'\n"; </code></pre> <p>You probably wanted more generalized matching:</p> <pre><code>$s = "Generalized Matching on a string (click ... coupon)"; $s =~ m/^(\S+)\s(.+)\s+\(click/; print "Match groups one and two: '$1' '$2'\n"; </code></pre> <p>These are Perl; be more specific next time.</p> <p>Also, help yourself, use a tool, like <a href="http://www.regexbuddy.com/demo.html" rel="nofollow">RegexBuddy</a> or <a href="http://www.ultrapico.com/Expresso.htm" rel="nofollow">Expresso</a>.</p> http://stackoverflow.com/questions/1753643/advanced-cron-for-a-perl-script/1753739#1753739 2 Answer by dlamblin for Advanced cron for a perl script dlamblin 2009-11-18T05:01:27Z 2009-11-18T05:01:27Z <p>Couldn't a cron job trigger twice; once to start and once to stop? with a <code>pid</code> file in a known location you can handle this easily. Also when there's schedule changes, just create too many cron jobs that cover the regular times and the different times, then have the job check to see if this is a valid time to start.</p> http://stackoverflow.com/questions/1747074/removing-files-with-duplicate-content-from-single-directory-perl-or-algorithm/1747299#1747299 0 Answer by dlamblin for Removing files with duplicate content from single directory [Perl, or algorithm] dlamblin 2009-11-17T08:10:49Z 2009-11-17T09:50:39Z <p>I'd recommend that you do it in Perl, and use <a href="http://perldoc.perl.org/File/Find.html" rel="nofollow">File::Find</a> while you're at it.<br> Who knows what you're doing to generate your list of files, but you might want to combine it with your duplicate checking.</p> <pre><code>perl -MFile::Find -MDigest::MD5 -e ' my %m; find(sub{ if(-f&amp;&amp;-r){ open(F,"&lt;",$File::Find::name); binmode F; $d=Digest::MD5-&gt;new-&gt;addfile(F); if(exists($m{$d-&gt;hexdigest}){ $m{$d-&gt;hexdigest}[5]++; push $m{$d-&gt;hexdigest}[0], $File::Find::name; }else{ $m{$d-&gt;hexdigest} = [[$File::Find::name],0,0,0,0,1]; } close F }},"."); foreach $d (keys %m) { if ($m{$d}[5] &gt; 1) { print "Probable duplicates: ".join(" , ",$m{$d}[0])."\n\n"; } }' </code></pre> http://stackoverflow.com/questions/1747234/embed-a-jquery-expression-inside-a-css-file/1747283#1747283 0 Answer by dlamblin for Embed a JQuery expression inside a css file?? dlamblin 2009-11-17T08:05:13Z 2009-11-17T08:05:13Z <p>Not on any browser I tried; There are <a href="http://robertnyman.com/2007/11/13/stop-using-poor-performance-css-expressions-use-javascript-instead/" rel="nofollow">CSS expressions</a> that might work on IE 6, but they're not exactly speedy (so says the link). I think the problem is when the CSS loads vs when the jQuery selector is initialized. So you'll have to write some on DOM ready code to select all of the elements that need their heights set and then set it.</p> http://stackoverflow.com/questions/1733807/help-needed-for-writing-regular-expression-for-this-complex-conditions/1733883#1733883 0 Answer by dlamblin for Help needed for writing regular expression for this complex conditions dlamblin 2009-11-14T10:15:51Z 2009-11-14T10:21:55Z <p>You should totally use a regular expression tool like regex buddy.</p> <p>You're trying to verify that your string generally looks like the sample?</p> <pre><code>1, 2-3, 4..5, &lt;6, &lt;=7, &gt;8, &gt;=9 </code></pre> <p>matches</p> <pre><code>\s*(\d+|\d+-\d+|\d+\.\.\d+|[&lt;&gt;]=?\d+)\s*(,\s*(\d+|\d+-\d+|\d+\.\.\d+|[&lt;&gt;]=?\d+)\s*)* </code></pre> <p>It's easier to split on <code>,</code> and then match each part with</p> <pre><code>\s*(\d+|\d+-\d+|\d+\.\.\d+|[&lt;&gt;]=?\d+)\s* </code></pre> <p>That reads: white space trimmed, match digits or digits dash digits, or digits dot dot digits, or one of less-than or greater-than with optional equal to digits.</p> <p>You can compress that down to the harder to read:</p> <pre><code>\s*((\d+(-|\.\.)|[&lt;&gt;]=?)?\d+)\s* </code></pre> <p>If you want all your digits to be 1-2 digits only, then change all the <code>\d+</code> to <code>\d{1,2}</code> or <code>\d\d?</code></p> http://stackoverflow.com/questions/1733815/how-do-i-use-ajax-with-jquery-in-perl/1733836#1733836 2 Answer by dlamblin for How do I use Ajax with jQuery in Perl? dlamblin 2009-11-14T09:52:33Z 2009-11-14T10:04:07Z <p>So confusing, your perl code just outputs html without any headers (like content-type). Your javascript doesn't seem to use jQuery, and none of the referred IDs appear anywhere in your example.</p> <p>Were you looking to use <a href="http://docs.jquery.com/Ajax/load#urldatacallback" rel="nofollow">load</a> something like: <code>$('#view_span').load('filename_ajax.cgi');</code>?<br> Or perhaps:</p> <pre><code>$('#view_span').load( 'filename_ajax.cgi', {'target': escape(encodeURI('get_section'))}, alertViewResult); </code></pre> http://stackoverflow.com/questions/1733582/pass-functions-to-a-class/1733608#1733608 0 Answer by dlamblin for Pass functions to a class dlamblin 2009-11-14T07:38:31Z 2009-11-14T07:48:25Z <p>Are you asking if PHP has functional references? It doesn't. But it does let you call functions by putting their name in a string, or an array of a class name and method name. See <a href="http://au.php.net/call%5Fuser%5Ffunc" rel="nofollow"><code>call_user_func()</code></a> for a description, and <a href="http://us3.php.net/manual/en/functions.variable-functions.php" rel="nofollow">variable functions</a>.</p> http://stackoverflow.com/questions/1728721/virtual-tour-using-sketch-up-ajax-flash-technologies/1728753#1728753 0 Answer by dlamblin for Virtual Tour using sketch up, ajax, flash technologies. dlamblin 2009-11-13T11:48:40Z 2009-11-13T11:48:40Z <p>Flash's 3D capabilities are severely limited; You might get better results with Silverlight (by coding a reader for sketchup models to a 3D scene) or <a href="http://unity3d.com/gallery/live-demos/index.html#tropical-paradise" rel="nofollow">Unity3D's plugin</a> (by exporting the model from sketchup and importing into their toolchain).</p> http://stackoverflow.com/questions/1728466/jquery-select-the-next-element/1728728#1728728 0 Answer by dlamblin for JQuery select the next element dlamblin 2009-11-13T11:42:00Z 2009-11-13T11:42:00Z <p>I tried this and I think it does what you want:</p> <pre><code>var s='selected'; var c='.sameClass'; $($(c+'.'+s).removeClass(s).nextAll(c)[0]).addClass(s) // s and c added for brevity, probably use this expanded in source code. </code></pre> <p>It does not work if the last <code>.sameClass</code> element was selected, but then, neither do the other answers so far.</p> http://stackoverflow.com/questions/1704398/jquery-datepicker-popup-not-closing-on-select-date-in-ie8/1724726#1724726 1 Answer by dlamblin for Jquery datepicker popup not closing on select date in IE8 dlamblin 2009-11-12T19:25:34Z 2009-11-12T19:25:34Z <p>It doesn't look like you're doing anything wrong since the <code>ValidatorOnChange</code> code is generated for you; there's something wrong in the way it's creating its <code>vals</code> object which appears to end up null on ie8.</p> <p>It's <a href="http://stackoverflow.com/questions/1607316/jquery-ui-datetimepicker-and-asp-net-comparevalidator-for-datatypecheck">been asked before</a>, and the solution is overriding the <code>onSelect</code> function with a no-op function.</p> <p>This is not the only kind of validator problem out there. Here's a <a href="http://www.twu.ca/divisions/technology/sst/orion/blog/jquery-autocomplete-and-asp-net-validation.html" rel="nofollow">vaguely similar issue</a> with the autocomplete feature.</p> http://stackoverflow.com/questions/1720290/what-is-so-wrong-with-having-statement-expression-delimiters-like-semicolons-in/1720433#1720433 0 Answer by dlamblin for What is so wrong with having statement/expression delimiters, like semicolons, in a language? dlamblin 2009-11-12T07:07:07Z 2009-11-12T07:07:07Z <p>Are you saying modern languages like Ruby, Groovy and Go should have them? Or are you saying that because they decided not to have them there must be something wrong with them?</p> <p>Pretty much all languages delimit their statements somehow. Just because a semi-colon is visible and a new-line is not does not mean that one is better than the other.</p> <p>It sounds like asking something along the lines of: Looking as Lisp I wonder why aren't all languages virtually syntax free?</p> http://stackoverflow.com/questions/1720376/change-color-of-switch-in-iphone-app/1720402#1720402 0 Answer by dlamblin for change color of switch in iphone app dlamblin 2009-11-12T06:58:42Z 2009-11-12T06:58:42Z <p>You will find an answer by using an undocumented feature <a href="http://www.skylarcantu.com/blog/2009/10/14/alternate-uiswitch-colors/" rel="nofollow">here</a>. As noted your app might get rejected because of changing the color.</p> <p>It kind of starts with this:</p> <pre><code>UISwitch *aSwitch = [[UISwitch alloc] initWithFrame:someRectangle]; [aSwitch setAlternateColors:YES]; //Do something with aSwitch [aSwitch release]; </code></pre> http://stackoverflow.com/questions/1707527/cut-out-part-of-a-string Comment by dlamblin on cut out part of a string dlamblin 2009-12-15T23:17:30Z 2009-12-15T23:17:30Z Why wouldn't you cut 0-2 and 5-6 instead? http://stackoverflow.com/questions/460356/substring-function-to-separate-two-strings-using-javascript/1161000#1161000 Comment by dlamblin on substring function to separate two strings using javascript dlamblin 2009-12-15T23:12:05Z 2009-12-15T23:12:05Z Considering that JavaScript usually already contains <code>substr</code> as a member function on strings, this idea scares me. http://stackoverflow.com/questions/1817790/how-to-i-avoid-storing-a-local-copy-of-predecessor-versions-with-subversion/1817806#1817806 Comment by dlamblin on How to I avoid storing a local copy of predecessor versions with subversion? dlamblin 2009-12-08T21:02:05Z 2009-12-08T21:02:05Z An acronym is an abbreviation: Acronym - An acronym is a word formed from the first (or first few) letters of a series of words that is used as an abbreviation to refer to that series of words. A few examples of acronyms are NYSE is the acronym for the New York Stock Exchange, DRIP is the acronym for Dividend ReInvestment Program, and QUIPS is the acronym for QUarterly Interest Preferred Securities. http://stackoverflow.com/questions/423080/aw-snap-google-chrome-error/1864204#1864204 Comment by dlamblin on Aw, Snap! (Google Chrome error) dlamblin 2009-12-08T20:49:26Z 2009-12-08T20:49:26Z Okay, well now I think you already know that it works fine under XP SP3 32bit. http://stackoverflow.com/questions/1864129/i-need-some-help-with-using-a-jar-file Comment by dlamblin on I need some help with using a JAR file. dlamblin 2009-12-08T02:18:24Z 2009-12-08T02:18:24Z If you figured it out, then can you explain? http://stackoverflow.com/questions/1863981/best-electronic-white-board-for-agile-scrum Comment by dlamblin on Best electronic white board for Agile/Scrum dlamblin 2009-12-08T02:13:12Z 2009-12-08T02:13:12Z I don't see how programming informs your electronic white board decision process. http://stackoverflow.com/questions/1823681/r-problems-with-newtons-method-for-finding-coefficient-and-hessian Comment by dlamblin on [R] Problems with Newton's Method for finding coefficient and Hessian dlamblin 2009-12-01T05:34:42Z 2009-12-01T05:34:42Z Maybe I don't get R but where are <code>yi</code> <code>exp</code> and <code>xi</code> defined? Is <code>^</code> an operator, or is <code>exp^()</code> a function? http://stackoverflow.com/questions/1824144/multiple-forms-vs-1-all-encompassing-form Comment by dlamblin on Multiple Forms vs 1 All-Encompassing Form? dlamblin 2009-12-01T05:29:37Z 2009-12-01T05:29:37Z I tend to the former but sometimes the latter is easier to write. http://stackoverflow.com/questions/1824145/audio-drivers-for-win-2003-server Comment by dlamblin on Audio Drivers for Win 2003 Server dlamblin 2009-12-01T05:28:16Z 2009-12-01T05:28:16Z kv, your question is not related to programming. It is potentially appropriate to superuser.com, but you'll have to use complete sentences and ask a full question with a question-mark. http://stackoverflow.com/questions/1279939/how-do-i-fix-symbol-not-found-isprefix-when-compiling-perls-dbdmysql Comment by dlamblin on How do I fix "Symbol not found: _is_prefix" when compiling Perl's DBD::mysql? dlamblin 2009-11-30T04:40:14Z 2009-11-30T04:40:14Z /System/Library/Perl/5.8.8/ http://stackoverflow.com/questions/1811818/running-ruby-something-rb-in-each-loop/1811827#1811827 Comment by dlamblin on running "ruby something.rb" in each loop dlamblin 2009-11-30T04:37:13Z 2009-11-30T04:37:13Z If I read correctly, what you're saying is that you cannot run it in a loop in JRuby because it runs out of memory eventually, while running it as a process does not run out of memory. That's frustrating, but it's certainly one way to force the memory used from each run to get purged. http://stackoverflow.com/questions/1817790/how-to-i-avoid-storing-a-local-copy-of-predecessor-versions-with-subversion/1817806#1817806 Comment by dlamblin on How to I avoid storing a local copy of predecessor versions with subversion? dlamblin 2009-11-30T04:15:34Z 2009-11-30T04:15:34Z AFAIK abbreviations are monotonous and uncreative. http://stackoverflow.com/questions/1817790/how-to-i-avoid-storing-a-local-copy-of-predecessor-versions-with-subversion/1817805#1817805 Comment by dlamblin on How to I avoid storing a local copy of predecessor versions with subversion? dlamblin 2009-11-30T04:14:40Z 2009-11-30T04:14:40Z IIRC when I write out what I mean to say instead of abbreviating it I get better at varying my language. http://stackoverflow.com/questions/1585683/postal-address-parsing-with-gmail-contacts Comment by dlamblin on postal address parsing with gmail contacts dlamblin 2009-11-26T20:10:21Z 2009-11-26T20:10:21Z Please edit your question to indicate which answers you got before the bounty if any. http://stackoverflow.com/questions/1805148/why-is-pythonruby-interpreted/1805155#1805155 Comment by dlamblin on Why is (python|ruby) interpreted? dlamblin 2009-11-26T20:06:27Z 2009-11-26T20:06:27Z Perl too... sigh, no body asks about Perl.