Viewing profile — kenbellows
kenbellows
HN member- Joined
- Wed, Nov 28, 2012, 2:57 PM UTC
- HN karma
- 508
- Public activity
- 223 items
- HN profile
- View on Hacker News ↗
About kenbellows
Recent public activity
-
comment
Comment #19971927
Nowadays many applications, and especially most big-name business application suites (G Suite, Microsoft Office online, etc), are converting all their web applications to Progressi…
- story
-
comment
Comment #18753587
"Walled garden" in what sense?
-
comment
Comment #18652465
To be precise, similes are a type of analogy
-
comment
Comment #18513822
Which is ironic, given that English developed as basically French + German (or some old versions of those languages).
-
comment
Comment #18008399
Not sure what you mean, can you explain more? When I open my console, I get: > true == 1 -> true > false == 0 -> true Do you get something different? Or is the game claiming someth…
-
comment
Comment #18007674
In that sort of case I like to use explicit type casting, e.g. if (Number(myNum) === 2) {} For me this also extends to using `Boolean(val)` instead of `!!val`, etc.; though I under…
-
comment
Comment #17950700
Assuming you can include JS in the file, I imagine it would only run if the file was being parsed as HTML at the moment, not when parsed as a JPEG. That's the main point here: this…
-
comment
Comment #17947585
This won't answer the question directly, but these sorts of discussions always bring to my mind the famous quote from Jeremy Bentham: "The question is not, Can they reason?, nor Ca…
-
comment
Comment #17774026
Nah, I doubt it's actually a forgotten feature, it's probably got some known use cases. I bet it will stick around
-
comment
Comment #17759986
I mean, if you think about it, any time you run any installer, whether via brew install, apt-get install, or an .exe or .msi, you're effectively running someone else's unknown code…
-
comment
Comment #17737951
1/x as x -> 0 is a famously tricky expression because your statement that it "obviously increases exponentially as x approaches zero" is only true half the time, because it's only …
-
comment
Comment #17737675
The OP didn't invent the definition of fields as defined by additional and multiplication, with division defined as the Inverse of multiplication. Even the Wikipedia article on fie…
-
comment
Comment #17628466
Very good points. And thanks for the note about Object.getPrototypeOf(obj) and Object.setPrototypeOf(obj, newPrototype), I don't think I had ever actually looked that up!
-
comment
Comment #17626980
Ah, I see. The special thing here is the `new` keyword. When an object is created using `new myconstructor()`, the following steps occur (among others): 1. create a new empty objec…
-
comment
Comment #17626524
Can you rephrase? The "prototype chain" refers to the whole sequence of objects that link to each other by the `__proto__` property, e.g.: let vertebrate = {hasSpine: true}, mammal…
-
comment
Comment #17541916
I love the idea of an x-height axis as demonstrated in Dunbar. Different x-heights can be used for really interesting effects in different design contexts.
-
comment
Comment #15922080
I can't speak for the spec authors, but IMHO, tags should be deprecated and eventually removed when they are deemed to be useless, especially when their functions and/or semantics …
-
comment
Comment #14893737
or, if you prefer, every point is a 'knee' in the curve with a huge speedup afterward
-
comment
Comment #14891535
Hate to say it, but this is a rather naive perspective on human behavior and interaction. Like the GP said, the threat goes far beyond losing a job. For just one example, it is a v…
-
comment
Comment #14857797
I really hope not; I can't count the number of times I've lost a bunch of data because I hit backspace when I thought I was focused on a text field. Alt+Left is plenty convenient, …
-
comment
Comment #14762521
This is completely and totally true.
-
comment
Comment #14746395
Depends on the use application. For observing especially large objects[1][2], I agree, it would be very hard to use for anything beyond a quick demo. But on the other hand, I think…
-
comment
Comment #14704478
I don't agree with that description of what the brain does when you catch a ball, or with the principle it's proposing. I don't think the brain does any kind of calculations to fig…
-
comment
Comment #14688993
I think the article is arguing that while age may not be necessary for quality, it is sufficient . A young(er) programmer may or may not have these qualities, but in order to survi…