Viewing profile — bemurphy
bemurphy
HN member- Joined
- Wed, Jan 09, 2013, 4:37 PM UTC
- HN karma
- 12
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About bemurphy
No profile information was provided.
Recent public activity
-
comment
Comment #18723249
> The surgeon's office later told her that he belonged to two different medical groups. One was in Morgan's husband's health plan network, the other wasn't. I got this one, it was …
-
comment
Comment #17057040
I'm with you on option 4. I used to spot a movie I wanted to see, and then see it. Now I want to see a movie, and then pick the movie to see. I can't think of too many products I'v…
-
comment
Comment #13405840
I think I've used this one as well for about 7 or 8 years. I can recall an accidental untie exactly once. It's also fantastic because it makes for a much more symmetric, shapely kn…
-
comment
Comment #7627815
Two immediate I can think of: 1) You don't have to add new .dev hosts to /etc/hosts repeatedly. Once you're setup, all .dev is local 2) /etc/hosts doesn't support wildcards, so dns…
-
comment
Comment #6715870
Interesting question, I can point out a few interesting differences I know of. Take note, I have more experience with Couch and its ilk than MongoDB, but I know some of Mongo's fea…
-
comment
Comment #6644667
I think something like a Rumble favors having the kitchen sink. You wanna be 'go go go, install a gem for that don't mess around' and work on your domain code exclusively. Some peo…
-
comment
Comment #6331611
Yeah that freaked me out too. I'm not super familiar with mongoose either so at the time I couldn't figure out how to leave them out of serialization always . I could do it for one…
-
comment
Comment #6151222
Thanks for sharing this. I've been getting into express lately and this boilerplate is a little leaner for the reading. It also just informed me of the app.param api in express. I …
-
comment
Comment #5992784
Maybe benchmark it yourself? I think something is amiss, it should easily 'hello, world' at 2x higher rate than Rails. Poked around the setup a little a while back but nothing jump…
-
comment
Comment #5976421
It's really unclear, but I think it's a loose reference to an older hack that involves patching javascript's Array to steal data when parsing JSON. The references to 'old array' an…
-
comment
Comment #5362745
This is a bit tangent to your question, but, I think you can still run with ng-click if you deploy Content Security Policy, whereas onclicks will be banned.
-
comment
Comment #5296834
One big difference would be encapsulation. With mixins (sometimes called Concerns), you have a shared state between the module and the class including it. With a real class, you ha…
-
comment
Comment #5032354
Minor correction (mostly because, I think the code is kinda interesting), Sinatra does something close to this. It actually uses the __END__ tag for its inline templates, but then …