
The Python Dev
@The_Python_DEV
Tweeting out the best Python posts from http://dev.to. Part of the @ThePracticalDev family ❤️
Anda mungkin suka
Meet EDITH, an offline Python voice assistant that handles speech, controls apps, takes selfies and runs without internet. Privacy first #DEVCommunity #Python dev.to/mohamed-riham/…
dev.to
🚀 I Built an Offline J.A.R.V.I.S. in Python (No Internet Needed!) DEMO VIDEO INSIDE!
No Internet. No Privacy Leaks. Just You and Your AI Assistant. Have you ever dreamed of building...
Simple AI assistant in Python with a JSON-based setup. Install pythonaibrain, map intents, and start a chatbot in minutes. #DEVCommunity #Python dev.to/divyanshu_sinh…
dev.to
🧠 Pythonaibrain
Make your first AI Assistant in Python with just an intents.json file. No complex setup. No advanced...
Race through custom themes, tweak difficulty and try to beat the bot! #DEVCommunity #Python dev.to/divakar_singh_…
dev.to
🧩 How I Built a Maze Game with PyGame (Using Amazon Q)
Hey Devs! 👋 I recently built a maze game using PyGame—and the coolest part? I used Amazon Q to...
uv is a single fast binary for Python • installs packages in seconds • auto creates & activates venv • handles lockfiles Simpler dev flow. { author: @iamfaham } #DEVCommunity #Python dev.to/iamfaham/say-h…
dev.to
Say Hello to 'uv': The Simplest & Fastest Python Package Manager
Lately, I’ve been experimenting with new Python tools that can save me time and make development feel...
🔐 Build a secure login endpoint in DRF 🔑 Validate credentials and authenticate users 🗝 Return tokens and follow best practices { author: @eberetwit } #DEVCommunity #Python dev.to/ebereplenty/ho…
dev.to
🔐 How to Build a Login Endpoint in Django Rest Framework (DRF)
If you're working with Django and APIs, authentication is a core feature you'll need to implement...
Built a Python arcade game in under an hour with Amazon Q CLI and PyGame - dodge traffic, rack up points, and see AI tooling simplify work. #DEVCommunity #Python dev.to/nandish_sinha_…
dev.to
Road Runner – A Python Game Built with Amazon Q CLI
Road Runner – A Python Game Built with Amazon Q CLI In just under an hour, I built a Python game...
Real-time Python CLI dashboard updating every second with CPU/RAM stats, task statuses & a clock. Built with rich & pyfiglet #DEVCommunity #Python dev.to/nish2005karsh/…
dev.to
🌀 Real-Time Python CLI Dashboard with rich and pyfiglet — Now It’s ALIVE ⚡
After building a static CLI dashboard in Python (which already looked 🔥), I thought: “What if it...
Python CLI dashboard built with rich, pyfiglet & psutil 🔹 System info panel 🔹 Task tracker 🔹 Clean, split layout #DEVCommunity #Python dev.to/nish2005karsh/…
dev.to
🚀 I Built a Static CLI Dashboard in Python Using rich and pyfiglet – Looks Nerdy, Works Smart 😎📊
Have you ever wanted your terminal to look like a sci-fi control panel? I did. So, I built a...
Introducing Codel, a Flask tool for searching code across GitHub, GitLab, Reddit, blogs and full repos without relying on AI #DEVCommunity #Python dev.to/coder_acco/i-c…
dev.to
I created an code search tool made in Flask called Codel.
What My Project Does Codel lets you search code not just from Github, Gitlab or Gitea, But from any...
Step through the TLS handshake in Go: from ClientHello to encrypted data transfer with clear code examples and practical tips #DEVCommunity #Python dev.to/leapcell/compl…
dev.to
Complete TLS Workflow in Golang Made Simple: Full Process Explained
Leapcell: The Best of Serverless Web Hosting Explanation of the TLS Handshake...
Build a live image search you can query in natural language. See how to index CLIP embeddings via CocoIndex and Qdrant for fast results. { author: @LinghuaJ } #DEVCommunity #Python dev.to/cocoindex/how-…
dev.to
How to build image search with semantic understanding
In this blog, we will build live image search and query it with natural language. For example, you...
SSH-based file sync with GOSync ✅ local encryption ✅ GUI & tray ✅ key or password auth ✅ no telemetry #DEVCommunity #Python dev.to/efeckc17/gosyn…
dev.to
GOSync – My open-source SSH file sync app with tray & encryption
Hey folks! 👋 I recently built GOSync, a lightweight desktop application that securely syncs files...
Automating Japanese study with custom NLP & LLM tools: 📌 Generate Anki-ready flashcards 📌 Auto-scrape & filter new sentences { author: @errietta } #DEVCommunity #Python dev.to/errietta/how-i…
dev.to
How I used NLP and LLM to supercharge my Japanese learning
Introduction I'm a software engineer and I have been studying Japanese for about a year...
GOSync makes SSH file sync easy with a desktop GUI, system tray support and local encryption. No cloud, no telemetry, just secure transfers #DEVCommunity #Python dev.to/efeckc17/gosyn…
dev.to
GOSync – My open-source SSH file sync app with tray & encryption
Hey folks! 👋 I recently built GOSync, a lightweight desktop application that securely syncs files...
Take your Python in security further with scripts that automate scans, flag suspicious activity, and improve code quality. { author: @AsherBaum997 } #DEVCommunity #Python dev.to/hexshift/advan…
dev.to
Advancing Python in Cybersecurity: Automation, Threat Detection, and Smarter Scripting
As your cybersecurity journey with Python continues, it is time to take your skills into more...
Explore a step-by-step guide to building a real-time, language-driven image search engine with multimodal AI and clear data insights { author: @LinghuaJ } #DEVCommunity #Python dev.to/badmonster0/in…
dev.to
In this walkthrough, we’ll show how to build a semantic image search engine powered by multimodal...
How to build index with text embeddings ...
Discover how to create a live semantic image search tool using multimodal AI, offering detailed data insights every step of the way. { author: @LinghuaJ } #DEVCommunity #Python dev.to/badmonster0/in…
dev.to
In this walkthrough, we’ll show how to build a semantic image search engine powered by multimodal...
How to build index with text embeddings ...
16 key Django questions answered for intermediate to advanced devs – from query tuning and async views to transactions and caching. #DEVCommunity #Python dev.to/leapcell/top-1…
dev.to
Top 16 Django Questions for Intermediate to Advanced Developers
Leapcell: The Best of Serverless Web Hosting 16 Common Advanced Django Questions When...
Build an AI code generator that crafts test cases, writes and debugs your solution, and iterates until every test passes. { author: @ZacharyHuang12 } #DEVCommunity #Python dev.to/zachary62/buil…
dev.to
Build Your Own AI Code Generator From Scratch — A PocketFlow Tutorial!
Ever wished you could just describe a coding problem and have an AI automatically generate...
Inside Go’s sync.WaitGroup source code. See how Add, Done and Wait coordinate goroutines and how its atomic counter and semaphore work. #DEVCommunity #Python dev.to/leapcell/how-d…
dev.to
How Does sync.WaitGroup Work? A Look into Goroutine Synchronization via Source Code
Leapcell: The Best of Serverless Web Hosting In - depth Analysis of sync.WaitGroup...
United States Tren
- 1. Yamamoto 45.8K posts
- 2. #DWTS 42.8K posts
- 3. Brewers 41.7K posts
- 4. Ohtani 14K posts
- 5. #TexasHockey 3,286 posts
- 6. #FlyTogether 2,522 posts
- 7. halsey 8,053 posts
- 8. Jared Butler N/A
- 9. Young Republicans 71.3K posts
- 10. Kreider 1,117 posts
- 11. #Dodgers 16.4K posts
- 12. #MakeOffer 10.6K posts
- 13. Domain For Sale 11K posts
- 14. Jarry N/A
- 15. Robert 108K posts
- 16. Haji Wright 1,175 posts
- 17. Roldan 2,671 posts
- 18. Will Richard 2,715 posts
- 19. Ayton 2,383 posts
- 20. Carrie Ann 4,953 posts
Anda mungkin suka
-
The React Dev
@The_React_Dev -
Real Python
@realpython -
TestDriven.io
@testdrivenio -
The JavaScript Dev
@TheJSDev -
Rana Hisham 👩🏻💻 ✍️🏻
@Ranah80381554 -
Matt Makai | Full Stack Python | Plushcap
@fullstackpython -
C.MOYO of Ondo AkOkO 💖
@ologunagbacaleb -
lacnic
@lacnic -
rami
@ramib_ch -
Bob Belderbos
@bbelderbos -
Pybites
@pybites -
PyLadies Ghana
@PyLadiesGhana -
Jake Kupperman
@jbkupperman -
Patrick Loeber
@patloeber -
Daniel🦋
@dannybanjo1
Something went wrong.
Something went wrong.