How to Build a Grammar Checker using spaCy and a Fine-Tuned LLM

Learn how to create a grammar checking tool by combining spaCy's NLP capabilities with a fine-tuned large language model (LLM) for accurate text correction.

Building Webapps as a Non-Designer

Build beautiful webapps without design skills using AI tools like Stitch, Uizard, and Claude. Practical workflow for Python/Go developers. Leverage design systems and AI assistance.

NDB GAE App on Localhost

Test Google Cloud NDB apps locally with Firestore emulator. Complete Flask setup with Makefile and Datastore mode configuration. Deploy to Cloud Run with confidence.

Reliable Python Proxy Server with Docker, systemd, and Log Management on GCE

A Dockerized Python proxy server with automated deployment, logging, and service management using Docker Compose and systemd on a Debian-based GCE instance.

The ultimate guide on using systemd to autostart scripts on the Raspberry Pi

Learn how to use systemd to autostart scripts on your Raspberry Pi, replacing the older crontab -e method for better reliability and flexibility.

Exposing a Dockerized Python App on a Raspberry Pi Using Tailscale Funnel

Learn how to securely expose a Dockerized Python app running on a Raspberry Pi using Tailscale Funnel, without port forwarding or dynamic DNS.

How To Set Up Playwright(Python) with Docker

Set up Playwright Python with Docker for browser automation. Complete Dockerfile, requirements, and scripts included. Isolated, reproducible testing environment ready in minutes.

Debug HTTP Requests in Python

Debug Python HTTP requests with httpdbg tool. Log and view requests/responses in browser at localhost:4909. Perfect for understanding network endpoints in new codebases.

NumPy Cheatsheet: Your Go-To Guide for Array Manipulation

Master NumPy array manipulation with this comprehensive cheatsheet. Code examples for creation, indexing, operations, and linear algebra. Quick reference for data scientists.

Simplifying Firestore Interactions with FSEntity Class

This article explores the FSEntity class, a Pythonic way to simplify interacting with and managing data in Google Firestore.

Making Variables Globally Available in Flask Templates

Learn how to make variables globally available in Flask templates using context processors for streamlined access across all template files.

Threads and long running tasks in Flask

Learn how to execute long-running tasks asynchronously in Flask using threads, ensuring responsiveness without blocking the main thread.

Difference between pool.imap and pool.imap_unordered in Python Multiprocessing

Exploring the nuances between Python's imap and imap_unordered functions in multiprocessing to help developers understand when to use each for optimal parallel processing.

Flask-Login Moving Parts

Understand Flask-Login authentication flow step-by-step. Learn how sessions, cookies, and user_loader work together. Clear explanations with sequence diagrams.

Flask Google Signin

Implement Google OAuth2 Sign-In in Flask without libraries. Complete REST HTTP endpoint examples with security best practices. Production-ready authentication code.

Building a multitenant backend with Python: A Guide to End-to-End Encryption.

Secure Multitenancy with Python: Building a Data Fortress with End-to-End Encryption

Store Password Securely in SQLite: Python, SQLAlchemy, and Bcrypt

Shielding User Passwords: Safeguarding SQLite Databases with Robust Encryption

Dockerizing flask with Postgres, Gunicorn and Nginx

How to dockerize a flask app with Postgres, Gunicorn and Nginx.