frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Tight Spot: Challenges Facing the Russian Oil Sector Through 2035

https://carnegieendowment.org/research/2026/03/russia-oil-situation-assessment
1•yread•14s ago•0 comments

Reddit considers Face ID to combat spam

https://www.engadget.com/social-media/reddit-is-weighing-identity-verification-methods-to-combat-...
1•smallnix•5m ago•1 comments

POSSE

https://indieweb.org/POSSE
4•tosh•6m ago•0 comments

Chopping my brain into bits – turning my brain into a 3D model on the web

https://srg.id.au/posts/brain/
1•lanakei•9m ago•0 comments

Show HN: The King Wen Permutation: [52, 10, 2]

https://gzw1987-bit.github.io/iching-math/
3•gezhengwen•13m ago•1 comments

Is possible a modern Linux without systemd? artix/dinit/labwc/noctalia

https://grigio.org/is-modern-linux-without-systemd-really-possible-artix-dinit-labwc-noctalia/
2•grigio•13m ago•1 comments

White-Collar AI Apocalypse Narrative Is Just Another Bullshit

https://martynasm.com/2026/03/22/white-collar-ai-apocalypse-narrative-is-just-another-bullshit/
2•mmiliauskas•19m ago•0 comments

VistAI–Save and Search AI Responses from ChatGPT, Claude, Gemini, and Perplexity

https://vistai.org
1•cbvinodvijay•25m ago•1 comments

Abstract Wikipedia

https://abstract.wikipedia.org/wiki/Abstract_Wikipedia:Main_page
1•abbe98•26m ago•0 comments

Random Numbers, Persian Code: A Mysterious Signal Transfixes Radio Sleuths

https://www.rferl.org/a/mystery-numbers-station-persian-signal-iran-war/33700659.html
1•austinallegro•26m ago•0 comments

AutoResearch by Karpathy and the Future of Autonomous AI Research

https://mljar.com/blog/autoresearch-karpathy-autonomous-ai-research/
1•pplonski86•27m ago•0 comments

Ask HN: How do you manage cloud access for your team without a VPN?

1•binoycyber•29m ago•0 comments

Airlines Are Preparing for an Oil Crisis

https://www.wired.com/story/united-airlines-jet-fuel-alarm-economy/
1•joozio•31m ago•0 comments

LLMs turn an autistic communication style into a neurotypical conversation

https://hachyderm.io/@EmilyEnough/116258821633964028
2•freetonik•32m ago•0 comments

Workout Genarator

http://www.https:\\workout1031.base44.app
1•avirose•37m ago•0 comments

Brandjet AI

https://www.brandjet.ai/
1•finin74047•38m ago•0 comments

Show HN: I made a AI Code Review tool that knows how your company works

https://matrixreview.io/
1•alexandersucala•39m ago•0 comments

Stop spending money on AI credits Translate your content using self-hosted LLMs

https://gatoplugins.com/blog/released-v17-1-self-hosted-llm-translation
1•leoloso•39m ago•0 comments

Scott Hanselman says he's working on Windows local accounts

https://twitter.com/shanselman/status/2035110958314745891
2•teekert•39m ago•1 comments

Emdash: Open-Source Agentic IDE for Orchestrating Multiple Coding Agents

1•steveharing1•40m ago•0 comments

Nextcloud's open-source alternatives series: XWiki vs. Confluence

https://nextcloud.com/blog/event/xwiki-vs-confluence/
1•lorinab•44m ago•0 comments

Neurvance, Pre-cleaned datasets for LLM fine-tuning, free to download

https://neurvance.com/blog-data-prep.html
1•Adam_SDDk•50m ago•0 comments

Show HN: AI Prompts for Data Professionals

https://mljar.com/ai-prompts/
1•pplonski86•52m ago•0 comments

Clearing Member 991

https://no01.substack.com/p/clearing-member-991
1•StrauXX•57m ago•0 comments

Prompt to tape out: Autonomous AI agent builds 1.5 GHz RISC-V CPU

https://blog.adafruit.com/2026/03/22/prompt-to-tape-out-autonomous-ai-agent-builds-1-5-ghz-risc-v...
2•monocasa•1h ago•0 comments

A YC-Backed Startup Left Production AWS Keys Public for 5 Months

https://benzimmermann.dev/blog/pump-vdp-silence
2•kernelrocks•1h ago•2 comments

Plane and ground vehicle collide at New York's LaGuardia airport halting flights

https://www.bbc.com/news/articles/cy01g522ww4o
27•mememememememo•1h ago•11 comments

Show HN: Scenia – open-source IT portfolio planning, runs in browser

https://scenia.website/
1•WaylonKenning•1h ago•0 comments

Bangkok rentals extracted from Facebook Groups

https://bangkokprop.com/
1•tanin•1h ago•0 comments

Microbenchmarking Chipsets for Giggles – By Chester Lam

https://chipsandcheese.com/p/microbenchmarking-chipsets-for-giggles
1•rbanffy•1h ago•0 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•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•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.