Finally it looks like Push API will be added to Safari in iOS 15.4?engagespot.co3 ポイント·投稿者 lowcoderev·4 年前·3 コメント
Ask HN: I'm building a low-code that builds an express app using drag and drop1 ポイント·投稿者 lowcoderev·5 年前·0 コメント
lowcoderev·3 年前·議論Is that a feature specific to Rust? Can you please share any references to their official docs citing this?
lowcoderev·4 年前·議論I think no considerable improvements have been made by researchers in this area even after all these years. It's surprising that we still can't understand death.
lowcoderev·4 年前·議論1. Make the API well documented. Make it clear how to authenticate, request/response format, along with examples.2. Repeat (1)3. Make endpoints self explanatory. For example -GET /users - To list all usersPOST /users - To create a userPUT /users/:userId - To update a user profilePATCH /users/:userId - To patch a user profile (Great if you can support JSONPatch syntax)Never add unnecessary verbs in the route like /users/create which can easily be represented by the HTTP Request Method.Just my few cents