Viewing profile — minznerjosh
minznerjosh
HN member- Joined
- Wed, Jul 10, 2013, 4:31 PM UTC
- HN karma
- 240
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About minznerjosh
No profile information was provided.
Recent public activity
-
comment
Comment #45210246
Yup. ChatGPT did not have proper MCP support until now. They only supported MCP for connecting Deep Research to additional data sources, and for that, your MCP server had to implem…
-
comment
Comment #44809952
I find it odd you included potatoes in the list of foods to give up. Boiled potatoes in particular rank at the very top of the satiety index[1], meaning they keep you full longer w…
-
comment
Comment #41072139
Are you planning to offer a search API at some point?
- story
-
comment
Comment #12887279
This hits the nail on the head. Abandoning time zones would only make sense if there were no more need for time translation. But you'd still need to translate for the sake of biolo…
-
comment
Comment #12759727
npmjs.com seems to be down as well.
-
comment
Comment #9211066
Just some feedback on the site: The images/iconography appear to be @1x resolution, making things appear blurry on my MacBook Pro with Retina Display. I'm guessing it would be the …
-
comment
Comment #7696767
I don't know if I'd say Scopes are controllers after the controllers are instantiated. Scopes are more of a view-model which are, yes, annotated by Controllers. However, if you put…
-
comment
Comment #7696759
.factory('$timeout', function($window) { var $timeout = $window.setTimeout; return $timeout; }) .service('$timeout', function($window) { // $timeout is a function, not an normal ob…
-
comment
Comment #7696749
That can be a matter of personal preference, so the best I can do is share my preference. I usually use the "service" method because most of my services are objects, and I have no …
-
comment
Comment #7696618
Really, Services and Factories are just a shorthand way of creating providers. .factory('foo', function() { var foo = {}; return foo; }); is the same as: .provider('foo', function(…
-
comment
Comment #7679289
As somebody who has built actual applications with both Ember and Angular, I think this article totally hits the nail right on the head. Though, in regards to the "Angular is backe…
-
comment
Comment #6155842
I think that one of the most important features of $timout is that it runs a digest cycle after the timeout completes. That's why bindings get updated when you modify data in a $ti…