Teaching a kid to code with Pygame Zero
A father shares his experience teaching his 6-year-old son to code using Pygame Zero, explaining why he chose a real programming language over Scratch.
A father shares his experience teaching his 6-year-old son to code using Pygame Zero, explaining why he chose a real programming language over Scratch.
Learn how to bundle a Python app and its dependencies into a single executable using Shiv, a tool from LinkedIn.
A tutorial on connecting Arduino to Raspberry Pi via serial communication to send sensor data over WiFi, using a greenhouse project example.
A programmer's personal about page highlighting his book, articles, work at Microsoft, and contact information.
This episode covers completing the user account deactivation flow, including logging out users and marking accounts as inactive in a Django app.
Analysis of PHP's limitations for machine learning, focusing on visualization, Jupyter support, and GPU capabilities compared to Python.
A technical guide on implementing Stripe subscription cancellation and account deactivation workflows in a Django SaaS application.
This article demonstrates using feature flags in a Django SaaS project to control the release of new features to users.
An introduction to Python testing using pytest, covering the basics and providing resources from a Python Frederick talk.
This article explains how to add feature flags to a Django SaaS project using the Django Waffle library to control user access to new features.
The article details a significant performance improvement in Ansible deployments by integrating the Mitogen tool, resulting in a 4.5x speed increase.
Explains why pow() is slower than ** in Python using the dis module and introduces the concept of constant folding.
A guide to deploying a Django web app using Ansible, including a detour on Continuous Integration and a major speed improvement.
A recap of the January live streams focused on building a SaaS product with Python and Django, covering integrations and admin tools.
The article details building an automated tool for processing and connecting data using Python and Django in a SaaS project.
Building a Python/Django tool to semi-automate backend manual tasks, making them faster to complete.
Finishing a third-party integration by adding email notifications for web scraping changes and planning an admin dashboard.
A developer adds a third-party integration (Prompt) to a SaaS project using Python and Django, involving model, view, and template changes.
A developer stream on integrating a third-party service into a SaaS app using Python and Django, focusing on database modeling.
Learn how Python's Abstract Syntax Trees (AST) work and how to use the `ast` module to analyze your code structure.