Hacker Newsnew | past | comments | ask | show | jobs | submit | pss314's commentslogin

Stanford University offered the course "CS146S: The Modern Software Developer" in Fall 2025. Check it out if interested. https://themodernsoftware.dev/

What is your impression of the course?

Google’s Data Center Buildout Could Top $1 Trillion https://archive.is/kG3p4

Love both books by Daniel J. Barrett.

"The Linux Command Line" by William Shotts is pretty good book for new and experienced command line users. He has also written the supplemental book "Adventures with the Linux Command Line". The author has also generously provided them for free download at https://linuxcommand.org/tlcl.php.


I didn't know about this one. Looks an in-depth book on the shell as well. Thanks for sharing.

Interfaze.ai at YC Launch Live - May 8th, 2026 https://youtu.be/S9Lgp2hWBsE?t=4185


How I built this website on a Raspberry Pi https://news.ycombinator.com/item?id=42712378


John Howard (one of the maintainers of Istio and currently with Solo.io) blogged about "Fast GitHub Actions with Blacksmith" [1]. The blog also contains a link to "GitHub Action Runner Alternatives" [2].

[1]: https://blog.howardjohn.info/posts/blacksmith-gha/

[2]: https://binhong.me/blog/github-action-runner-alternatives/


I enjoyed both these GopherCon talks:

GopherCon 2018: The Scheduler Saga - Kavya Joshi https://www.youtube.com/watch?v=YHRO5WQGh0k

GopherCon 2017: Understanding Channels - Kavya Joshi https://www.youtube.com/watch?v=KBZlN0izeiY


https://m.youtube.com/watch?v=-K11rY57K7k - Dmitry Vyukov — Go scheduler: Implementing language with lightweight concurrency

This one notably also explains the design considerations for golangs M:N:P in comparison to other schemes and which specific challenges it tries to address.


And by Dmitry himself.


Good videos, thanks for sharing!


sudo-rs is one of the initiatives of Prossimo https://www.memorysafety.org/


Markdown reader using find, fzf and lnav

  find . \( -path '*/vendor/*' -or -path '*/.git/*' -or -path '*/node_modules/*' \) -prune -or -type f -name "*.md" -print | fzf | xargs lnav
In the above command, the find command excludes directories such as "vendor" (golang), ".git" (git) and "node_modules" (nodejs). The lnav itself provides the markdown support https://lnav.org/2022/08/06/markdown-support.html


Bloomberg Originals had recently published a video "The Dangerous Feature in Tesla's Doors" https://www.youtube.com/watch?v=2lFzqBt3z0w


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: