Kris Kowal

83
Reputation
17 views

Registered User

Name Kris Kowal
Member for 1 year
Seen 2 days ago
Website
Location Pasadena, CA
Age
Sep
12
answered Hidden Features of JavaScript?
Sep
12
comment Hidden Features of JavaScript?
For the very most general solution, one that can test whether an Object has its own property, even if it is named "hasOwnProperty", you have to go all the way out to: Object.prototype.hasOwnProperty.call(object, name);
Sep
5
awarded  Scholar
Sep
5
comment Implementing the “system” command in Java.
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() ? "msvcrt" : "c"); var csystem = clib.getFunction("system"); csystem.invoke(["echo Hello, World!"]); gist.github.com/181225
Sep
4
answered Javascript Regular Expression
Sep
4
awarded  Editor
Sep
4
revised Implementing the “system” command in Java.
Fixed markup on link.
Sep
2
awarded  Student
Sep
2
asked Implementing the “system” command in Java.
Jun
22
awarded  Supporter