Ask HN: How many posts/replies are being posted to HN every minute?4 points·by lowcoderev·4 năm trước·7 comments
Finally it looks like Push API will be added to Safari in iOS 15.4?engagespot.co3 points·by lowcoderev·4 năm trước·3 comments
Ask HN: Do you love low-code / no-code tools or are you against it?1 points·by lowcoderev·5 năm trước·0 comments
Ask HN: I'm building a low-code that builds an express app using drag and drop1 points·by lowcoderev·5 năm trước·0 comments
lowcoderev·3 năm trước·discussIs that a feature specific to Rust? Can you please share any references to their official docs citing this?
lowcoderev·4 năm trước·discussOk, so do you think that's the normal range? Pretty lower than I expected.
lowcoderev·4 năm trước·discussI 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 năm trước·discuss1. 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