frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Picasso's Guernica (Gigapixel)

https://guernica.museoreinasofia.es/gigapixel/#3/63.11/-120.59
1•guigar•37s ago•0 comments

Show HN: LSM Trees: MemTable, Compaction, and the Amplification Triangle [video]

https://www.youtube.com/watch?v=rOC7jkN748w
1•rcron•39s ago•0 comments

France's government is ditching Windows for Linux, says US tech a strategic risk

https://www.xda-developers.com/frances-government-ditching-windows-for-linux/
1•pabs3•2m ago•0 comments

Reverse Engineering File Format Steganography Chain of the TeamPCP Attack

https://husseinmuhaisen.com/blog/reverse-engineering-teampcp-telnyx-file-format-chain/
1•husseinmuhaisen•2m ago•1 comments

GazeFollow from Scratch

https://github.com/aldipiroli/GazeFollow_from_scratch/tree/main
1•tgnk2341•2m ago•0 comments

Incremental Compilation with LLVM

https://ziglang.org/devlog/2026/#2026-04-08
1•birdculture•5m ago•0 comments

I built a skill manager for AI agents. The agents install the skills themselves

https://github.com/nattergabriel/reseed
1•eterer•6m ago•1 comments

I built a programming language in 6 days without writing a single line of code

https://github.com/Quynah/ape-lang
1•Quynah•7m ago•1 comments

Digital World Statistics in Real Time

https://anythingcounter.com
1•digitalofen•7m ago•0 comments

Pizza Tycoon Deluxe Bundle

https://store.steampowered.com/bundle/6361/Pizza_Connection__Deluxe/
1•doener•21m ago•0 comments

Scoop: Microsoft Is Pausing Carbon Removal Purchases

https://heatmap.news/carbon-removal/microsoft-carbon-removal-pause
1•doener•22m ago•0 comments

Claude API Error: 529

3•anujbans•22m ago•1 comments

Tomato – Visual DAG editor for NixOS configurations

https://github.com/thatsme/Tomato
2•alessio66•23m ago•0 comments

The hottest Apple product isn't what you think

https://www.cnn.com/2026/04/10/tech/apple-mac-mini-ai-openclaw
1•abe94•24m ago•0 comments

Build a viral website, win $1000

https://launchyard.dev/contest
1•hackmaxim•29m ago•1 comments

My AI workflow evolved from prompts to a near-autonomous workflow

3•hoangnnguyen•29m ago•1 comments

Parakeet Streaming ASR on Apple Silicon via CoreML – and Swift Demo App

https://old.reddit.com/r/iOSProgramming/comments/1sickii/streaming_asr_on_apple_silicon_via_corem...
2•ipotapov•29m ago•0 comments

News is bad for you (2013)

https://www.theguardian.com/media/2013/apr/12/news-is-bad-rolf-dobelli
4•downbad_•35m ago•2 comments

Hello, Liquid Fox (A Nice macOS Firefox Theme)

https://miloszfalinski.com/hello-liquid-fox-a-nice-macos-firefox-theme/
1•alin23•37m ago•0 comments

The Apple Museum Officially Opens April 2 – Update – Stichting the Apple Museum

https://applemuseum.nl/updates/the-apple-museum-officially-opens-april-2/
1•janandonly•47m ago•0 comments

Jolgbs

1•google_play_hn•54m ago•0 comments

CoLaptop – Personal Laptop Colocation Service

https://www.colaptop.com/
2•pabs3•56m ago•0 comments

Dancer with MND performs on stage again through digital avatar

https://www.bbc.co.uk/news/articles/cgqkz5lzvnwo
1•ColinEberhardt•57m ago•0 comments

Falco's Convergence: Bitcoin-Core Reform Agenda (Via Information-Reveal) [pdf]

https://cppalliance.org/tools/bitcoin-core-reform-agenda.pdf
1•vinniefalco•57m ago•0 comments

ThinkPad X1 Carbon 14: Light on Weight, Heavy on Intelligence

https://www.lenovo.com/us/en/p/coming-soon/lenovo-thinkpad-x1-carbon-gen-14-aura-edition-14-inch-...
2•seekdeep•57m ago•0 comments

Ask HN: Best books on building a programming language

2•ezzato•59m ago•1 comments

Runtime augmentation of Hugging Face without modifying source – CMPSBL Demo

https://github.com/SweetKenneth/transformers-ascended-verified
2•promptfluid•1h ago•1 comments

How to Solve SBoM Sprawl: From Static Files to Vex and Automation

https://anchore.com/blog/sbom-sprawl-paradox/
1•Tomte•1h ago•0 comments

Gigi – Geometric Intrinsic Global Index – A new approach to database queries

https://www.davisgeometric.com/gigi#home
1•thunderbong•1h ago•0 comments

MLSharp Single-View High-Quality AI Reconstruction Pipeline

https://suto.bex.jp/mac/mlsharp/index.html
1•mvdwoord•1h ago•1 comments
Open in hackernews

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

3•gooob•11mo 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•11mo ago
Trying to figure out what to do next and what to do with my life.
gooob•11mo ago
how's that going? what are your current options?
sherdil2022•11mo ago
Not going good.
scottmcdot•11mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.