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