happyshadows | 11 years ago | on: Do you really know why you prefer REST over RPC?
happyshadows's comments
happyshadows | 11 years ago | on: A standard for building APIs in JSON
happyshadows | 11 years ago | on: Show HN: MagicEye.js – Generate Magic Eye in Your Browser
happyshadows | 11 years ago | on: Introducing the Internet.org App
happyshadows | 12 years ago | on: Rails – The Missing Parts
happyshadows | 12 years ago | on: Where did all the HTTP referrers go?
happyshadows | 13 years ago | on: HN front page, 16000 visitors in a day, how many actually read the article?
If I didn't know how to do that, I would probably use a scrollmap tool like CrazyEgg.
happyshadows | 13 years ago | on: HN front page, 16000 visitors in a day, how many actually read the article?
happyshadows | 13 years ago | on: Why founders shouldn't be the developers
It is much easier to capture user intent with POST /api/customer/1/change-address-due-to-move { "address_1": "...", "address_2": "...", ... }
than with: PUT /api/customer/1 { "address_1": "...", "address_2": "...", ... }
Also, GET /api/resource/action is nice place for a payload describing the expected inputs to the action. Link it all together with hypermedia and you really have something ;)
Believe others are coming around to this line of thought: ThoughtWorks included "REST without PUT" onto their technology radar earlier this year.