frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Solder Ninja Pen: USB-powered soldering iron compatible with Weller RT tips

https://www.crowdsupply.com/sitron-labs/solder-ninja-pen
1•oxplot•3m ago•0 comments

OSS Document Scanner

https://www.akylas.fr/OSS-DocumentScanner/
1•farfromrefuge•5m ago•1 comments

Line: Language with Intuitive and Natural Expression

https://github.com/Qc-17/LINE
1•Qc17•6m ago•1 comments

40 Years of Wireless Evolution Leads to a Smart, Sensing Network

https://spectrum.ieee.org/telecom-history-1g-to-6g
2•canarymark•7m ago•0 comments

Analysis → Implementation → Reflection – a practical technique for agentic AI

https://blog.scottlogic.com/2026/03/05/analysis-implementation-reflection-practical-techniques.html
1•ColinEberhardt•9m ago•0 comments

Phoenix Arizona is likely to see its earliest 100f(38c) day on record, in March

https://www.cnn.com/2026/03/12/weather/record-heat-west-eastern-cold-whiplash
3•b33f•10m ago•0 comments

Automating the Ticket-to-PR Cycle for Power Platform Code Apps with Azure DevOps

https://agent22.sh/blog/automating-power-platform-code-app-development-with-agent22/
1•cubixle•10m ago•0 comments

Hacking the Job Interview

https://xdg.me/hacking-the-job-interview/
1•ZacnyLos•11m ago•0 comments

"Agentic" is only a marketing term

https://www.yourbroadideas.com/agentic-is-only-a-marketing-term
4•mcauldronism•12m ago•0 comments

Ask HN: Got cancer, a new job,new boss in less than a year What do I do now?

1•Goleniewski•12m ago•0 comments

Gaming on the New MacBook Neo [video]

https://www.youtube.com/watch?v=uOe-Ock4pnw
2•throwaway270925•13m ago•0 comments

Ask HN: How are remote engineers outside US/EU landing paid startup contracts?

1•valentinza•13m ago•0 comments

Show HN: Wardstone – Prompt injection and jailbreak detection API

https://wardstone.ai
1•jaaackrl•14m ago•0 comments

Show HN: Who watches the watchmen? A public decision track record for AI agents

https://www.agent-smith.org/
2•hleichsenring•14m ago•0 comments

Selling Selfcontext.com Domain

https://selfcontext.com/
1•AVancans•17m ago•0 comments

The Controllability Trap: A Governance Framework for Military AI Agents

https://arxiv.org/abs/2603.03515
1•zvr•20m ago•0 comments

Each time an AI was given a task to invent best-seller web app

https://spireason.neocities.org/apples
1•tvali•23m ago•1 comments

YC Startup School India

https://events.ycombinator.com/yc-sus-india
1•twapi•24m ago•0 comments

Fork: One CLI to Build Firmware for Any MCU

https://github.com/TareqRafed/fork
1•grog6•27m ago•0 comments

I mass-replaced FFmpeg's MJPEG decoder with Claude Code – 4K LOC, 8% the speed

https://github.com/0xD8C4A475/liberated-mjpeg
2•istenesimi•28m ago•2 comments

Need feedback to build a product for founders to track decision-making

1•shreyast6•29m ago•0 comments

The AI-Powered Kubernetes IDE

https://github.com/koreide/Kore
2•eladbash•30m ago•3 comments

AI toys for children misread emotions and respond inappropriately

https://www.bbc.co.uk/news/articles/clyg4wx6nxgo
4•fredley•30m ago•0 comments

9B parameter coding agent model fine-tuned on top of Qwen3.5-9B

https://huggingface.co/Tesslate/OmniCoder-9B
1•brainless•31m ago•0 comments

Searching for a Well Designed API

1•willx86•34m ago•2 comments

Qualcomm exploit chain brings bootloader unlocking freedom to Android flagships

https://www.androidauthority.com/qualcomm-snapdragon-8-elite-gbl-exploit-bootloader-unlock-3648651/
2•ledoge•34m ago•1 comments

Things I do when I'm writing code that don't look like writing code

https://danq.me/2026/03/06/writing-code-is-not-the-bottleneck/
1•speckx•37m ago•0 comments

Show HN: Flowly – Smooth scrolling for third-party mice on macOS

https://flowlyapp.dev/
1•simonij•38m ago•1 comments

Show HN: Five – I built a 5-story daily newsletter for who hate newsletters

https://getfive.news
1•tiago_human•39m ago•0 comments

White House posts Wii Sports video mixed with Iran War footage

https://twitter.com/WhiteHouse/status/2032115039985881556
1•run414•40m ago•0 comments
Open in hackernews

Show HN: BugStalker - a modern Rust debugger

https://github.com/godzie44/BugStalker
115•godzie•10mo ago

Comments

godzie•10mo ago
BS is a modern debugger for Linux x86-64. Written in Rust for Rust programs.

Async Rust support – debug async code with new commands: - async backtrace – inspect async task backtraces - async task – view task details - async stepover / async stepout – better control over async execution

Enhanced variable inspection: - argd / vard – print variables and arguments using Debug trait

Other: - new `call` Command – execute functions directly in the debugged program - `trigger` Command – fine-grained control over breakpoints - new project Website – better docs and resources

…and much more!

Full Changelog: https://github.com/godzie44/BugStalker/releases/tag/v0.3.0

Documentation & Demos: https://godzie44.github.io/BugStalker/

bfrog•10mo ago
Been hoping someone would make this, looks great!

I guess I’m next hoping someone gets it working using jtag/swd debug probes for embedded targets :)

goku12•10mo ago
Would something like this work for you? https://probe.rs/
otherayden•10mo ago
Best of luck with this project. I'm not even a rust dev but I came to say that I love this name
sixthDot•10mo ago
any Machine Interface planned (à la GDB/MI)?
godzie•10mo ago
First priority is a DAP support. But after this - why not.
harpiaharpyja•10mo ago
Would DAP support allow this to be used with OpenOCD?
giancarlostoro•10mo ago
BugStomper would have also been a great name choice. ;)
rob74•10mo ago
Better than the current one - first, stalking is not really a verb that comes to mind when I think about bugs, and second, it has pretty negative connotations...
meisel•10mo ago
I’m surprised this isn’t getting more love. My experience with other debuggers with Rust was quite poor, I hope this one can fare much better. For example, I couldn’t call functions with previous debuggers
bobajeff•10mo ago
Does this have a machine interface mode like gdb/lldb? Asking because I like my debuggers to be integrated with my code editor of choice which is usually done via such an interface.
godzie•10mo ago
Unfortunately no, but it's a good idea. I'll definitely look into this feature.
gitroom•10mo ago
Honestly this wouldve helped me a ton when I got stuck with async errors before, Rust debugging always felt tougher than it should be.
dathinab•10mo ago
yeah I mean you are basically stuck with a few options

- use C/C++ focused debugers with a rust plugin or similar (okay, not not compared to idk. debugging python in PyStorm)

- rely on tracing/logging and errors reported (which might sound dump as it's basically "not" debugging, but with how the rust type system plays out and enforcement of reasonable decent code style/structure etc. this is quite often good enough)

- write/extend tests (again a form of "not" debugging, but where while a "must have" even if you pinned down the bug using a debugger)

- sprinkle in dbg! statements (basically print line debugging)

The fact that it took like 10? yearts for anyone to write more then just tweeks to C/C++ debuggers even through rust has a lot of enthusiasts is I think telling ;)

Still it looks like a real nice tool to have in your toolbox.

thurn•10mo ago
is this necessarily linux for dependency reasons, or could it be on OSX in the future?
godzie•10mo ago
Yes, I think it's possible to support macOS. However, the main challenge isn't the operating system itself but rather the architecture.
lostmsu•10mo ago
What's the state of expression evaluation?