Viewing profile — iamstef
iamstef
HN member- Joined
- Thu, Aug 27, 2009, 6:06 PM UTC
- HN karma
- 166
- Public activity
- 75 items
- HN profile
- View on Hacker News ↗
About iamstef
No profile information was provided.
Recent public activity
-
comment
Comment #33875384
I immediately checked for EV and was stoked to see it!! I haven’t played that game in decades…so many good memories. SOL?
-
comment
Comment #31443241
Time to find a new gig. Starting fresh somewhere else with no reputation, no karma, and the potential for being the small fish again will pay dividends. At the very least, differen…
-
comment
Comment #25035780
Nice, this was super timely as I was literally building the same thing. And I had just reached the part where I was annoyed that all the submitted videos had different shapes and s…
-
comment
Comment #25027815
I would be interested in seeing your script if you don’t mind sharing
-
comment
Comment #20161638
Literally the worst
-
comment
Comment #18623870
history doesn't repeat itself but it does rhyme...
-
comment
Comment #14780724
I know atleast one of these companies (I can't speak for the rest) had a pre-existing bi-lateral patent agreement with Facebook which rendered the react patent clause irrelevant, a…
-
comment
Comment #12975045
don't forget travis-ci's web frontend: repo: https://github.com/travis-ci/travis-web site: https://ember-canary.travis-ci.org/emberjs/ember.js/builds/1... It even has a version tha…
-
comment
Comment #12674189
> At the same time though, when I used Chrome's built-in memory profiling I see a bunch of deopt-related strings, so maybe I'm way off base In my experience, these add up real quic…
-
comment
Comment #12665976
You may want to give the follow script a try: * https://gist.github.com/krisselden/d3ce3cbb37cc6035b0927fdbf... It flips some handy flags providing useful output, this output can q…
-
comment
Comment #12146444
and its easily swappable: https://github.com/switchfly/ember-cli-mocha (and fully integrates with the existing test harness, regardless of the test framework you choose.)
-
comment
Comment #11386096
Abstractions aim to hide complexity until one requires them. As a developer, one becomes productive when one realize when to put the blinders on, and when to take them off. As such…
-
comment
Comment #10906694
As someone who is: * OSS user (and signee of the Dear Github letter) * paid user * user of an enterprise installation of Github I can honestly say the problems I see in OSS land, a…
-
comment
Comment #10841168
> Handlebars (Ember's templating engine) Just a pedantic touchup, ember does not use Handlebars (it once, several years ago did) Now it uses something (Glimmer) which shares some s…
-
comment
Comment #10841003
First of all, let me share a wonderful (and performant) mobile app, written in ember. It uses ember-data to connect/normalize the iTunes api, and provide a slick fast mobile experi…
-
comment
Comment #10250314
Yes, by introducing (extremely handy) syntactic sugar ;)
-
comment
Comment #10250067
I agree, async/await is very nice. Though it is worth pointing out async/await is quite literally syntactic sugar on top of promises. Essentially adding language syntax for common …
-
comment
Comment #10163304
Very nice, good work!
-
comment
Comment #10163303
The DOM is slow meme confuses me. Yes, if one isn't careful, one can get into trouble. But the same is true for all platforms/frameworks/concepts/religions. As it turns out, the fa…
-
comment
Comment #10054685
Our friends at http://www.bustle.com/ , http://vine.co/ , and twitch.tv ( http://www.twitch.tv/directory/ ) ... (lots more) have demonstrated this to be acceptable for there needs.…
-
comment
Comment #10054629
and shrinking :) We have some fun related work planned to continue the shrink. One thing to note, often we must trade-off bytes for supporting older features. As those go away, we …
-
comment
Comment #10054586
TL;DR We will be following with a new CLI shortly shortly more details commented here: https://news.ycombinator.com/item?id=10054332
-
comment
Comment #10054332
one of the ember-cli maintainers here. CLI will be following closely with a relevant release. To ensure trying ember 2.0 is as smooth as possible. my apologies for any lag between …
-
comment
Comment #9836090
its not creating a promise that is the problem, its consuming. Async/await really is a nice sugar, check it out when you have a chance.
-
comment
Comment #9828173
The problem usually arises when the GC pressure introduced from the promises (often the intermediate promises) created by many active/concurrent tasks starts burning copious amount…