User Kris Kowal - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:37:20Z http://stackoverflow.com/feeds/user/42586 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1416391#1416391 0 Answer by Kris Kowal for Hidden Features of JavaScript? Kris Kowal 2009-09-12T23:05:35Z 2009-09-12T23:05:35Z <p>These are not <em>always</em> a good idea, but you can convert most things with terse expressions. The important point here is that not every value in JavaScript is an object, so these expressions will succeed where member access on non-objects like null and undefined will fail. Particularly, beware that typeof null == "object", but you can't null.toString(), or ("name" in null).</p> <p>Convert anything to a Number:</p> <pre><code>+anything Number(anything) </code></pre> <p>Convert anything to an unsigned four-byte integer:</p> <pre><code>anything &gt;&gt;&gt; 0 </code></pre> <p>Convert anything to a String:</p> <pre><code>'' + anything String(anything) </code></pre> <p>Convert anything to a Boolean:</p> <pre><code>!!anything Boolean(anything) </code></pre> <p>Also, using the type name without "new" behaves differently for String, Number, and Boolean, returning a primitive number, string, or boolean value, but with "new" these will returned "boxed" object types, which are nearly useless.</p> http://stackoverflow.com/questions/1381697/javascript-regular-expression/1381942#1381942 0 Answer by Kris Kowal for Javascript Regular Expression Kris Kowal 2009-09-04T23:25:04Z 2009-09-04T23:25:04Z <p>JavaScript's RegExp does not support negative look-behind assertions. Ideas that propose you match only /[^\]U/ will match strings like "_U", so that's not the answer. Your best bet is to use two regular expressions, the first to find all occurrences, then the second to filter the look-behind.</p> <pre><code>"\\U0000 U0000".match(/\\?U[0-9]{4}/g) .filter(function (match) { return !/^\\/.test(match) }) </code></pre> http://stackoverflow.com/questions/1369860/implementing-the-system-command-in-java 4 Implementing the "system" command in Java. Kris Kowal 2009-09-02T20:10:43Z 2009-09-04T21:43:10Z <p>I have need for a "system" function call, the same as those in Python, Perl, PHP, Ruby, &amp;c. It will be a component of a JavaScript standard library called Narwhal, when it's run on the Rhino JavaScript engine, which is in turn run on Java.</p> <p>The trouble is that Java's standard library appears to have abstracted away the ability to spawn a subprocess that shares the parent process's stdio. This means that you can't defer interactivity to the subprocess.</p> <p>My first crack at this was to implement Python's subprocess.popen. This uses three "pumper" threads to actively copy the parent process's stdio independently (to prevent deadlock). Unfortunately this is giving us two problems. First, the input does not close automatically when the sub-process voluntarily exits. Second, the streams to the child process do not buffer and flush properly.</p> <p>I'm looking for solutions that would make our require("os").system() command work as one would expect.</p> <p>The project is at <a href="http://narwhaljs.org" rel="nofollow">http://narwhaljs.org</a></p> <p>Relevant code:</p> <ul> <li><a href="http://github.com/tlrobinson/narwhal/blob/d147c160f11fdfb7f3c0763acf352b2b0e2713f7/lib/os.js#L10" rel="nofollow">http://github.com/tlrobinson/narwhal/blob/d147c160f11fdfb7f3c0763acf352b2b0e2713f7/lib/os.js#L10</a></li> <li><a href="http://github.com/tlrobinson/narwhal/blob/d147c160f11fdfb7f3c0763acf352b2b0e2713f7/engines/rhino/lib/os-engine.js#L37" rel="nofollow">http://github.com/tlrobinson/narwhal/blob/d147c160f11fdfb7f3c0763acf352b2b0e2713f7/engines/rhino/lib/os-engine.js#L37</a></li> </ul> http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/335132#335132 4 Answer by Kris Kowal for How would you design a very "Pythonic" UI framework? Kris Kowal 2008-12-02T19:30:23Z 2008-12-02T19:30:23Z <p>I was never satisfied with David Mertz's articles at IBM on metaclsses so I recently wrote my own <a href="http://askawizard.blogspot.com/2008/09/metaclasses-python-saga-part-4_30.html" rel="nofollow">metaclass article</a>. Enjoy.</p> http://stackoverflow.com/questions/61088/hidden-features-of-javascript/65124#65124 Comment by Kris Kowal on Hidden Features of JavaScript? Kris Kowal 2009-09-12T22:52:46Z 2009-09-12T22:52:46Z For the very most general solution, one that can test whether an Object has its own property, even if it is named &quot;hasOwnProperty&quot;, you have to go all the way out to: Object.prototype.hasOwnProperty.call(object, name); http://stackoverflow.com/questions/1369860/implementing-the-system-command-in-java/1370405#1370405 Comment by Kris Kowal on Implementing the "system" command in Java. Kris Kowal 2009-09-05T00:25:43Z 2009-09-05T00:25:43Z Adding the jni.jar, this bit of JavaScript did the trick. Thank you! var jna = Packages.com.sun.jna; var clib = jna.NativeLibrary.getInstance(jna.Platform.isWindows() ? &quot;msvcrt&quot; : &quot;c&quot;); var csystem = clib.getFunction(&quot;system&quot;); csystem.invoke([&quot;echo Hello, World!&quot;]); <a href="http://gist.github.com/181225" rel="nofollow">gist.github.com/181225</a>