Viewing profile — matttthompson
matttthompson
HN member- Joined
- Wed, Jul 29, 2009, 2:29 PM UTC
- HN karma
- 1,038
- Public activity
- 98 items
- HN profile
- View on Hacker News ↗
About matttthompson
No profile information was provided.
Recent public activity
-
comment
Comment #9263804
And to be clear—these are all existing sample apps for open source Objective-C projects. The creator of this site does not appear to have done anything but gathered these up into z…
-
comment
Comment #9263656
I don't understand why this is getting so much attention. This is nothing more than a couple zip files containing a few Objective-C open source projects that happen to have example…
-
comment
Comment #8815770
I have no illusions about the amount of effort and investment necessary to change technology stacks. Carbon was only officially deprecated in OS X 10.8. To speak of the death of te…
-
comment
Comment #8815743
I appreciate your feedback, but I think you're reading an entirely different argument than what is presented in the article. It's not that everything is going to be rewritten in Sw…
- story
-
comment
Comment #8370231
I don't really see much need for it. Others are welcome to create such an integration, but I probably won't do so myself.
-
comment
Comment #8369638
You make some good points, and I agree to caution against names that bear no semantic relationship with their purpose. My justification of Alamofire is that it reflects the history…
-
comment
Comment #8369626
> Was there any reason why you chose callbacks over a Promise-like pattern for the async responses? Deeply-nested networking callbacks are a code smell, and I find that promises of…
-
comment
Comment #8369601
Yes, that's correct.
-
comment
Comment #8369599
The short answer: Use the version of `request` that takes a `URLRequestConvertible`, and specify the header fields in that. The long answer: Custom headers on a per-request basis a…
-
comment
Comment #8369084
Creator of Alamofire here. Just pushed the 1.0.0 release. Happy to answer any questions you might have.
- story
-
comment
Comment #8164432
Author of the article here. Let me know if you have any questions or feedback.
- story
- story
- story
- comment
- story
-
comment
Comment #7745826
> ...ending up in an error block because of a malformed server response is a pain in the ass. Is it really an error if you get a 200 OK response but the body isn't valid JSON? Yes.…
-
comment
Comment #7745788
Nothing in AFNetworking forces a success/failure block. For request operations, `completionBlock` can be set directly. For session tasks, the parameter is a `completionHandler`.
-
comment
Comment #7745773
There's plenty of room for simplicity and abstraction, but this is not a particularly good one, if I'm going to be honest. I can't think of any situation in which I'd recommend thi…
-
comment
Comment #7745749
> If i want to generate url requests, i have to use a serializer class... No, you don't. There's nothing stopping you from creating `NSURLRequest` directly. > ...wouldn't it be bet…
-
comment
Comment #7743737
I'm all about seeing new ideas about how to approach networking architectures, but this one makes me worried for anyone who decides to adopt it. Networking is an inherently complex…
- story
- story