About 65 results
https://www.coryd.dev/posts/2023/building-a-now-page-using-nextjs-and-social-apis · 20 Feb 2023
With my personal site now sitting at Vercel and written in Next.js I decided to rework my now page by leveraging a variety of social APIs.
https://www.coryd.dev/posts/2023/adding-client-side-webmentions-to-my-nextjs-blog · 18 Feb 2023
The latest iteration of my website is built on Next.js, specifically Timothy Lin's wonderful Tailwind/Next.js starter blog..
https://www.coryd.dev/posts/2023/adding-client-side-rendered-webmentions-to-my-blog · 9 Feb 2023
My blog is currently hosted on weblog.lol which allows for a simple and configurable weblog managed in git with posts formatted in markdown.
https://mikebifulco.com/posts/publish-your-newsletter-with-convertkit-api-next-js · 23 Sep 2022
Use previous issues of your newsletter to attract new subscribers, using the ConvertKit API with your Next.js site.
https://mikebifulco.com/posts/publish-your-newsletter-with-convertkit-api-remix · 19 Sep 2022
Learn how to use the ConvertKit API to publish your newsletter to your Remix site.
https://rednafi.com/python/verify-webhook-origin/ · 18 Sep 2022
Secure webhooks by verifying payload authenticity using HMAC hash signatures with shared secrets, preventing man-in-the-middle attacks.
https://www.coryd.dev/posts/2022/simple-data-fetching-with-custom-react-hooks-and-swr · 23 May 2022
My site was scaffolded out using Timothy Lin's tailwind-nextjs-starter-blog project (which I highly recommend checking out). As part of the build out I wanted to display the books I'm currently reading and the song I most recently listened to, data availab...
https://rednafi.com/python/return-json-error-payload-in-drf/ · 13 Apr 2022
Fix Django REST Framework to return JSON error responses for 403, 404, 500 errors using middleware instead of default HTML pages.
https://rednafi.com/python/disallow-large-file-download/ · 23 Mar 2022
Prevent excessive file downloads in Python by streaming with HTTPX and limiting file size with chunk-based validation and memory-safe processing.
https://rednafi.com/python/declarative-payloads-with-typedict/ · 11 Mar 2022
Use Python TypedDict to declaratively define API payload structures. Get type safety for nested dictionaries and improve code maintainability.