Logo

Blog

Browse by topic instead

  1. Understanding Python Decorators thanks to Django - 14 Oct, 2024 Master Python decorators by dissecting ones provided by Django
  2. A script to "Modernize" your Linux CLI - 13 Oct, 2024 Use this script to install modern CLI tools for Linux
  3. I moved my blog from Ghost to Astro - 12 Oct, 2024 Learn about the benefits of publishing with Astro instead of Ghost
  4. Show Django flash messages as toasts with Htmx - 11 Oct, 2024 Learn how to display Django messages as user friendly toasts with Htmx
  5. Build an intuitive CLI app with Python argparse - 10 Oct, 2024 Learn how to use Python's built-in argparse library to build an intuitive CLI app
  6. Forward SSH Agent Requests From WSL to Windows - 03 Oct, 2024 Learn how to use the built-in Windows ssh-agent from inside your WSL instance
  7. How to implement RESTful routing in Django - 19 Sep, 2024 Learn to leverage the REST archicture in a Django app.
  8. Generate DKIM key pairs in Python - 15 Sep, 2024 DKIM key pairs are simply RSA key pairs and you can easily generate them in Python.
  9. Robust Full-Stack Authentication with Django Allauth, Rest Framework, and React - 04 Sep, 2024 Learn how to integrate django-allauth with React for a powerful and easy authentication system.
  10. Using Django Allauth without Username Field - 01 Sep, 2024 Learn how to use Django Allauth without a username field in your User model.
  11. How to Remove Username from Django's Default User model - 23 Aug, 2024 Learn how to allow users to authenticate with your app without a username.
  12. Why CSRF token cookies don't need to be httpOnly - 20 Jul, 2024 CSRF token cookies are typically sent without httpOnly set to true. But is that a secure practice?
  13. Send Templated Emails in NodeJS - 22 Mar, 2024 Learn how to use NodeMailer, Handlebars, and juice to send emails effortlessly in NodeJS.
  14. Populate Custom User Attributes When Signing Up Using Django Allauth - 21 Mar, 2024 Learn how to set custom attributes to your User model when signing up users with Django Allauth.
  15. Track Hubspot Events in a React SPA - 20 Mar, 2024 Learn how to use Hubspot to track user activity when using client side routing in React.
  16. How to upload files to S3 using a Presigned Upload URL - 03 Mar, 2024 Learn how to upload files directly to S3 from a front-end client to avoid API Gateway time-out issues.
  17. Identify Individual Requests in ExpressJS - 24 Jan, 2024 Learn how to debug user errors more easily by tagging each request.
  18. How to Store Passwords Securely in NodeJS - 23 Jan, 2024 Learn how to use built-in tools in NodeJS to store user passwords securely.
  19. Verify Paddle Billing Webhook Signatures in Python - 11 Jan, 2024 Learn how to verify that webhooks hitting your back-end are from Paddle and not anyone else.
  20. Generate good looking PDFs with WeasyPrint and Jinja2 - 10 Jan, 2024 Learn how to easily generate beautiful PDFs in Python
  21. Encode base64 in JavaScript and Decode in Python: Part 2 - 15 Oct, 2023 Learn how to decode a Base64 string you encoded from JavaScript in Python
  22. Encode base64 in JavaScript and Decode in Python: Part 1 - 14 Oct, 2023 Learn how to send URL safe base64 encoded data to your Python API.
  23. Log to console with Sentry - 14 Oct, 2023 Learn how to see your Sentry logs in the dev tools console for a faster debugging experience.
  24. Use Python partial objects to write cleaner higher order functions - 14 Oct, 2023 Learn how to improve readability of your code when using callback functions thanks to partial objects.