GitHub unveils #Plandex v2, promising to revolutionize #coding for #large #projects with an #AI that probably just outputs "Hello World" in 57 languages.
https://github.com/plandex-ai/plandex #GitHub #revolution #HackerNews #ngated

GitHub unveils #Plandex v2, promising to revolutionize #coding for #large #projects with an #AI that probably just outputs "Hello World" in 57 languages.
https://github.com/plandex-ai/plandex #GitHub #revolution #HackerNews #ngated
https://github.com/rivet-gg/actor-core #frameworks #technology #trends #HackerNews #ngated
C++Now 2025 SESSION ANNOUNCEMENT: How the Linux User/Kernel ABI Really Works by Greg Law
https://schedule.cppnow.org/session/2025/how-the-linux-user-kernel-abi-really-works/
Register now at https://cppnow.org/registration/
https://pgdog.dev/blog/hacking-postgres-wire-protocol #software #development #HackerNews #ngated
PS: I also discovered you can modify the `lnav` behaviour by only showing new logs at the time of using the SSH command above:
```
#!/usr/bin/env bash
export TZ='Europe/Berlin';
NOW="$(date -Iseconds | sed -e 's/+.*$//')"
LOG_FILE="$(ls -t ~/pgdata/data/logs/*.log | head -n 1)"
if [ "$1" = "now" ]; then
lnav "$LOG_FILE" -c ":hide-lines-before $NOW"
else
lnav "$LOG_FILE"
fi
```
Peering into the Linux Kernel with Trace
https://alexdowad.github.io/peering-in-the-kernel-with-trace/
A tricky Commodore PET repair: tracking down 6 1/2 bad chips https://lobste.rs/s/xgzydz #debugging #hardware #retrocomputing
http://www.righto.com/2025/04/commodore-pet-repair.html
Ah, the noble quest to over-engineer a video app's UI with #Rust and #WebAssembly
https://www.infoq.com/presentations/prime-video-rust/ #overengineering #videoapp #C++ #HackerNews #ngated
I have a newfound respect for coders. The overwhelming desire to put my fist through my monitor and burn the entire house down while debugging this week is real.
#VBA #debugging
I ended up adding an SSH user called `postgreslogs` which serves as a way to SSH directly into the logs using:
- A `ForceCommand` SSH daemon config for the user
- A `sudoer.d` config to allow postgreslogs to elevate (i.e. sudo) to postgres (the DB admin account) without a password
Works really nicely! All you need to do to see the logs is to `ssh postgrelogs@postgreshost.proxmox` or similar!
Got up and running with debugging Go code in Emacs in about 2 minutes.
It renders variables inline, as well as when I put my cursor on a variable (eldoc-box).
dape lets me navigate the call stack, it auto expands all local variables, it provides a REPL and more besides.
And all I did was:
# pacman -S delve
M-x dape RET RET
I've yet to try out the more advanced features of delve, like attaching to a running process, but first impressions sure look good!
Which debugger setup would you recommend for Go in Emacs?
Is delve with dape the combination to go for?
Interactive visualization of the editing stream internal buffer.
Today I discovered "lnav"or the Log Navigator cli utility. It is a truly awesome log follower and navigator for the terminal which works beautifully with PostgreSQL log files.
#postgres #postgresql #debugging #sql #plpgsql #lnav #logs #logging #rdbms #system #administration
Embedded Linux debugging can be complex, but the right tools make all the difference. Our latest blog reviews the essential practices – from hardware tools to logging techniques – that can help you build robust, reliable devices: https://www.kdab.com/mastering-debugging-in-embedded-linux/ #Embedded #Linux #Debugging
https://www.kdab.com/mastering-debugging-in-embedded-linux/
Debugging Race Conditions with ThreadSanitizer (TSan) in C++ & C Programming
#Strace 6.14 has been released (#Debugging) https://strace.io/
Debugging in the terminal isn't difficult anymore
Ah, the noble quest to tame the wild beast of async Rust with the mystical powers of "deterministic simulation testing"
https://s2.dev/blog/dst #asyncRust #deterministicTesting #debugging #programming #humor #HackerNews #ngated