Viewing profile — alunny
alunny
HN member- Joined
- Mon, Jun 01, 2009, 5:21 PM UTC
- HN karma
- 181
- Public activity
- 24 items
- HN profile
- View on Hacker News ↗
About alunny
No profile information was provided.
Recent public activity
-
comment
Comment #3630597
Agreed - I'd definitely like to see something like JSFiddle for PhoneGap. We're working on weinre right now - http://phonegap.github.com/weinre/ - and also recommend Aardowlf - htt…
-
comment
Comment #3630582
re only affecting emulators: see @pmuellr's reply below - the bug in question affects 2.2 devices also. Since we're a community-driven open source project, you can see the discussi…
-
comment
Comment #3630309
(disclaimer: I work for Adobe on a competing service (PhoneGap Build) and have worked with PhoneGap for years) This is a silly benchmark - there is absolutely no reason you would p…
-
comment
Comment #3180991
Node itself (the core js library) isn't strict mode compliant: it uses octal literals for filesystem interactions.
-
comment
Comment #2884148
As I understand it, the main objection to `__proto__` is that it's writable, and thus not atomic with object creation. This creates a bunch of headaches for implementors for perfor…
-
comment
Comment #2828659
For very short, "oh there's a syntax error I missed" commits, "commit --amend" is very useful, and quicker than "rebase -i".
-
comment
Comment #2419922
Interesting - looks like chart.googleapis.com works over HTTPS: https://chart.googleapis.com/chart?chs=150x150&cht=qr... but chart.apis.google.com (which Google formerly used) d…
-
comment
Comment #2419670
The Google charts API doesn't provide an SSL interface - if you use it on a page served over https, you'll get a mixed content warning. [EDIT] I was mistaken, see andrewjshults's r…
-
comment
Comment #2377404
The Underscore functions do exactly the same as Resig's in the simple case (when passed just an array of numbers). They're longer because they accept custom iterators for non-numer…
-
comment
Comment #1885172
Well yes, but if you have 20+ tabs open in a couple of windows, it's disruptive and time consuming to close and reopen all of them.
-
comment
Comment #1495359
releasing the source != pushing out over the air OS updates
-
comment
Comment #1469376
It's a sixty line JS file that's been online for less than a day. I don't think API stability is a major concern at this point.
-
comment
Comment #1462186
camelCase is the de facto standard for JavaScript - all of the DOM APIs and major libraries use it. edit: oh, you probably mean the language name. Again, JavaScript is the correct …
- story
-
comment
Comment #1427537
There are also Fab.js http://github.com/jed/fab (which hasn't seen any updates in a while, but I'm sure it's still being worked on), Pintura http://github.com/kriszyp/pintura and P…
-
comment
Comment #1301475
The core of Node has very few functions that perform I/O, but there's no reason you can't use I/O in your own programs (in the original link, the network stream is read and written…
- story
-
comment
Comment #1286425
I've believe it's because SVG support is still listed as experimental in WebKit; there are 258 SVG bugs listed on WebKit's Bugzilla: https://bugs.webkit.org/buglist.cgi?product=Web…
-
comment
Comment #1286360
No it's not - unlike iPhone, Android WebKit does not have SVG support.
-
comment
Comment #1279585
> "Are you that great?". No, apparently he's not. That's not really fair - there are plenty of very good motivations for writing (and reading) fiction other than immersion in a sus…
-
comment
Comment #1122067
it's because of type conversion - null has the same value as 0 (as in `(+ null)`), so it is a number
- story
- story
-
comment
Comment #858185
Regarding PhoneGap specifically, which the book seems geared toward, for a short period of time Apple believed, erroneously, that the iPhone PhoneGap code was exposing unapproved A…