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