User Jonathan Lonowski - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:56:43Z http://stackoverflow.com/feeds/user/15031 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/373002/better-ruby-markdown-interpreter 2 Better ruby markdown interpreter? Jonathan Lonowski 2008-12-16T22:26:09Z 2009-11-23T15:15:30Z <p>I'm trying to find a markdown interpreter class/module that I can use in a rakefile.</p> <p>So far I've found <a href="http://maruku.rubyforge.org/" rel="nofollow">maruku</a>, but I'm a bit wary of beta releases.</p> <p>Has anyone had any issues with maruku? Or, do you know of a better alternative?</p> http://stackoverflow.com/questions/1745161/ruby-convert-encoded-character-to-actual-utf-8-character/1745490#1745490 0 Answer by Jonathan Lonowski for Ruby: Convert encoded character to actual UTF-8 character Jonathan Lonowski 2009-11-16T23:15:37Z 2009-11-16T23:15:37Z <p>Ruby (at least, 1.8.6) doesn't have full Unicode support. <a href="http://ruby-doc.org/core/classes/Integer.html#M001144" rel="nofollow"><code>Integer#chr</code></a> only supports ASCII characters and otherwise only up to <code>255</code> in octal notation (<code>'\377'</code>).</p> <p>To demonstrate:</p> <pre><code>irb(main):001:0&gt; 255.chr =&gt; "\377" irb(main):002:0&gt; 256.chr RangeError: 256 out of char range from (irb):2:in `chr' from (irb):2 </code></pre> <p>You might try upgrading to Ruby 1.9. The <a href="http://ruby-doc.org/ruby-1.9/classes/Integer.html#M000464" rel="nofollow"><code>chr</code></a> docs don't explicitly state ASCII, so support may have expanded -- though the examples stop at 255.</p> <p>Or, you might try investigating <a href="http://ruby-unicode.rubyforge.org/doc/" rel="nofollow">ruby-unicode</a>. I've never tried it myself, so I don't know how well it'll help.</p> <p>Otherwise, I don't think you can do quite what you want in Ruby, currently.</p> http://stackoverflow.com/questions/1744848/having-problem-with-this-ajax-module/1745296#1745296 1 Answer by Jonathan Lonowski for having problem with this ajax module ! Jonathan Lonowski 2009-11-16T22:32:50Z 2009-11-16T22:32:50Z <p>Double-check that no errors are occurring within <code>ajax_module</code>. If there are any, it will never get to <code>return false</code> and won't stop the <code>onsubmit</code>.</p> <p>If you have Firebug or a similar debugger available, set breakpoints within <code>ajax_module</code>. Otherwise, add a <code>try</code>/<code>catch</code> right inside <code>ajax_module</code>:</p> <pre><code>function ajax_module() { try { /* place what you already have here */ } catch (e) { alert(e); } } </code></pre> <p>You also commented that text inputs usually work. This may be due to newlines being allowed in textareas, which you aren't currently encoding.</p> <p>Whether that's the cause or not, it's probably a good idea to encode the values anyways.</p> <pre><code>xmlHttp.send('user=' + encodeURIComponent(document.form1.user1.value) + '&amp;text=' + encodeURIComponent(document.form1.text1.value)); </code></pre> <p>For more info, check out <a href="http://www.w3schools.com/jsref/jsref_encodeuricomponent.asp" rel="nofollow">http://www.w3schools.com/jsref/jsref_encodeuricomponent.asp</a>.</p> <p>An alternative would be <a href="http://www.w3schools.com/jsref/jsref%5Fescape.asp" rel="nofollow"><code>escape</code></a> -- though, note the character differences described on each page.</p> http://stackoverflow.com/questions/1709610/how-do-i-access-an-attr-value-in-json-with-jquery/1709817#1709817 2 Answer by Jonathan Lonowski for How do I access an '@attr' value in JSON with jQuery Jonathan Lonowski 2009-11-10T17:42:16Z 2009-11-10T17:48:44Z <p>You have quite a few formatting issues in your snippet. If these are the same in your actual JSON, you're going to have parsing and object-structure conflicts from what you're probably expecting.</p> <pre><code>{ /* no matching end */ "images": [ /* no matching end */ { "url":"http:\/\/www.last.fm\/music\/Undefined\/+images\/3040021", "format":"jpg", "sizes": { /* should this be an array instead? */ "size": { "#text":"http:...jpg", "name":"original", "width":"397", "height":"397" }, { /* missing key */ "#text":"http:...jpg", "name":"large", "width":"126", "height":"126" }, /* trailing comma can cause parsing issues */ ] /* no matching start */ }, "@attr": { "official":"yes" } } </code></pre> http://stackoverflow.com/questions/1695633/how-to-pass-a-variable-into-regex-in-jquery-javascript/1695647#1695647 1 Answer by Jonathan Lonowski for How to pass a variable into regex in jQuery/Javascript Jonathan Lonowski 2009-11-08T07:17:10Z 2009-11-08T07:17:10Z <p>Javascript doesn't support interpolation like Ruby -- you have to use the <code>RegExp</code> constructor:</p> <pre><code>var aString = "foobar"; var pattern = "bar"; var matches = aString.match(new RegExp(pattern)); </code></pre> http://stackoverflow.com/questions/1676029/object-expected-error-javascript/1676122#1676122 0 Answer by Jonathan Lonowski for object expected error javascript Jonathan Lonowski 2009-11-04T19:42:24Z 2009-11-04T19:52:07Z <p>I don't immediately see anything wrong in your snippet.</p> <p>It's possible that formatting elsewhere in your script has messed up the definition or scope of <code>showElement</code>. Try adding this link next to the others:</p> <pre><code>&lt;a href="javascript:void(0)" onclick="alert(typeof showElement);"&gt;?&lt;/a&gt; </code></pre> <p>It should alert <code>function</code> if everything up to that point is good (or, at least, <strong><em>not</em></strong> alert <code>undefined</code>).</p> http://stackoverflow.com/questions/1661466/regex-return-first-and-last-name/1663564#1663564 1 Answer by Jonathan Lonowski for Regex - Return First and Last Name Jonathan Lonowski 2009-11-02T20:42:15Z 2009-11-02T20:42:15Z <p>As is, you're requiring a last name -- which, of course, your first example doesn't have.</p> <p>Use clustered grouping, <code>(?:...)</code>, and 0-or-1 count, <code>?</code>, for the middle and last names as a whole to allow them to be optional:</p> <pre><code>'~\b(\p{L}+)\b (?: .+\b(\p{L}+)\b )?~ix' # x for spacing </code></pre> <p>This should allow the first name to be captured whether middle/last names are given or not.</p> <pre><code>$name = preg_replace('~\b(\p{L}+)\b(?:.+\b(\p{L}+)\b)?~i', '$1 $2', $name); </code></pre> http://stackoverflow.com/questions/1650236/problem-with-saving-data-like-12-5/1650385#1650385 2 Answer by Jonathan Lonowski for problem with saving data like 12 ÷ 5 Jonathan Lonowski 2009-10-30T15:10:18Z 2009-10-30T15:10:18Z <p>The <code>÷</code> is being UTF-8 encoded -- <a href="http://www.fileformat.info/info/unicode/char/00f7/" rel="nofollow">http://www.fileformat.info/info/unicode/char/00f7/</a></p> <pre><code>#pseudo utf8('÷') =&gt; 'Ã' + '·' utf8(0x00F7) =&gt; 0xC3, 0xB7 </code></pre> <p>You can use <a href="http://php.net/utf8%5Fdecode" rel="nofollow"><code>utf8_decode</code></a> (I'm guessing the encoding is from <code>$_POST</code>):</p> <pre><code>$topic = mysql_escape_string(utf8_decode($_POST['topic'])); </code></pre> <p>Be sure that your database/tables have <a href="http://dev.mysql.com/doc/refman/5.0/en/charset-unicode.html" rel="nofollow">Unicode/UTF-8 support</a>.</p> <p>Alternatively, leave it encoded and just <code>echo</code> as is with UTF-8 encoding in the page (as Ates Goral suggested) so the browser will handle the decoding for you.</p> <pre><code>&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; </code></pre> http://stackoverflow.com/questions/1644831/jquery-syntax-error-in-safari/1644866#1644866 2 Answer by Jonathan Lonowski for jQuery Syntax error in Safari Jonathan Lonowski 2009-10-29T16:16:50Z 2009-10-29T16:16:50Z <p>You can't define properties/variables named after a reserved word -- such as <code>class</code>.</p> <p>This is why you find <code>Element.className</code> instead of <code>Element.class</code> in DOM.</p> <p>For a list of them, see <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Reserved_Words" rel="nofollow">https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Reserved_Words</a></p> http://stackoverflow.com/questions/1635280/javascript-regex-to-return-the-last-digits-and-asp-net-event-handler/1635395#1635395 1 Answer by Jonathan Lonowski for JavaScript Regex to return the last digits and ASP.Net event Handler? Jonathan Lonowski 2009-10-28T05:48:41Z 2009-10-28T05:48:41Z <p>You might try the following. It should following the formatting and group the last set of numbers.</p> <pre><code>/s0\\\\(?:[0-9]+\\\\)*([0-9]+)/ </code></pre> <p>So, something like:</p> <pre><code>function getFolderID(mystr) { // search string for last group of digits in the pattern var matches = mystr.match(/s0\\\\(?:[0-9]+\\\\)*([0-9]+)/); // if matches is null, replace with "defaults" matches ||= ["", ""]; // grab the first grouped match return matches[1]; } </code></pre> <p><hr /></p> <p>As for the ASP.NET event, you'll probably have to use Ajax -- such as by <code>&lt;asp:UpdatePanel /&gt;</code> or your choice of Ajax library (jQuery, Prototype, etc.).</p> <p>Without Ajax, JavaScript and ASP.NET will never execute at the same time.</p> http://stackoverflow.com/questions/1581059/using-javascript-to-track-another-javascript-script/1581122#1581122 0 Answer by Jonathan Lonowski for using javascript to track another javascript script? Jonathan Lonowski 2009-10-17T01:10:56Z 2009-10-17T01:10:56Z <p>The extent of detail you're expecting will be challenging for any solution to gather and report on without severely slowing down your scripts -- consider that, <strong><em>for every call, at least 1 other call would need to occur to gather this</em></strong>.</p> <p>You'd be better to pick a few key events (mouse clicks, etc.) and track only a few details (such as time) for them. If you're using ajax, keep JavaScript and the browser oblivious and just track this on server-side.</p> http://stackoverflow.com/questions/1579810/suppress-rake-in-directory-message/1580013#1580013 2 Answer by Jonathan Lonowski for Suppress rake in directory message Jonathan Lonowski 2009-10-16T19:37:55Z 2009-10-16T19:37:55Z <p>Doesn't look like it -- <a href="http://github.com/jimweirich/rake/blob/master/lib/rake/application.rb" rel="nofollow">Line 475 of <code>application.rb</code></a>:</p> <pre><code>puts "(in #{Dir.pwd})" unless options.silent </code></pre> <p>You could try requesting it on the <a href="http://rubyforge.org/mail/?group%5Fid=50" rel="nofollow">mailing list</a>.</p> http://stackoverflow.com/questions/199035/php-pear-spreadsheetexcelwriter-sending-an-empty-file 1 PHP PEAR Spreadsheet_Excel_Writer sending an empty file. Jonathan Lonowski 2008-10-13T21:07:16Z 2009-10-15T19:54:31Z <p>Has anyone used <a href="http://pear.php.net/package/Spreadsheet_Excel_Writer/" rel="nofollow">Pear: Spreadsheet_Excel_Writer</a>?</p> <p>The <a href="http://pear.php.net/manual/en/package.fileformats.spreadsheet-excel-writer.intro-format.php" rel="nofollow">Formatting Tutorial</a> lists a script similar to what I'm working with: (trimmed down)</p> <pre><code>&lt;?php require_once 'Spreadsheet/Excel/Writer.php'; $workbook = new Spreadsheet_Excel_Writer(); $worksheet =&amp; $workbook-&gt;addWorksheet(); $worksheet-&gt;write(0, 0, "Quarterly Profits for Dotcom.Com"); $workbook-&gt;send('test.xls'); $workbook-&gt;close(); ?&gt; </code></pre> <p>What I think I understand so far about it...<br /> <code>$workbook-&gt;send('test.xls');</code> sets the headers up for Excel file transfer. Now, no errors seem to come up, but the file downloaded is entirely empty (even in a hex editor).</p> <p>So...<br /> Where (in what class/method) is the <code>$workbook</code> binary supposed to be written? Or, am I misunderstanding it all?</p> <p><strong>Note</strong>: I honestly don't know what version of Spreadsheet_Excel_Writer is being used; the sources don't include such useful information.<br /> I can tell you the copyright is <strong><em>2002-2003</em></strong>; so, anywhere from version 0.1 to 0.6.</p> <p>[<strong>Edit</strong>] Sorry, thought I'd mentioned this somewhere.. This is someone else's script that I've been assigned to fix.</p> http://stackoverflow.com/questions/1569488/javascript-isolating-characters/1569509#1569509 3 Answer by Jonathan Lonowski for javascript Isolating characters Jonathan Lonowski 2009-10-14T23:09:29Z 2009-10-14T23:09:29Z <p>You might have an easier time with <code>[^...]</code> to grab everything but and remove it:</p> <pre><code>str.replace(/[^ab]+/g, ''); </code></pre> http://stackoverflow.com/questions/1536127/module-pattern-vs-instance-of-an-anonymous-constructor/1536627#1536627 1 Answer by Jonathan Lonowski for Module pattern vs. instance of an anonymous constructor Jonathan Lonowski 2009-10-08T09:16:23Z 2009-10-08T09:16:23Z <p>More-or-less, they give you the same result. It's just a matter of which path you want to take for it.</p> <p>The 1st may be more popular since it's simply the mixture of 2 already common patterns:</p> <pre><code>(function closure() { var foo = 'private'; /* ... */ }()) var singleton = { bar : 'public' }; </code></pre> <p>However, <code>prototype</code> chaining would be the benefit of the 2nd pattern since it has its own constructor.</p> <pre><code>var singleton = new function Singleton() { }; assert(singleton.constructor !== Object); singleton.constructor.prototype.foo = 'bar'; assert(singleton.foo === 'bar'); </code></pre> http://stackoverflow.com/questions/1470488/difference-between-using-var-and-not-using-var-in-javascript/1470719#1470719 4 Answer by Jonathan Lonowski for Difference between using var and not using var in JavaScript Jonathan Lonowski 2009-09-24T09:50:34Z 2009-09-24T09:50:34Z <p>Saying it's the difference between "<strong>local</strong> and <strong>global</strong>" isn't entirely accurate.</p> <p>It might be better to think of it as the difference between "<strong>local</strong> and <strong>nearest</strong>". The nearest can surely be global, but that won't always be the case.</p> <pre><code>/* global scope */ var local = true; var global = true; function outer() { /* local scope */ var local = true; var global = false; /* nearest scope = outer */ local = !global; function inner() { /* nearest scope = outer */ local = false; global = false; /* nearest scope = undefined */ /* defaults to defining a global */ public = global; } } </code></pre> http://stackoverflow.com/questions/1467641/groovy-list-sort-by-first-second-then-third-elements/1468187#1468187 1 Answer by Jonathan Lonowski for Groovy list.sort by first, second then third elements Jonathan Lonowski 2009-09-23T19:48:43Z 2009-09-23T23:29:27Z <p>You <em>should</em> just be able to iterate through the sorts in reverse precedence:</p> <pre><code>list = [[2, 0, 1], [1, 5, 2], [1, 0, 3]] list = list.sort{ a,b -&gt; a[2] &lt;=&gt; b[2] } list = list.sort{ a,b -&gt; a[1] &lt;=&gt; b[1] } list = list.sort{ a,b -&gt; a[0] &lt;=&gt; b[0] } assert list == [[1, 0, 3], [1, 5, 2], [2, 0, 1]] </code></pre> <p>It <em>should</em> establish sorting within the lower precedence and reorder it just enough for upper.</p> <p><hr /></p> <p><strong>Edit</strong> -- If Groovy supports it, a better option would actually be:</p> <pre><code>list.sort{ a,b -&gt; (a[0] &lt;=&gt; b[0]) || (a[1] &lt;=&gt; b[1]) || (a[2] &lt;=&gt; b[2]) } </code></pre> <p>In theory, it should return the result of the first comparison that doesn't match. This requires that <code>||</code> returns an operand rather than equating <code>true</code>/<code>false</code> from them.</p> <p>Potentially, <code>?:</code> might handle it if <code>||</code> can't:</p> <pre><code>list.sort{ a,b -&gt; ((a[0] &lt;=&gt; b[0]) ?: (a[1] &lt;=&gt; b[1])) ?: (a[2] &lt;=&gt; b[2]) } </code></pre> http://stackoverflow.com/questions/1457041/basic-json-parse-question/1457209#1457209 1 Answer by Jonathan Lonowski for Basic JSON.parse question Jonathan Lonowski 2009-09-21T22:24:42Z 2009-09-21T22:24:42Z <p>To compile and expand on all of the comments... ;)</p> <p><hr /></p> <p>Your first clue that something's wrong is your alert:</p> <pre><code>alert(json.param1) </code></pre> <p>Instead of getting:</p> <pre><code>{"ID":17,"Name":"swimming pools","ParentID":4,"Path":""}, {"ID":64,"Name":"driveways","ParentID":4,"Path":""} </code></pre> <p>You should be getting something similar to the following:</p> <pre><code>[object],[object] </code></pre> <p><hr /></p> <p>Try alerting the <code>typeof</code> array element, itself:</p> <pre><code>alert(typeof json.param1[0]) //=&gt; should say "object" </code></pre> <p>If you get anything besides <code>"object"</code>, either the JSON isn't formatted correctly or the parser is failing.</p> <p><hr /></p> <p>One good clue as to which is wrong is if the original JSON looks like this:</p> <pre><code>{"param1" : [ "{\"ID\":17,\"Name\":\"swimming pools\",\"ParentID\":4,\"Path\":\"\"}", "{\"ID\":64,\"Name\":\"driveways\",\"ParentID\":4,\"Path\":\"\"}" ]} </code></pre> <p>Then, it's probably the JSON that's broken. (Sorry ;)</p> <p>On the other hand, if your JSON looks like this:</p> <pre><code>{"param1" : [ {"ID":17,"Name":"swimming pools","ParentID":4,"Path":""}, {"ID":64,"Name":"driveways","ParentID":4,"Path":""} ]} </code></pre> <p>Then, it's probably the parser.</p> http://stackoverflow.com/questions/1449179/github-noobian-should-i-install-msysgit-or-cygwin/1449608#1449608 2 Answer by Jonathan Lonowski for GitHub noobian, should I install msysGit or Cygwin? Jonathan Lonowski 2009-09-19T21:39:03Z 2009-09-19T21:39:03Z <p><strong>Git Extensions requires msysGit</strong>. The "Complete" installation has msysGit and KDiff3 packed with it.</p> <p>As for the versus, the only major difference I know of is that msysGit doesn't support <code>git-daemon</code>, yet. Since you're using GitHub, this shouldn't affect you much.</p> http://stackoverflow.com/questions/430274/oracle-what-does-do-in-a-where-clause 4 Oracle: What does `(+)` do in a WHERE clause? Jonathan Lonowski 2009-01-10T00:41:31Z 2009-09-16T14:26:52Z <p>Found the following in an Oracle-based application that we're migrating <em>(generalized)</em>:</p> <pre><code>SELECT Table1.Category1, Table1.Category2, count(*) as Total, count(Tab2.Stat) AS Stat FROM Table1, Table2 WHERE (Table1.PrimaryKey = Table2.ForeignKey(+)) GROUP BY Table1.Category1, Table1.Category2 </code></pre> <p>What does <code>(+)</code> do in a WHERE clause? I've never seen it used like that before.</p> http://stackoverflow.com/questions/1413305/css-and-divs-parents-attribute-for-children/1413738#1413738 4 Answer by Jonathan Lonowski for css and divs - parent's attribute for children Jonathan Lonowski 2009-09-11T23:36:38Z 2009-09-11T23:44:32Z <p>Background color is usually treated as <strong><code>transparent</code></strong>, not <strong><code>inherit</code></strong>, by default. With <strong><code>inherit</code></strong>, the background image would be copied to each element and displaced by margins/paddings/etc (has a more obvious effect with background images).</p> <p>Normally, this wouldn't matter, since the parent would usually become large enough to contain all of the children (so they would show through the parent's background). But, since you're using <strong><code>float</code></strong> on all children, the actual size of <strong><code>#content</code></strong> is not actually the size of the child divs combined.</p> <p><strong>Floating content can exist outside the bounds of its parent.</strong></p> <p>Without any static content of its own, <strong><code>#content</code></strong> has a height of <strong>0</strong>, while <strong><code>content_left/right/middle</code></strong> actually exist below it (since they have <code>...</code> for content, their height defaults to <code>line-height</code>).</p> <p>To get a better view of what's happening, try adding a height to <strong><code>#content</code></strong> and background color to the children (or use "Inspect Element" and tag highlighting in Chrome or Firebug):</p> <pre><code>#content { background-color: #FFF; height: 5px; } #content_right(middle/left) { float: left; width: 500px; background: #ccc; } </code></pre> <p>But, yes, you need to specify the background color in the floating divs rather than their parent.</p> http://stackoverflow.com/questions/1314938/basic-xmlhttp-question/1315037#1315037 3 Answer by Jonathan Lonowski for basic xmlHttp question Jonathan Lonowski 2009-08-22T03:21:20Z 2009-08-22T03:21:20Z <p><strong><code>status == 0</code></strong> usually means it was aborted -- either by pressing <kbd>ESC</kbd> or by changing the current address.</p> <p>Or, since you're using a global <strong><code>xmlHttp</code></strong>, you may be calling <strong><code>open</code></strong> and/or <strong><code>send</code></strong> before the last request has had time to finish. Not entirely sure which, but one of them starts by calling <strong><code>abort</code></strong>.</p> http://stackoverflow.com/questions/1302306/how-to-pull-the-file-name-from-a-url-using-javascript-jquery/1303009#1303009 0 Answer by Jonathan Lonowski for How to pull the file name from a url using javascript/jquery? Jonathan Lonowski 2009-08-19T22:39:45Z 2009-08-19T22:39:45Z <p>For your examples, substring searching will probably be your best option.</p> <p>However, if your URIs are actually complex enough, you might try Steven Levithan's <a href="http://blog.stevenlevithan.com/archives/parseuri" rel="nofollow"><code>parseUri</code></a>:</p> <pre><code>parseUri(uri).file; </code></pre> <p>It has 2 modes and each has its share of quirks, so be sure to <a href="http://stevenlevithan.com/demo/parseuri/js/" rel="nofollow">check out the demo</a>.</p> http://stackoverflow.com/questions/1243114/how-do-i-make-a-collapsible-menu-in-javascript/1243165#1243165 1 Answer by Jonathan Lonowski for How do I make a collapsible menu in javascript? Jonathan Lonowski 2009-08-07T06:14:04Z 2009-08-07T06:14:04Z <p>Besides <a href="http://stackoverflow.com/questions/471597/is-jquery-always-the-answer">one of SO's running jokes</a> for an answer, what you're wanting is an <a href="http://www.google.com/search?q=javascript+accordion" rel="nofollow">accordion menu</a> (maybe not for the effects, but for the containment of the entire menu).</p> <p>Here's a library-less solution: <a href="http://www.switchonthecode.com/tutorials/javascript-and-css-tutorial-accordion-menus" rel="nofollow">Javascript And CSS Tutorial - Accordion Menus</a>.</p> <p>Or, an accordion-specific library/script: <a href="http://www.stickmanlabs.com/accordion/" rel="nofollow">http://www.stickmanlabs.com/accordion/</a></p> <p>Otherwise, if you're up for using a library and add-ons, there's plenty of options: <a href="http://tutorialblog.org/10-javascript-accordion-scripts/" rel="nofollow">10 Javascript Accordion Scripts</a>.</p> http://stackoverflow.com/questions/203739/why-does-instanceof-return-false-for-some-literals 4 Why does instanceof return false for some literals? Jonathan Lonowski 2008-10-15T04:44:20Z 2009-07-26T23:10:50Z <pre><code>"foo" instanceof String //=&gt; false "foo" instanceof Object //=&gt; false true instanceof Boolean //=&gt; false true instanceof Object //=&gt; false false instanceof Boolean //=&gt; false false instanceof Object //=&gt; false // the tests against Object really don't make sense </code></pre> <p>Array literals and Object literals match...</p> <pre><code>[0,1] instanceof Array //=&gt; true {0:1} instanceof Object //=&gt; true </code></pre> <p>Why don't all of them? Or, why don't <em>none</em> of them?<br /> And, what are they an instance of, then? <code>Nothing()</code>?</p> <p>It's the same in FF3, IE7, Opera, and Chrome. So, at least it's consistent. ;)</p> <p><hr /></p> <p>Missed a few. ;)</p> <pre><code>12.21 instanceof Number //=&gt; false /foo/ instanceof RegExp //=&gt; true </code></pre> http://stackoverflow.com/questions/490141/is-it-possible-to-set-css-for-combined-classes 0 Is it possible to set CSS for combined classes? Jonathan Lonowski 2009-01-29T01:15:01Z 2009-07-24T07:19:29Z <p>Say I have the following:</p> <pre><code>tr { background: #fff; } tr.even { background: #eee } tr.highlight { background: #fec; } </code></pre> <p>Is it possible to specify a 4th background (<code>#fea</code>) instead of having <code>highlight</code> simply overwrite <code>even</code>?</p> <pre><code>&lt;tr class="even highlight"&gt; &lt;!-- ... --&gt; &lt;/tr&gt; </code></pre> <p><hr /></p> <p>Once CSS3 is supported, <code>nth-child</code> might work. But, anything available in the meantime?</p> <pre><code>tr { ... } tr:nth-child(even) { ... } tr.highlight { ... } tr.highlight:nth-child(even) { ... } </code></pre> http://stackoverflow.com/questions/1101081/robust-javascript-exception-handling/1101203#1101203 2 Answer by Jonathan Lonowski for Robust Javascript Exception Handling Jonathan Lonowski 2009-07-09T00:09:02Z 2009-07-09T00:09:02Z <p>Rather than dealing with adding <em>N</em> try/catch blocks to <em>N</em> functions, it might be easier to use the <code>window.onerror</code> event.</p> <p>JavaScript Kit has <a href="http://www.javascriptkit.com/javatutors/error.shtml" rel="nofollow">a series of examples</a> you could use. Especially the <a href="http://www.javascriptkit.com/javatutors/error3.shtml" rel="nofollow">3rd</a>:</p> <pre><code>window.onerror = function (msg, url, line) { alert('Error message: ' + msg + '\nURL: ' + url + '\nLine Number: ' + line); return true; } </code></pre> <p>If you'd prefer a stack trace, you might check out <a href="http://eriwen.com/javascript/js-stack-trace/" rel="nofollow">Eric Wendelin's</a> (or <a href="http://pastie.org/253058" rel="nofollow">Luke Smith's update</a>). It's one of the few I know of that attempts to work cross-browser.</p> http://stackoverflow.com/questions/1082946/regex-for-all-letters-including-chinese-greek-etc/1083016#1083016 2 Answer by Jonathan Lonowski for RegEx for all letters (including Chinese, Greek, etc.) Jonathan Lonowski 2009-07-04T21:38:34Z 2009-07-04T21:49:11Z <p>Have you given <a href="http://xregexp.com/" rel="nofollow">XRegExp</a> and the <a href="http://xregexp.com/plugins/" rel="nofollow">Unicode plugin</a> a try/look?</p> <pre><code>&lt;script src="xregexp.js"&gt;&lt;/script&gt; &lt;script src="xregexp-unicode.js"&gt;&lt;/script&gt; &lt;script&gt; var unicodeWord = XRegExp("^\\p{L}+$"); alert(unicodeWord.test("Ниндзя")); // -&gt; true &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1052239/what-is-a-better-way-to-check-for-a-nil-object-before-calling-a-method-on-it/1052597#1052597 4 Answer by Jonathan Lonowski for What is a better way to check for a nil object before calling a method on it? Jonathan Lonowski 2009-06-27T10:44:40Z 2009-06-27T10:44:40Z <p>Personally, I would use the <strong><code>or</code></strong> operator/keyword:</p> <pre><code>(financial_document.assets or []).length </code></pre> <p>Either way, <code>.length</code> is called on an array, giving you <code>0</code> if <code>nil</code>.</p> http://stackoverflow.com/questions/1037540/what-is-the-correct-color-notation-in-xaml-555-or-555555/1037730#1037730 3 Answer by Jonathan Lonowski for What is the correct color notation in XAML: #555 or #555555? Jonathan Lonowski 2009-06-24T11:16:45Z 2009-06-24T11:16:45Z <p><strong>Neither notation is truly <em>more correct</em> than the other.</strong> It's largely just a matter of preference.</p> <p>The 3-digit format, or <strong><code>#rgb</code></strong>, is simply a short-hand format that expands to <strong><code>#rrggbb</code></strong>, giving you an option to leave out a few repeated characters.</p> <pre><code>#555 =&gt; #555555 #abc =&gt; #aabbcc </code></pre> <p>The exception is in specifics -- e.g., <strong><code>#e5a9bc</code></strong> can not be accurately described in or abbreviated to only 3 digits.</p> <p><hr /></p> <p>I would guess the common preference for not using 3-digit notation in XAML is be based in the fact that not all markup languages support them -- HTML.</p> http://stackoverflow.com/questions/1676029/object-expected-error-javascript/1676192#1676192 Comment by Jonathan Lonowski on object expected error javascript Jonathan Lonowski 2009-11-04T19:55:46Z 2009-11-04T19:55:46Z This might be better as an edit to your question -- this definitely isn't an answer on its own. http://stackoverflow.com/questions/1675342/attitudes-toward-foreign-programmers Comment by Jonathan Lonowski on Attitudes toward foreign programmers Jonathan Lonowski 2009-11-04T17:40:10Z 2009-11-04T17:40:10Z It's a valid question, but it's not on point with SO. It's both subjective and not directly related to programming. Because of this, it should be a <b>Community Wiki</b> discussion rather than a normal Q/A. http://stackoverflow.com/questions/1615134/totally-basic-javascript-reference-question/1615196#1615196 Comment by Jonathan Lonowski on Totally basic Javascript reference question Jonathan Lonowski 2009-10-23T18:41:27Z 2009-10-23T18:41:27Z Prototyping breaks this. Simply <code>Object.prototype.foo = function () {};</code> will create infinite recursion. http://stackoverflow.com/questions/249667/flatten-a-recordset-in-sql-server/249719#249719 Comment by Jonathan Lonowski on Flatten a recordset in SQL Server? Jonathan Lonowski 2009-09-28T20:38:29Z 2009-09-28T20:38:29Z Was holding out for a 2k solution. But, seems one isn't coming. ;) http://stackoverflow.com/questions/1457041/basic-json-parse-question/1457059#1457059 Comment by Jonathan Lonowski on Basic JSON.parse question Jonathan Lonowski 2009-09-21T22:11:24Z 2009-09-21T22:11:24Z @nickf: Look beyond the array to the objects within. ;) <code>alert(json.param1)</code> should be <code>&quot;[object],[object]&quot;</code> http://stackoverflow.com/questions/1457041/basic-json-parse-question/1457072#1457072 Comment by Jonathan Lonowski on Basic JSON.parse question Jonathan Lonowski 2009-09-21T22:03:53Z 2009-09-21T22:03:53Z The array is probably fine, but it seems the objects within are being parsed as strings: (abbr.) <code>[&quot;{\&quot;ID\&quot;:17}&quot;,&quot;{\&quot;ID\&quot;:64}&quot;]</code> Thus, seeing <code>{&quot;ID&quot;:17},{&quot;ID&quot;:64}</code> when alerted. http://stackoverflow.com/questions/1457041/basic-json-parse-question Comment by Jonathan Lonowski on Basic JSON.parse question Jonathan Lonowski 2009-09-21T21:47:36Z 2009-09-21T21:47:36Z You might want to post a segment or sample of the origin JSON rather than the alerted version -- Array.toString doesn't return valid JSON, which can be misleading. http://stackoverflow.com/questions/1407248/python-database-sql-programming-where-to-start/1407302#1407302 Comment by Jonathan Lonowski on python database / sql programming - where to start Jonathan Lonowski 2009-09-10T21:00:56Z 2009-09-10T21:00:56Z Considering the date of that post... <a href="http://docs.python.org/library/sqlite3.html" rel="nofollow">docs.python.org/library/sqlite3.html</a> pysqlite has been available as sqlite3 since Python 2.5. http://stackoverflow.com/questions/1240852/is-it-possible-to-decrypt-md5-hashes/1240882#1240882 Comment by Jonathan Lonowski on Is it possible to decrypt md5 hashes? Jonathan Lonowski 2009-08-06T19:46:17Z 2009-08-06T19:46:17Z By design, all same-length hashes suffer from collisions. It's unavoidable when restraining variable-length data. MD5 is considered obsolete for its rate of collisions, not for the fact of colliding. http://stackoverflow.com/questions/1041426/parse-br-to-plain-text-new-paragraph Comment by Jonathan Lonowski on Parse <br> to plain text new paragraph Jonathan Lonowski 2009-06-25T00:06:05Z 2009-06-25T00:06:05Z If you are in fact getting this from a Microsoft SQL tool, try using Ctrl+T for text output (vs. grid) -- that should display linebreaks properly. http://stackoverflow.com/questions/1041279/being-redirected-to-the-wrong-place-sometimes Comment by Jonathan Lonowski on Being redirected to the wrong place - sometimes... Jonathan Lonowski 2009-06-24T23:03:24Z 2009-06-24T23:03:24Z I have to ask -- Why are you using <code>setInterval</code> when you clear it every time? I would think <code>setTimeout</code> would be a better fit. http://stackoverflow.com/questions/734561/is-it-possible-to-hide-or-scramble-obfuscate-the-javascript-code-of-a-webpage/734563#734563 Comment by Jonathan Lonowski on Is it possible to hide or scramble/obfuscate the javascript code of a webpage? Jonathan Lonowski 2009-04-09T15:00:44Z 2009-04-09T15:00:44Z @Chris -- There are also &quot;Beautifiers&quot; available to counter that end. -- Try <a href="http://jsbeautifier.org/" rel="nofollow">jsbeautifier.org</a> http://stackoverflow.com/questions/660767/javascript-array-conversions/660794#660794 Comment by Jonathan Lonowski on Javascript array conversions Jonathan Lonowski 2009-03-19T02:04:10Z 2009-03-19T02:04:10Z Middle-man = homework? Quite the assumption. And the &quot;warn the masses&quot; repeated comment is excessive, man. http://stackoverflow.com/questions/657442/fun-whats-your-favourite-programming-snack Comment by Jonathan Lonowski on Fun: What's your favourite programming snack? Jonathan Lonowski 2009-03-18T09:01:00Z 2009-03-18T09:01:00Z This should probably be Community Wiki. http://stackoverflow.com/questions/601307/php-static-variables-across-multiple-php-pages/601313#601313 Comment by Jonathan Lonowski on PHP static variables across multiple .php pages Jonathan Lonowski 2009-03-02T05:14:20Z 2009-03-02T05:14:20Z Is <code>mailbox</code> a mistype?