Results for python 4 · 1.464s

Sponsored
News for “python 4”
19 results • 1456 ms server time
Moozonian News
github.com• Aug 19, 2026• 1 min read
Show HN: Pack AI and scientific models as self-contained boxesHi! I've been working on an open-source project called Scrollcase. I started this cause moving Python or ML projects between machines is often painful. You need the right Python version, libraries, native builds, model files, and so on. So instead of making someone rebuild a Python environment on their machine, Scrollcase packages everything once, including Python, locked dependencies, code, and model files.Then they can verify it, unpack it, and run it. No Python install, no pip install, no Docker, and no dependency to mantain. You just define what goes inside, lock the dependencies, and build a portable, self-contained, verifiable package that's ready to run.Would love feedback from people who had to package Python, ML, or scientific environments for machines they don't control.
Advertisement
Moozonian News
marketa.behdad.org• Aug 18, 2026• 1 min read
Show HN: Loft Day – a wedding invitation turned point-and-click gameI wanted to make a fun, wholesome experience for our wedding website. Before long, it had turned into Loft Day: a point-and-click browser game with ten rooms, a party, a road trip, and a lot of smaller games, apps, and hidden interactions.Most of it lives in one 8.8 MB HTML file—roughly 138,000 lines of HTML, SVG, CSS, and JavaScript, with no framework or build step. It also runs a few real runtimes inside the game, including Python through Pyodide, a small Linux system through v86, and, of course, classic shooter games.I developed it over about a month and 5,700 commits, working with Claude and Codex while directing, testing, and repeatedly changing my mind.The source is here: https://github.com/behdad/marketa.behdad.orgI’d love to hear technical questions, browser reports, and optimization tips for a game of this scale and stack. But first and foremost: wander.
Moozonian News
github.com• Aug 17, 2026• 1 min read
Show HN: Openleetcode – local LeetCode runner where tests live in the repoYou write a standard solution, just like on LeetCode, and run it through the CLI. It identifies the problem by ID or title, executes your code against local test cases, and shows the result.It currently supports around 1.4k problems and multiple languages, including Python, C++, Rust, Java, Go, TypeScript, Swift, and others.The project is still an MVP. System design, SQL, and concurrency problems are not supported yet, but support for more problem types is planned.Made in Haskell!
Moozonian News
news.ycombinator.com• Aug 17, 2026• 1 min read
Ask HN: What did you learn when you stopped following tutorials?When I was working with Python, I noticed something interesting. If we build a Python project using a YouTube tutorial, it seems straightforward. But when I sit down with my laptop and code editor, I usually discover what I actually don’t understand.We will not learn logic by copying someone else’s code. I learned logic by figuring things out myself.
Advertisement
Advertisement
Moozonian News
github.com• Aug 16, 2026• 1 min read
Show HN: Punyecs – A puny ECS library based on class attributes and queryingPyPI Python Version punyecs is a tiny Entity Component System (ECS) inspired by [tiny-ecs](https://github.com/bakpakin/tiny-ecs) for Python. punyecs operates directly on class attributes as opposed to creating components along with querying mechanisms for fine grain control over which objects are operated on by systems similar to how tiny-ecs works on Lua tables. Decouple what an object can do from what it inherits.
Sponsored