HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hpscript

no profile record

Submissions

Show HN: TinyOS – A minimalist RTOS for Cortex-M written in C

github.com
102 points·by hpscript·قبل 3 أشهر·43 comments

Show HN: Flux, A Python-like language in Rust to solve ML orchestration overhead

github.com
5 points·by hpscript·قبل 6 أشهر·3 comments

Show HN: Hybrid-Transpiler – A tool to convert C++ to Rust and Go

github.com
8 points·by hpscript·قبل 7 أشهر·3 comments

comments

hpscript
·قبل 3 أشهر·discuss
Hi HN,

I’ve been working on a tiny RTOS as a personal project to better understand how operating systems and schedulers work internally.

This project includes: - Basic task scheduler - Context switching - Simple memory management - Runs on (your target hardware or environment)

Motivation: I wanted to learn OS internals by building everything from scratch rather than relying on existing frameworks.

Challenges: - Implementing context switching correctly - Designing a minimal but usable scheduler - Keeping the codebase simple and readable

I’d really appreciate feedback, especially on: - Architecture design - Scheduler implementation - Code structure

GitHub: https://github.com/cmc-labo/tinyos-rtos
hpscript
·قبل 6 أشهر·discuss
Hi HN, I'm the creator of Flux.

I love Python's productivity for AI/ML, but I've often been frustrated by the "Python tax" — that overhead you pay when orchestrating many small operations or running tight loops outside of C++ kernels.

I started Flux to see if we could have a language that feels like Python (indentation-based, clean) but lives natively in the Rust ecosystem. Unlike Mojo, which is its own massive ecosystem, Flux aims to be a lean, Rust-powered alternative that might eventually allow seamless blending of high-level ML logic with Rust's safety.

It's very early (experimental!), but it already handles basic tensor ops and Python interop. I'd love to get feedback on the syntax and whether the "native orchestration" approach resonates with you.
hpscript
·قبل 7 أشهر·discuss
Thanks for the question! On real codebases: Currently, the transpiler works best on "clean" C++ (logic-heavy code, algorithms, and data structures). It can handle a significant portion of the syntax, but for large, complex codebases using heavy template metaprogramming or platform-specific APIs, there are still limitations.

Compilation & Manual Fixes: Does it compile out-of-the-box? For small to medium-sized snippets and standard logic, yes. However, for real-world projects, manual fixes are usually required, especially for:

- Rust's Borrow Checker: C++'s pointers don't always map 1:1 to Rust's ownership model. The transpiler generates code that is syntactically correct, but you might need to adjust lifetimes or use Arc/Mutex where C++ was more permissive.

- External Dependencies: Mapping C++ libraries to their Rust/Go equivalents still requires some manual configuration.

Goal isn't necessarily "100% automated migration" (which is the holy grail), but rather to automate the tedious 80-90% of the porting process, allowing developers to focus on fixing the architectural differences.

I have some examples in the repo, and looking for more "real-world" test cases to improve the conversion logic
hpscript
·قبل 7 أشهر·discuss
Hi HN, I'm building a transpiler specifically focused on migrating C++ to Rust and Go.

Modernizing legacy C++ codebases is a huge challenge. While there are some tools for C++ to Rust (like c2rust), I wanted to create a more flexible approach that handles both memory-safe (Rust) and concurrency-focused (Go) targets from the same C++ source.

What it does: Parses C++ code and maps it to equivalent constructs in Rust and Go. Aims to reduce the manual effort in language migration.

Current Status: Focus is strictly on C++ to Rust/Go (no other languages planned). It's in the early stages, and I'm currently refining the AST mapping. I would love to hear your thoughts on:

What are the biggest pain points you've faced when migrating C++ to Rust/Go? Are there specific C++ patterns you'd like to see automated first?