Load previous page…
Fixing bugs. It's so amazing when you have users and they tell you what they want and need. 🙌
#channelsurfer
Add a warning if a featured listing will be paused and a button to keep it active
#jobboardsearch
discovered instant links on arc to automatically open the top result by pressing shift+enter
#saasmakers
See a job board moving back to featured after months since moved from paid to free listing
#jobboardsearch
figure out how to mock temporal activities in workflow tests in a clean way
#thecompaniesapi
#saasmakers
🛡️ Pro tip for building reliable Events APIs:
Network delays, retries & hiccups make duplicate events inevitable. (Double charges, repeated notifications, messed-up state - all bad.)
Fix it with idempotency_key:
✅ Clients send a unique key (UUID works great) with every event
✅ Your API stores processed keys in the DB (unique constraint).
✅ Seen before? Ignore & return success.
✅ New? Process & record it.
I just added full support for it in
#telesink.