frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Interview: EmDash, a CMS built on Astro with sandboxed plugins

https://www.youtube.com/watch?v=K8QvgXe9z-A
1•emot•1m ago•0 comments

Show HN: LadderRank: Rank anything with ELO ratings

https://ladderrank.app/ladder/77DTlDNxd2dsbmAAMO7o8/vote
1•douglaswlance•4m ago•0 comments

Stanley Jordan's Two-Handed Technique [video]

https://www.youtube.com/watch?v=ldT6yTralvk
1•sbuttgereit•6m ago•0 comments

Account Verification for Windows Hardware Program Begins October 16, 2025

https://techcommunity.microsoft.com/blog/hardware-dev-center/action-required-account-verification...
1•TiredOfLife•8m ago•0 comments

Ask HN: Advice for college grads starting careers in the AI era?

1•LostMyLogin•10m ago•1 comments

Little Snitch for Linux – Because Nothing Else Came Close

https://obdev.at/blog/little-snitch-for-linux/
2•Cider9986•12m ago•0 comments

Store Your Taxes in Git

https://blog.foks.pub/posts/store-your-taxes-in-git/
1•todsacerdoti•20m ago•0 comments

Claude Glass (Or Black Mirror)

https://en.wikipedia.org/wiki/Claude_glass
2•sram1337•21m ago•0 comments

Building a JavaScript runtime in one month

https://themackabu.dev/blog/js-in-one-month
1•franciscop•22m ago•0 comments

LittleSnitch for Linux

https://obdev.at/products/littlesnitch-linux/index.html
27•pluc•26m ago•6 comments

Does Baby Have Hat

https://www.jeremykun.com/2025/04/01/does-baby-have-hat/
1•jfil•27m ago•0 comments

Roundup of Events for Bootstrappers in April 2026

https://bootstrappersbreakfast.com/2026/03/26/roundup-of-april-2026-bootstrapper-events/
1•skmurphy•28m ago•1 comments

Ask HN: How do you manage your child's screen time?

2•pcarolan•40m ago•0 comments

Show HN: Palesignal – Vote on whether emerging tech is an asset or a threat

https://palesignal.netlify.app/#sora
1•jvtheworld•41m ago•0 comments

Code Reviewer Personas Skills from Uv, Bun, vLLM

https://github.com/dtran24/code-reviewer-personas
2•bkls•43m ago•1 comments

Trove of sensitive LAPD records leaked in data hack of city attorney's office

https://www.latimes.com/california/story/2026-04-07/lapd-records-suspected-hack
3•jimt1234•45m ago•0 comments

Ask HN: Best social impact project for a MLE?

1•charleswangsy•47m ago•0 comments

Web Based 'Tracker' & DAW

https://federatedindustrial.com/tracker
1•ShimazuSystems•49m ago•0 comments

Practical Advice to Avoid Getting Pwned by a State Actor Using AI

https://www.choosingvictory.com/p/practical-advice-to-avoid-getting
3•ilamont•49m ago•1 comments

Constructing an LLM Computer

https://www.percepta.ai/blog/constructing-llm-computer
2•p0u4a•51m ago•0 comments

Previously unknown verses by Empedocles found on papyrus

https://www.thehistoryblog.com/archives/75792
2•danielam•51m ago•0 comments

Our digital devices are putting our right to privacy at risk

https://arstechnica.com/culture/2026/04/how-our-digital-devices-are-putting-our-right-to-privacy-...
5•nobody9999•52m ago•0 comments

The World Needs More Software Engineers – Box CEO

https://www.oreilly.com/radar/the-world-needs-more-software-engineers/
4•alwinaugustin•53m ago•1 comments

From Hierarchy to Intelligence

https://block.xyz/inside/from-hierarchy-to-intelligence
1•cebert•55m ago•0 comments

54kb Minecraft clone made without a graphics library [video]

https://www.youtube.com/watch?v=JO8EnzNfEk4
2•PaulHoule•56m ago•0 comments

Show HN: Infer – Pipe friendly Agent Harness with one tool: Bash

https://github.com/turlockmike/infer
2•turlockmike•56m ago•0 comments

I built a tool to let you export your X bookmarks and categorize them

https://x-archive.netlify.app/
2•xarchive•57m ago•1 comments

Google backs London AI Campus with Camden partners to expand AI skills provision

https://www.edtechinnovationhub.com/news/google-backs-london-ai-campus-with-camden-partners-to-ex...
1•smurda•57m ago•0 comments

Automatic registration for US Military draft to begin in December

https://thehill.com/policy/defense/5822914-automatic-registration-military-draft/
30•c420•59m ago•32 comments

Boring Is Good (2024)

https://www.coryd.dev/posts/2024/boring-is-good
1•cdrnsf•59m ago•1 comments
Open in hackernews

Show HN: BugStalker - a modern Rust debugger

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

Comments

godzie•11mo 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•11mo 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•11mo ago
Would something like this work for you? https://probe.rs/
otherayden•11mo 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•11mo ago
any Machine Interface planned (à la GDB/MI)?
godzie•11mo ago
First priority is a DAP support. But after this - why not.
harpiaharpyja•11mo ago
Would DAP support allow this to be used with OpenOCD?
giancarlostoro•11mo ago
BugStomper would have also been a great name choice. ;)
rob74•11mo 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•11mo 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•11mo 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•11mo ago
Unfortunately no, but it's a good idea. I'll definitely look into this feature.
gitroom•11mo 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•11mo 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•11mo ago
is this necessarily linux for dependency reasons, or could it be on OSX in the future?
godzie•11mo 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•11mo ago
What's the state of expression evaluation?