Seapie – a Python debugger where breakpoints drop into a REPL
https://github.com/hirsimaki-markus/seapie
https://github.com/hirsimaki-markus/seapie
GitHub
GitHub - hirsimaki-markus/seapie: A breakpoint should just mean >>>
A breakpoint should just mean >>>. Contribute to hirsimaki-markus/seapie development by creating an account on GitHub.
pyPFC: An open-source Python package for phase field crystal simulations
A Python framework for setting up, running and analyzing 3D Phase Field Crystal (PFC) simulations.
https://github.com/HHallb/pyPFC
A Python framework for setting up, running and analyzing 3D Phase Field Crystal (PFC) simulations.
https://github.com/HHallb/pyPFC
GitHub
GitHub - HHallb/pyPFC: pyPFC: An Open-Source Python Package for Phase Field Crystal Simulations
pyPFC: An Open-Source Python Package for Phase Field Crystal Simulations - HHallb/pyPFC
How I Used Claude to Build a Transcription Bot that Learns From Its Mistakes
John Voorhees describes building a transcription pipeline that combines deterministic Python scripts for initial cleanup with Claude's "fuzzy" reasoning to catch obscure phonetic errors. The system uses a feedback loop where Claude identifies misspellings like "goti" for "GOTY" and automatically updates a persistent dictionary to ensure the bot becomes more accurate with every episode.
https://www.macstories.net/stories/how-i-used-claude-to-build-a-transcription-bot-that-learns-from-its-mistakes
John Voorhees describes building a transcription pipeline that combines deterministic Python scripts for initial cleanup with Claude's "fuzzy" reasoning to catch obscure phonetic errors. The system uses a feedback loop where Claude identifies misspellings like "goti" for "GOTY" and automatically updates a persistent dictionary to ensure the bot becomes more accurate with every episode.
https://www.macstories.net/stories/how-i-used-claude-to-build-a-transcription-bot-that-learns-from-its-mistakes
www.macstories.net
How I Used Claude to Build a Transcription Bot that Learns From Its Mistakes
[Update: Due to the way parakeet-mlx handles transcript timeline synchronization, which can result in caption timing issues, this workflow has been reverted to use the Apple Speech framework. Otherwise, the workflow remains the same as described below.] When…
The Emperor Has No Clothes: How to Code Claude Code in 200 Lines of Code
Mihail Eric argues that the core functionality of complex AI coding tools like Claude Code or Cursor is not magic but rather simple agentic logic. He demonstrates that these systems can be replicated in about 200 lines of Python by focusing on the essential loop of reading files, editing code, and executing shell commands.
https://www.mihaileric.com/The-Emperor-Has-No-Clothes
Mihail Eric argues that the core functionality of complex AI coding tools like Claude Code or Cursor is not magic but rather simple agentic logic. He demonstrates that these systems can be replicated in about 200 lines of Python by focusing on the essential loop of reading files, editing code, and executing shell commands.
https://www.mihaileric.com/The-Emperor-Has-No-Clothes
Mihaileric
The Emperor Has No Clothes: How to Code Claude Code in 200 Lines of Code
The core of tools like Claude Code, Cursor, and Warp isn't magic. It's about 200 lines of straightforward Python. Let's build one from scratch.
BeatBoss
BeatBoss is a desktop music player built with Python and Flet.
https://github.com/TheVolecitor/BeatBoss
BeatBoss is a desktop music player built with Python and Flet.
https://github.com/TheVolecitor/BeatBoss
GitHub
GitHub - TheVolecitor/BeatBoss: Music Player based on DAB api
Music Player based on DAB api. Contribute to TheVolecitor/BeatBoss development by creating an account on GitHub.
Seaborn Crash Course - Data Visualization in Python
This video today is a crash course on Seaborn, a data visualization library for Python built on top of Matplotlib. It makes it super simple to create statistical graphs of datasets.<br>
https://www.youtube.com/watch?v=rLVCSmtoA7U
This video today is a crash course on Seaborn, a data visualization library for Python built on top of Matplotlib. It makes it super simple to create statistical graphs of datasets.<br>
https://www.youtube.com/watch?v=rLVCSmtoA7U
YouTube
Seaborn Crash Course - Data Visualization in Python
This video today is a crash course on Seaborn, a data visualization library for Python built on top of Matplotlib. It makes it super simple to create statistical graphs of datasets.
Seaborn Docs: https://seaborn.pydata.org/api.html
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚…
Seaborn Docs: https://seaborn.pydata.org/api.html
◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚…
ComposioHQ / awesome-claude-skills
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
https://github.com/ComposioHQ/awesome-claude-skills
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
https://github.com/ComposioHQ/awesome-claude-skills
GitHub
GitHub - ComposioHQ/awesome-claude-skills: A curated list of awesome Claude Skills, resources, and tools for customizing Claude…
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows - ComposioHQ/awesome-claude-skills
Engram
Conditional Memory via Scalable Lookup: A New Axis of Sparsity for Large Language Models.
https://github.com/deepseek-ai/Engram
Conditional Memory via Scalable Lookup: A New Axis of Sparsity for Large Language Models.
https://github.com/deepseek-ai/Engram
GitHub
GitHub - deepseek-ai/Engram: Conditional Memory via Scalable Lookup: A New Axis of Sparsity for Large Language Models
Conditional Memory via Scalable Lookup: A New Axis of Sparsity for Large Language Models - deepseek-ai/Engram
The Right Way to Use AI for Writing Maintainable Code
Arjan argues that long-term code maintainability with AI requires developers to act as high-level architects, constantly refining design patterns and decoupling responsibilities rather than accepting the first "working" output. The video demonstrates this iterative process by showing a real interaction with ChatGPT, where he systematically guides the AI to replace messy if-statements wit...
https://www.youtube.com/watch?v=8Pi6vGRlp1c
Arjan argues that long-term code maintainability with AI requires developers to act as high-level architects, constantly refining design patterns and decoupling responsibilities rather than accepting the first "working" output. The video demonstrates this iterative process by showing a real interaction with ChatGPT, where he systematically guides the AI to replace messy if-statements wit...
https://www.youtube.com/watch?v=8Pi6vGRlp1c
YouTube
The Right Way to Use AI for Writing Maintainable Code
🧱 Build software that lasts. Join the Software Design Mastery waiting list → https://arjan.codes/mastery.
AI can write code, but without solid software design, it quickly turns into an unmaintainable mess. In this video, I show why prompting alone isn’t…
AI can write code, but without solid software design, it quickly turns into an unmaintainable mess. In this video, I show why prompting alone isn’t…
FastAPI Tutorials
In this series, we'll be learning how to build a full-featured web application from the ground up using the FastAPI framework in Python. We'll build both a JSON API for programmatic access and HTML pages for users to browse in the browser. Throughout the series, we'll set up a database with SQLAlchemy, create Pydantic models for data validation, and implement complete CRUD operations. We...
https://www.youtube.com/playlist?list=PL-osiE80TeTsak-c-QsVeg0YYG_0TeyXI
In this series, we'll be learning how to build a full-featured web application from the ground up using the FastAPI framework in Python. We'll build both a JSON API for programmatic access and HTML pages for users to browse in the browser. Throughout the series, we'll set up a database with SQLAlchemy, create Pydantic models for data validation, and implement complete CRUD operations. We...
https://www.youtube.com/playlist?list=PL-osiE80TeTsak-c-QsVeg0YYG_0TeyXI
A field guide to sandboxes for AI
Luis Cardoso breaks down the technical differences between containers, microVMs, gVisor, and WebAssembly to help developers choose the right isolation boundary for running untrusted AI agents. He emphasizes that a secure sandbox requires a clear distinction between the isolation boundary, the access policy, and the lifecycle management of the environment to prevent malicious code from co...
https://www.luiscardoso.dev/blog/sandboxes-for-ai
Luis Cardoso breaks down the technical differences between containers, microVMs, gVisor, and WebAssembly to help developers choose the right isolation boundary for running untrusted AI agents. He emphasizes that a secure sandbox requires a clear distinction between the isolation boundary, the access policy, and the lifecycle management of the environment to prevent malicious code from co...
https://www.luiscardoso.dev/blog/sandboxes-for-ai
GrantFlow.AI
GrantFlow.ai is a platform for creating grant applications using ML and AI.
https://github.com/grantflow-ai/grantflow
GrantFlow.ai is a platform for creating grant applications using ML and AI.
https://github.com/grantflow-ai/grantflow
GitHub
GitHub - grantflow-ai/grantflow: GrantFlow.ai is a platform for creating grant applications using ML and AI
GrantFlow.ai is a platform for creating grant applications using ML and AI - grantflow-ai/grantflow