Viewing profile — ehynds
ehynds
HN member- Joined
- Mon, Jan 31, 2011, 7:15 PM UTC
- HN karma
- 56
- Public activity
- 28 items
- HN profile
- View on Hacker News ↗
About ehynds
No profile information was provided.
Recent public activity
-
comment
Comment #45906444
Here in the northeast, electricity is expensive because we rely heavily on natural gas for power but lack sufficient pipeline capacity to bring in cheaper supply, all while nuclear…
- comment
-
comment
Comment #12801137
About $300/mo on an app that provides real-time train tracking for Boston's commuter rail. Thankfully for me the MBTA is a mess, so each system meltdown (which happens about once a…
-
comment
Comment #10677900
OP is saying that `let func = () => {};` creates a named function where func.name equals "func" and "func" appears as part of the stack trace. Your example is still an anonymous fu…
-
comment
Comment #10677650
Still though, in situations where I care about the stack trace, I don't see myself writing: let doStuffCallback = () => {}; doStuff(doStuffCallback); over: doStuff(function doStuff…
-
comment
Comment #10677311
That seems to do it. let func = () => {}; console.log(func.name); // func and in stack traces: let func = () => foo(); func() results in: Uncaught ReferenceError: foo is not define…
-
comment
Comment #7774789
I thought there should be a Broccoli plugin, and then I found this: https://github.com/sindresorhus/broccoli-uncss
-
comment
Comment #7449654
I would also like to know that this isn't going to share the results to my profile.
-
comment
Comment #6791369
and by disabling pinch zoom on mobile.
-
comment
Comment #4470589
Are they already open / matched by wildignore?
-
comment
Comment #4320443
Digging through the source reveals a konami easter egg. Unfortunately all it really does is break the page though.
-
comment
Comment #3603261
Where are you getting these numbers from?
-
comment
Comment #3603215
You pointed out a few best-practices, but it's a shame that this article is written in the context of jQuery, rather than recognizing that these "taxes" are true with every script …
-
comment
Comment #3603158
The same is true whether or not you use a document.ready statement; you're thinking of window.onready, which fires once all images have been downloaded.
-
comment
Comment #3603138
If all your scripts are before the closing , the DOM will be ready by the time they execute, and you can safely ditch your legacy ready wrappers.
-
comment
Comment #3471625
"fully ready to use in production", with absolutely no unit tests, and when the question comes up it's immediately dismissed: https://github.com/appMobi/jQ.Mobi/issues/2 Skip.
-
comment
Comment #3343577
And then your arrow keys are free to bind to something else useful, like moving between split windows, buffers, etc.
-
comment
Comment #3301812
Nothing pisses me off more than when a recruiter calls my work line to pitch their openings, which they seem to be doing more and more lately. For that reason I vote #3.
-
comment
Comment #3201237
No one else is upset about the HTML 2.0 doctype on the examples page? WHERE IS THE OUTRAGE? http://www.eclipse.org/Xtext/xtend/#templateexpression
-
comment
Comment #3139436
Everyone forgets about -o-animate :(
-
comment
Comment #3137757
http://playground.benbarnett.net/jquery-animate-enhanced/
-
comment
Comment #3038709
This isn't self-checkout, it's the scan-as-you-place-in-the-cart wand things you can use at Stop & Shop.
- comment
-
comment
Comment #3038687
A lot of Stop & Shops here in the Boston area have that too. Someone will randomly audit your shopping cart once every 10 trips so or to prevent theft, which is a hugh time-consumi…
- comment