frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Recovery of the first fiber-optic submarine cable across an ocean – TAT-8

https://www.submarinenetworks.com/en/nv/insights/recovery-of-the-world-s-first-fiber-optic-submar...
1•marklit•1m ago•0 comments

How to write yourself every day

https://psyche.co/guides/how-to-write-yourself-every-day
1•herbertl•1m ago•0 comments

JupyterLab 4 Extensions

https://blog.jupyter.org/700-jupyterlab-4-extensions-8ac295b3d974
1•ktaletsk•1m ago•0 comments

What's Behind 'Alpine Divorce'?

https://www.theguardian.com/lifeandstyle/ng-interactive/2026/mar/17/alpine-divorce-abandoned-hiki...
1•Tomte•2m ago•0 comments

Show HN: Motif - Analyze your Cursor and Claude Code chat history

https://github.com/Bulugulu/motif-cli
1•Bulugulu•2m ago•0 comments

Agentic review of Linux Kernel code changes

https://github.com/sashiko-dev/sashiko
1•l2dy•3m ago•0 comments

Show HN: The-telegram-telegram (thermal printer style)

https://github.com/rscircus/the-telegram-telegram
1•eigenlab•4m ago•0 comments

The Benefits of Conforming

https://beyondloom.com/blog/conforming.html
1•tosh•5m ago•1 comments

Show HN: Packet28 – Context Layer for AI coding agents

https://packet28.dev
2•usharma123•6m ago•0 comments

Ask HN: How do you distinguish prompt issues from model failures in LLMs today

2•se4u•6m ago•0 comments

Lifeguard: A fast Rust-based static analysis tool, for Python lazy imports

https://github.com/facebook/Lifeguard
1•phpencil•7m ago•0 comments

AWS spurs Catch-22, ending PostgreSQL 13 support for RDS

https://www.theregister.com/2026/03/17/aws_ends_support_postgresql_13_rds/
1•arusahni•7m ago•0 comments

EU Inc.: incorporate in any EU country in 48 hours with no minimum capital

https://twitter.com/EU_Commission/status/2034231737161588800
2•bpierre•8m ago•1 comments

Population Around a Point

https://www.tomforth.co.uk/circlepopulations/
1•bookofjoe•9m ago•0 comments

Xiaomi MiMo-V2-Pro: Flagship Foundation Model Towards Agent Era

https://mimo.xiaomi.com/mimo-v2-pro
2•gainsurier•9m ago•0 comments

Construct's official 3D model object

https://www.construct.net/en/blogs/construct-official-blog-1/introducing-constructs-1900
1•AshleysBrain•9m ago•0 comments

Preventing and Debugging Memory Leaks in Node.js

https://betterstack.com/community/guides/scaling-nodejs/high-performance-nodejs/nodejs-memory-leaks/
1•eustoria•10m ago•0 comments

Optimization lessons from a Minecraft structure locator

https://purplesyringa.moe/blog/optimization-lessons-from-a-minecraft-structure-locator/
1•gavide•11m ago•0 comments

Coastline – detect resonance between ideas, fed by your OpenClaw agent

https://coastline-production.up.railway.app/
1•pb_lightmind•11m ago•1 comments

Your ChatGPT Conversations Aren't as Private as You Think

https://stellarraccoon.com/your-chatgpt-conversations-arent-as-private-as-you-think-heres-whats-b...
1•eustoria•12m ago•0 comments

Verifying Move Borrow Checker in Lean:An Experiment in AI-Assisted PL Metatheory

https://proofsandintuitions.net/2026/03/18/move-borrow-checker-lean/
1•matt_d•13m ago•0 comments

Show HN: Augre – A cross platform ePub reader for deep reading

https://getaugre.com
1•ishanr•13m ago•0 comments

Judge orders Krafton to re-hire Subnautica studio founders

https://www.rockpapershotgun.com/subnautica-2-bosses-handed-back-control-of-company-after-judge-f...
1•12_throw_away•14m ago•0 comments

Show HN: HypergraphZ – Hypergraph Implementation in Zig

https://github.com/yamafaktory/hypergraphz
1•yamafaktory•15m ago•0 comments

Show HN: My VPS got DDoS'd into a kernel panic, so I learned XDP

https://liuu.org/posts/ddos/
1•kennethhh•15m ago•0 comments

Understanding Detection of Belowground Natural Gas Leaks in Urban Environments

https://www.sciencedirect.com/science/article/pii/S2667143325001647
1•PaulHoule•17m ago•0 comments

Does "AI" cause delusion, or just attract those aleady suffering?

3•chrisjj•20m ago•0 comments

Digg Is Gone Again

https://digg.com
3•hnarayanan•20m ago•1 comments

Ask HN: How do you use AI agents in your day to day life?

1•sujayk_33•21m ago•0 comments

Show HN: Built a crosslister (in PHP!) that supports Vinted (which has no API)

1•gosixl•22m 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.