User Jonathan Lonowski - Stack Overflowmost recent 30 from stackoverflow.com2010-03-18T07:54:43Zhttp://stackoverflow.com/feeds/user/15031http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/137006/php-redefine-class-methods-or-class/137028#1370282Answer by Jonathan Lonowski for Php redefine Class Methods OR ClassJonathan Lonowskihttp://stackoverflow.com/users/150312008-09-26T00:07:31Z2010-02-17T21:36:44Z<p>It's called <a href="http://en.wikipedia.org/wiki/Monkey_patch" rel="nofollow">monkey patching</a>. But, PHP doesn't have native support for it.</p>
<hr>
<p>Others have pointed out that <a href="http://docs.php.net/runkit" rel="nofollow">runkit</a> is available, which is described as the replacement for <a href="http://docs.php.net/manual/en/book.classkit.php" rel="nofollow">classkit</a>. My understanding of its description is that it uses sandboxing to enable monkey patching and redefinitions (including constants). Though, to do so, it requires all function and method bodies be defined in strings (not my cup of tea).</p>
<p>However, it's been deemed <a href="http://pecl.php.net/package/runkit" rel="nofollow">broken with PHP 5.2+</a> by its own maintainer(s) and has had less than 20 sporadic Subversion updates since the last release (~3.5 years ago), despite decent activity before then. The project's lead, <a href="http://pecl.php.net/user/pollita" rel="nofollow">Sara Golemon</a>, hasn't touched the project since October 2006.</p>
<hr>
<p>A few patch projects of runkit exist, adding support for PHP 5.2+. So far, I've found these on Github:</p>
<ul>
<li><a href="http://github.com/padraic/runkit" rel="nofollow">http://github.com/padraic/runkit</a>
<ul>
<li><a href="http://github.com/tricky/runkit" rel="nofollow">http://github.com/tricky/runkit</a> (also see the <code>intercept_callback</code> branch)</li>
</ul></li>
<li><a href="http://github.com/zenovich/runkit" rel="nofollow">http://github.com/zenovich/runkit</a></li>
</ul>
http://stackoverflow.com/questions/203739/why-does-instanceof-return-false-for-some-literals8Why does instanceof return false for some literals?Jonathan Lonowskihttp://stackoverflow.com/users/150312008-10-15T04:44:20Z2010-02-17T01:44:34Z
<pre><code>"foo" instanceof String //=> false
"foo" instanceof Object //=> false
true instanceof Boolean //=> false
true instanceof Object //=> false
false instanceof Boolean //=> false
false instanceof Object //=> 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 //=> true
{0:1} instanceof Object //=> 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 //=> false
/foo/ instanceof RegExp //=> true
</code></pre>
http://stackoverflow.com/questions/2267679/print-data-as-pdf-using-php/2267921#22679210Answer by Jonathan Lonowski for print data as pdf using phpJonathan Lonowskihttp://stackoverflow.com/users/150312010-02-15T18:02:08Z2010-02-15T18:02:08Z<p><code>Output(..., 'I')</code> should handle HTTP headers for you -- unless you're using PHP-CLI.</p>
<p><code>FDPF::Output</code> depends on <a href="http://php.net/php_sapi_name" rel="nofollow"><code>php_sapi_name</code></a> <strong>not</strong> returning <code>'cli'</code> when the destination is <code>'I'</code>. It still echoes the buffer, but the proper headers aren't specified.</p>
<p>If you're using FPDF 1.6, see lines 1010-1027, esp. 1014, of <code>fpdf.php</code>.</p>
http://stackoverflow.com/questions/2143221/having-issues-with-ie7-and-floated-elements-of-course/2143346#21433460Answer by Jonathan Lonowski for Having issues with IE7 and floated elements (of course)Jonathan Lonowskihttp://stackoverflow.com/users/150312010-01-26T22:58:22Z2010-01-26T22:58:22Z<p>I think it's just that the floating content is being considered too wide to fit -- so, it's <em>floating</em> it down to where it will.</p>
<p>Instead of <code>float</code>, you might try <code>position</code> with <code>left</code> and <code>right</code>, respectively:</p>
<pre><code>.content.wrapper {
position: relative; /* establish boundary for absolute positioning */
}
.sidebar.left {
position: absolute;
top: 0px;
left: 0px;
}
.sidebar.right {
position: absolute;
top: 0px;
right: 0px;
}
</code></pre>
http://stackoverflow.com/questions/373002/better-ruby-markdown-interpreter5Better ruby markdown interpreter?Jonathan Lonowskihttp://stackoverflow.com/users/150312008-12-16T22:26:09Z2009-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#17454900Answer by Jonathan Lonowski for Ruby: Convert encoded character to actual UTF-8 characterJonathan Lonowskihttp://stackoverflow.com/users/150312009-11-16T23:15:37Z2009-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> 255.chr
=> "\377"
irb(main):002:0> 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#17452961Answer by Jonathan Lonowski for having problem with this ajax module !Jonathan Lonowskihttp://stackoverflow.com/users/150312009-11-16T22:32:50Z2009-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) +
'&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#17098172Answer by Jonathan Lonowski for How do I access an '@attr' value in JSON with jQuery Jonathan Lonowskihttp://stackoverflow.com/users/150312009-11-10T17:42:16Z2009-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#16956471Answer by Jonathan Lonowski for How to pass a variable into regex in jQuery/JavascriptJonathan Lonowskihttp://stackoverflow.com/users/150312009-11-08T07:17:10Z2009-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#16761220Answer by Jonathan Lonowski for object expected error javascriptJonathan Lonowskihttp://stackoverflow.com/users/150312009-11-04T19:42:24Z2009-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><a href="javascript:void(0)" onclick="alert(typeof showElement);">?</a>
</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#16635641Answer by Jonathan Lonowski for Regex - Return First and Last NameJonathan Lonowskihttp://stackoverflow.com/users/150312009-11-02T20:42:15Z2009-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#16503852Answer by Jonathan Lonowski for problem with saving data like 12 ÷ 5Jonathan Lonowskihttp://stackoverflow.com/users/150312009-10-30T15:10:18Z2009-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('÷') => 'Ã' + '·'
utf8(0x00F7) => 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><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</code></pre>
http://stackoverflow.com/questions/1644831/jquery-syntax-error-in-safari/1644866#16448662Answer by Jonathan Lonowski for jQuery Syntax error in SafariJonathan Lonowskihttp://stackoverflow.com/users/150312009-10-29T16:16:50Z2009-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#16353951Answer by Jonathan Lonowski for JavaScript Regex to return the last digits and ASP.Net event Handler?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-10-28T05:48:41Z2009-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><asp:UpdatePanel /></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#15811220Answer by Jonathan Lonowski for using javascript to track another javascript script?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-10-17T01:10:56Z2009-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#15800132Answer by Jonathan Lonowski for Suppress rake in directory messageJonathan Lonowskihttp://stackoverflow.com/users/150312009-10-16T19:37:55Z2009-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-spreadsheet-excel-writer-sending-an-empty-file1PHP PEAR Spreadsheet_Excel_Writer sending an empty file.Jonathan Lonowskihttp://stackoverflow.com/users/150312008-10-13T21:07:16Z2009-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><?php
require_once 'Spreadsheet/Excel/Writer.php';
$workbook = new Spreadsheet_Excel_Writer();
$worksheet =& $workbook->addWorksheet();
$worksheet->write(0, 0, "Quarterly Profits for Dotcom.Com");
$workbook->send('test.xls');
$workbook->close();
?>
</code></pre>
<p>What I think I understand so far about it...<br />
<code>$workbook->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#15695093Answer by Jonathan Lonowski for javascript Isolating charactersJonathan Lonowskihttp://stackoverflow.com/users/150312009-10-14T23:09:29Z2009-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#15366271Answer by Jonathan Lonowski for Module pattern vs. instance of an anonymous constructorJonathan Lonowskihttp://stackoverflow.com/users/150312009-10-08T09:16:23Z2009-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#14707194Answer by Jonathan Lonowski for Difference between using var and not using var in JavaScriptJonathan Lonowskihttp://stackoverflow.com/users/150312009-09-24T09:50:34Z2009-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#14681871Answer by Jonathan Lonowski for Groovy list.sort by first, second then third elementsJonathan Lonowskihttp://stackoverflow.com/users/150312009-09-23T19:48:43Z2009-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 -> a[2] <=> b[2] }
list = list.sort{ a,b -> a[1] <=> b[1] }
list = list.sort{ a,b -> a[0] <=> 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 -> (a[0] <=> b[0]) || (a[1] <=> b[1]) || (a[2] <=> 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 -> ((a[0] <=> b[0]) ?: (a[1] <=> b[1])) ?: (a[2] <=> b[2]) }
</code></pre>
http://stackoverflow.com/questions/1457041/basic-json-parse-question/1457209#14572091Answer by Jonathan Lonowski for Basic JSON.parse questionJonathan Lonowskihttp://stackoverflow.com/users/150312009-09-21T22:24:42Z2009-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]) //=> 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#14496082Answer by Jonathan Lonowski for GitHub noobian, should I install msysGit or Cygwin?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-09-19T21:39:03Z2009-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-clause4Oracle: What does `(+)` do in a WHERE clause?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-01-10T00:41:31Z2009-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#14137384Answer by Jonathan Lonowski for css and divs - parent's attribute for childrenJonathan Lonowskihttp://stackoverflow.com/users/150312009-09-11T23:36:38Z2009-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#13150373Answer by Jonathan Lonowski for basic xmlHttp questionJonathan Lonowskihttp://stackoverflow.com/users/150312009-08-22T03:21:20Z2009-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#13030090Answer by Jonathan Lonowski for How to pull the file name from a url using javascript/jquery?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-08-19T22:39:45Z2009-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#12431651Answer by Jonathan Lonowski for How do I make a collapsible menu in javascript?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-08-07T06:14:04Z2009-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/490141/is-it-possible-to-set-css-for-combined-classes0Is it possible to set CSS for combined classes?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-01-29T01:15:01Z2009-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><tr class="even highlight">
<!-- ... -->
</tr>
</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#11012032Answer by Jonathan Lonowski for Robust Javascript Exception HandlingJonathan Lonowskihttp://stackoverflow.com/users/150312009-07-09T00:09:02Z2009-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/1854083/get-a-date-6-years-from-now/1854096#1854096Comment by Jonathan Lonowski on get a date 6 years from now?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-12-06T02:12:51Z2009-12-06T02:12:51ZGood in theory, but broken in practice since it doesn't properly account for leap years. 1997-2003 needs to subtract a day since 2000 wasn't a leap year and 2003-2009 needs to add a day since both 2004 and 2008 were leap years. That even assumes you planned for at least one leap year within 6 years.http://stackoverflow.com/questions/1676029/object-expected-error-javascript/1676192#1676192Comment by Jonathan Lonowski on object expected error javascriptJonathan Lonowskihttp://stackoverflow.com/users/150312009-11-04T19:55:46Z2009-11-04T19:55:46ZThis 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-programmersComment by Jonathan Lonowski on Attitudes toward foreign programmersJonathan Lonowskihttp://stackoverflow.com/users/150312009-11-04T17:40:10Z2009-11-04T17:40:10ZIt'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#1615196Comment by Jonathan Lonowski on Totally basic Javascript reference questionJonathan Lonowskihttp://stackoverflow.com/users/150312009-10-23T18:41:27Z2009-10-23T18:41:27ZPrototyping 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#249719Comment by Jonathan Lonowski on Flatten a recordset in SQL Server?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-09-28T20:38:29Z2009-09-28T20:38:29ZWas holding out for a 2k solution. But, seems one isn't coming. ;)http://stackoverflow.com/questions/1457041/basic-json-parse-question/1457059#1457059Comment by Jonathan Lonowski on Basic JSON.parse questionJonathan Lonowskihttp://stackoverflow.com/users/150312009-09-21T22:11:24Z2009-09-21T22:11:24Z@nickf: Look beyond the array to the objects within. ;)
<code>alert(json.param1)</code> should be <code>"[object],[object]"</code>http://stackoverflow.com/questions/1457041/basic-json-parse-question/1457072#1457072Comment by Jonathan Lonowski on Basic JSON.parse questionJonathan Lonowskihttp://stackoverflow.com/users/150312009-09-21T22:03:53Z2009-09-21T22:03:53ZThe array is probably fine, but it seems the objects within are being parsed as strings: (abbr.) <code>["{\"ID\":17}","{\"ID\":64}"]</code> Thus, seeing <code>{"ID":17},{"ID":64}</code> when alerted.http://stackoverflow.com/questions/1457041/basic-json-parse-questionComment by Jonathan Lonowski on Basic JSON.parse questionJonathan Lonowskihttp://stackoverflow.com/users/150312009-09-21T21:47:36Z2009-09-21T21:47:36ZYou 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#1407302Comment by Jonathan Lonowski on python database / sql programming - where to startJonathan Lonowskihttp://stackoverflow.com/users/150312009-09-10T21:00:56Z2009-09-10T21:00:56ZConsidering 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#1240882Comment by Jonathan Lonowski on Is it possible to decrypt md5 hashes?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-08-06T19:46:17Z2009-08-06T19:46:17ZBy 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-paragraphComment by Jonathan Lonowski on Parse <br> to plain text new paragraphJonathan Lonowskihttp://stackoverflow.com/users/150312009-06-25T00:06:05Z2009-06-25T00:06:05ZIf 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-sometimesComment by Jonathan Lonowski on Being redirected to the wrong place - sometimes...Jonathan Lonowskihttp://stackoverflow.com/users/150312009-06-24T23:03:24Z2009-06-24T23:03:24ZI 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#734563Comment by Jonathan Lonowski on Is it possible to hide or scramble/obfuscate the javascript code of a webpage?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-04-09T15:00:44Z2009-04-09T15:00:44Z@Chris -- There are also "Beautifiers" 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#660794Comment by Jonathan Lonowski on Javascript array conversionsJonathan Lonowskihttp://stackoverflow.com/users/150312009-03-19T02:04:10Z2009-03-19T02:04:10ZMiddle-man = homework? Quite the assumption. And the "warn the masses" repeated comment is excessive, man.http://stackoverflow.com/questions/657442/fun-whats-your-favourite-programming-snackComment by Jonathan Lonowski on Fun: What's your favourite programming snack?Jonathan Lonowskihttp://stackoverflow.com/users/150312009-03-18T09:01:00Z2009-03-18T09:01:00ZThis should probably be Community Wiki.