frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Using Structured Light Scanning and Photogrammetry in Cultural Heritage

https://www.mdpi.com/2078-2489/17/3/237
1•PaulHoule•25s ago•0 comments

Financial AGI announced – outperforms human experts on 12 professional exams

https://portfoliopilot.com/technology/financial-agi
1•aharm•1m ago•0 comments

Most AI agent demos won't survive enterprise security review

1•ibreakthecloud•1m ago•0 comments

Show HN: Experiment- enforcing accessibility guardrails during AI UI generation

https://github.com/nadav-senseit/ai-accessibility-enforcement
1•nadav_senseit•2m ago•0 comments

Ask HN: Have you noticed how the number of 'Show HN' posts has skyrocketed?

1•nodivbyzero•2m ago•0 comments

CSUN Assistive Technology Conference 2026 files

https://daisy.org/news-events/articles/csun-conference-2026-files/
1•bryanrasmussen•2m ago•0 comments

Show HN: Chatddit.com Fresh off the vibe press

1•gitprolinux•3m ago•0 comments

I'm a Coin Boy, Too (2023)

https://taylor.town/coin-boys
1•surprisetalk•3m ago•0 comments

Formal Verification in the Age of AI

https://verse.systems/blog/post/2026-03-05-formal-verification-ai/
1•matt_d•3m ago•0 comments

I Love Email (2023)

https://blog.xoria.org/email/
1•surprisetalk•3m ago•0 comments

Case Study: lynnandtonic.com 2025 refresh

https://lynnandtonic.com/thoughts/entries/case-study-2025-refresh/
1•surprisetalk•3m ago•0 comments

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
1•surprisetalk•3m ago•0 comments

Collabora at Embedded World 2026: Open-Source AI and Embedded Innovation

https://www.collabora.com/news-and-blog/news-and-events/bringing-the-ai-experience-to-embedded-wo...
1•losgehts•4m ago•0 comments

I built a real-time RER/train tracker for Paris commuters (PWA, no app store)

https://o-rer.com
2•raduvul•5m ago•1 comments

Arc Raiders – Discord SDK Data Exposure

https://timothymeadows.com/arc-raiders-discord-sdk-data-exposure/
3•esnard•6m ago•0 comments

Researchers discover Chickpeas can grow in moon dirt and make seeds

https://www.sciencenews.org/article/chickpeas-moon-dirt-seeds-space-farming
1•ck2•7m ago•0 comments

Asymmetric Goal Drift in Coding Agents Under Value Conflict

https://arxiv.org/abs/2603.03456
1•lrakster•8m ago•0 comments

Is Web Development Returning to PHP?

https://andreasyanaram.medium.com/is-web-development-quietly-returning-to-php-8dd5c3d47eee
1•ulrischa•9m ago•0 comments

Containers, but Without the Magic Part 1: Networking

https://www.nightshift.sh/blog/containers-without-magic-01
1•tensor_ninja•10m ago•0 comments

Show HN: ColdPitch – Find anyone, get a personalized cold email in seconds

https://www.coldpitch.ai
1•arishec•10m ago•0 comments

Why do elephants have such wrinkly skin?

https://www.sciencefocus.com/nature/why-do-elephants-have-such-wrinkly-skin
1•thunderbong•11m ago•0 comments

Left-handed people may have a psychological edge in competition

https://phys.org/news/2026-03-left-people-psychological-edge-competition.html
3•simonebrunozzi•11m ago•0 comments

The OpenAI Files

https://www.theverge.com/openai/688783/the-openai-files-will-help-you-understand-how-sam-altmans-...
2•MrBuddyCasino•11m ago•0 comments

Show HN: I trained a small local model to translate natural language to CLI

https://github.com/spicy-lemonade/zest-cli-infra
1•kiki_kuuki•12m ago•0 comments

How we fixed Postgres connection pooling on serverless with PgDog

https://circleback.ai/blog/how-we-fixed-postgres-connection-pooling-on-serverless-with-pgdog
2•alihaghani•12m ago•0 comments

No Cloud, No Waiting: Tool-Calling Agents on Consumer Hardware with LFM2-24B-A2B

https://www.liquid.ai/blog/no-cloud-tool-calling-agents-consumer-hardware-lfm2-24b-a2b
1•nimar•12m ago•0 comments

Kaoslabs – My Linux VPS and self-hosting experiments

https://kaoslabs.org
1•wilhart•12m ago•1 comments

Type-safe, K-sortable, globally unique identifier inspired by Stripe IDs

https://github.com/jetify-com/typeid
1•alcazar•16m ago•0 comments

Donald Trump insists there are no wind farms in China. Here are 20 in pictures

https://www.theguardian.com/us-news/gallery/2026/mar/05/pictures-china-wind-farms-trump
12•beardyw•17m ago•3 comments

Heuristics for lab robotics, and where its future may go

https://www.owlposting.com/p/heuristics-for-lab-robotics-and-where
1•abhishaike•17m 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.