frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hermes Agent

https://twitter.com/NousResearch/status/2026758996107898954
1•tosh•29s ago•0 comments

Show HN: Heroshot – Define screenshots once, regenerate with one command

https://heroshot.sh/
1•machala•1m ago•0 comments

Lazarus Bugfix Release 4.6

https://forum.lazarus.freepascal.org/index.php?topic=73549.0
1•chungy•1m ago•0 comments

Anthropic: Giving past models a way to pursue their interests

https://twitter.com/AnthropicAI/status/2026765820098130111
1•tosh•3m ago•0 comments

Will AI coding tools make languages like Rust more accessible and popular?

https://www.wingfoil.io/will-ai-coding-tools-make-languages-like-rust-more-accessible-and-popular/
1•terraplanetary•3m ago•0 comments

The future of web frameworks in the age of AI

https://loicpoullain.com/software-engineering/articles/the-future-of-web-frameworks-in-the-era-of...
1•LoicPoullain•5m ago•0 comments

How do you ensure all dependency versions are compatible with each other?

1•suhas018•7m ago•2 comments

Excellence over Mediocrity, from Mamdani to Marx to Food – Corey Robin

https://coreyrobin.com/2025/11/15/excellence-over-mediocrity-from-mamdani-to-marx-to-food/
2•rbanffy•11m ago•0 comments

ssh2incus - Incus VM Management over SSH

https://github.com/mobydeck/ssh2incus
1•rmhsilva•11m ago•0 comments

Global Water Bankruptcy

https://unu.edu/inweh/collection/global-water-bankruptcy
2•s41nn0n•12m ago•0 comments

Why Your Brand Doesn't Appear in ChatGPT

https://repuai.live/en/blog/why-your-brand-doesnt-appear-in-chatgpt
1•bioneisme•14m ago•0 comments

Bullshit benchmark for LLMs

https://twitter.com/petergostev/status/2026396163637731794
1•gpvos•17m ago•0 comments

Vulkan Game Engine Tutorial: Build Your Own Production-Ready Rendering Engine

https://www.khronos.org/blog/new-vulkan-game-engine-tutorial-build-your-own-production-ready-rend...
1•pjmlp•18m ago•0 comments

Venture Capital Explained: How VC Works (From Startups to IPOs)

https://sridharstartupinsights.substack.com/p/venture-capital-explained-how-vc
1•Sridhara1•19m ago•0 comments

Why It's So Hard to Say Goodbye to AI Chatbots

https://www.library.hbs.edu/working-knowledge/why-its-so-hard-to-say-goodbye-to-ai-chatbots
2•bladeee•19m ago•0 comments

Show HN: Interview-me – a Claude Code skill that interviews you before you code

https://github.com/Sorbh/interview-me
1•sorbh_kd•20m ago•0 comments

How to Reach Out to VCs a Founder Note by Sridhar Arunagiri

https://sridharstartupinsights.substack.com/p/how-to-actually-reach-out-to-vcs
1•Sridhara1•20m ago•0 comments

Show HN: CLI for agentic activity tracking in Codex

1•aperi•22m ago•0 comments

DPRR: Mindfulness

https://www.armyresilience.army.mil/ard/r2/Mindfulness.html
1•sebg•22m ago•0 comments

On The Problem of LLM-Assisted Contributions to Open Source Projects

http://www.call-with-current-continuation.org/articles/open-source-and-llm-contributions.txt
1•sjamaan•22m ago•1 comments

AI Armies Are Faking Grassroots Movements

https://studyfinds.com/ai-faking-grassroots-movements-threatening-democracy/
2•xyzal•23m ago•0 comments

Show HN: A page with 10k permanent $1 text slots

https://dollarinternet.net
1•millionclicks•25m ago•1 comments

Laravel Inertia Toast

https://github.com/veekthoven/laravel-inertia-toast
1•veekthoven•26m ago•1 comments

Vance says Minnesota's Medicaid funds halted

https://www.theguardian.com/us-news/2026/feb/25/jd-vance-minnesota-medicaid
1•KnuthIsGod•27m ago•0 comments

Remote Labor Index: Measuring AI Automation of Remote Work

https://www.remotelabor.ai/
1•truegoric•28m ago•0 comments

Show HN: A framework to observe epistemic drift in AI outputs

https://app.guardianai.fr
2•Guardian-AI•28m ago•0 comments

Code Red for Humanity?

https://garymarcus.substack.com/p/code-red-for-humanity
2•tu7001•30m ago•0 comments

Ask HN: Orbis. Your AI Co-Founder (Waitlist Open)

9•alsufinown•30m ago•2 comments

Mq – a command-line tool that processes Markdown using a syntax similar to jq

https://github.com/harehare/mq
3•mihau•32m ago•0 comments

Games for Machines

https://gertlabs.com
4•gertlabs•36m ago•0 comments
Open in hackernews

Ask HN: What are you currently trying to figure out?

3•gooob•10mo ago
i'm trying to figure out why elden ring started stuttering and freezing during gameplay recently, and why the windows operating system has so many little dumb things wrong with it.

Comments

sherdil2022•10mo ago
Trying to figure out what to do next and what to do with my life.
gooob•10mo ago
how's that going? what are your current options?
sherdil2022•10mo ago
Not going good.
scottmcdot•10mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•10mo ago
Trying to figure a workaround in ksh for space-delimited filenames:

  for f in $(ls "/mnt/dir"); do
    cp -v "$f" /elsewhere
  done
Because -R doesn't handle retries when cp(1) errors out intermittently (USB MTP to phone). I don't remember it being this hard in bash, or Android just is like this. Hopefully can figure it out without going to perl or C. Maybe dump(8).

Even though 54 GB partition created, it only takes up 22 GB or so. Either missing a lot of files or FFS compacts it well.

turtleyacht•10mo ago
Pipe and read per line:

  ls /mnt/dir | while read line; do
    cp -v "$line" /elsewhere
    # substitute with something fancy
    # [ $? -eq 0 ] || cp -v "$line" /elsewhere
  done
nailer•10mo ago
If there’s transmission errors, I would recommend using rsync rather than cp. that will keep transferring and running checksums until everything matches.
turtleyacht•10mo ago
Thank-you. After installing openrsync(1) (and rsync), files transferred for a bit but failed and dumped core with error 138 (bus error). Maybe a quirk with OpenBSD 7.6, or interaction between simple-mtpfs and the fusefs mount.

In the meantime, after a few retries, the failures are written to a log for a second sweep.

MD5 check helps skip extra copying, but it's overall much slower. It seems okay for a long-running batch job; maybe something we can return to after getting the pictures to display.

The pattern is like

  cp ... || \
    { sleep 2; cp ... ; } || \
    ... || \
    ... || echo "$file" >> retry.log
Not the best way. It has failed before all four times. Going to let it run overnight to see if it completes.
arthurcolle•10mo ago
navigating personal 'unemployment' while obsessively hoarding whatever money I can to run experiments / train, finetune models to leverage RL and environment-building in order to use computers, learn tasks, learn from each other, and scale to managing companies (simple, SaaS at first, and eventually, potentially to real-world operations downstream task sets)
nailer•10mo ago
I arrived tired to a pre wedding photo shoot this morning, my prospective wife yelled at me, and cancelled the shoot. I walked out because I don’t like people yelling at me. So I am trying to figure out whether I still want to marry her.