frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Prompt Screener – Catches biased prompts before you send them to AI

https://chromewebstore.google.com/detail/prompt-screener/hdooilgdenkeeccfomlkkenhmelobcjm
1•jahaanshah•1m ago•0 comments

Odin, Wikipedia and Engagement Farming

https://katamari64.se/posts/2026/odin-wikipedia/
1•baranul•2m ago•0 comments

Francesca Albanese on the untapped power of international law

https://www.reuters.com/lifestyle/culture-current/francesca-albanese-untapped-power-international...
1•skibz•5m ago•0 comments

Removing fsync from our local storage engine

https://fractalbits.com/blog/remove-fsync/
2•zzsheng•9m ago•1 comments

Tired of "Move to left and decrease border radius"? Try Browser-Mutation

https://github.com/JosPMSilva/Browser-mutation
1•JosPMSilva•9m ago•0 comments

Ask HN: Degraded GPT-5.5 Quality?

1•ramon156•16m ago•0 comments

K8s-Container_escape_audit Version 3

https://github.com/liamromanis101/K8s-container_escape_audit
1•lromanis•23m ago•1 comments

Grok TTS: X's Latest TTS Model Sets a New Baseline

https://techstackups.com/articles/grok-tts-xai-text-to-speech-model/
1•ritzaco•25m ago•0 comments

Silicon oscillators solve problems in seconds using semiconductors

https://techxplore.com/news/2026-05-silicon-oscillators-problems-thousands-years.html
1•01-_-•26m ago•0 comments

U.S. and China Pursue Guardrails to Stop AI Rivalry from Spiraling into Crisis

https://www.wsj.com/world/china/u-s-and-china-pursue-guardrails-to-stop-ai-rivalry-from-spiraling...
1•01-_-•28m ago•0 comments

HomeDesignsAI

https://homedesigns.ai
2•bellamoon544•33m ago•0 comments

Progressively Improving a Ball of Mud

https://afilina.com/improving-ball-of-mud
2•luu•34m ago•0 comments

The best ideas come from the arena

https://www.reproof.app/blog/amex-history
1•maguay•37m ago•0 comments

ZAYA1-8B: An 8B Moe Model with 760M Active Params Matching DeepSeek-R1 on Math

https://firethering.com/zaya1-8b-open-source-math-coding-model/
1•steveharing1•38m ago•0 comments

Ask HN: Does a vetted marketplace improve hiring?

1•Sam6late•39m ago•0 comments

Subquadratic claims to have fixes attention scaling with 12M context window

https://twitter.com/alex_whedon/status/2051663268704636937
1•jiwidi•42m ago•0 comments

Who edited the date stamp of this post

https://xcancel.com/iamasoothsayer/status/1535494638391664641?s=46%0A
2•razodactyl•47m ago•0 comments

The Semantic Conception of Truth and the Foundations of Semantics(1944)

https://www.ditext.com/tarski/tarski.html
2•nill0•50m ago•0 comments

My first post scored 1. Karpathy's autoresearch idea helped me repost

https://github.com/meller/laneconductor
2•meller_a•55m ago•0 comments

Has Meta ever provided Qualcomm EDL files for recovery?

1•nar001•1h ago•0 comments

Mapping Project Complexity with AI

https://www.maiobarbero.dev/articles/project-complexity-ai-skills/
1•maiobarbero•1h ago•1 comments

Show HN: Production-Ready MERN Job Board Template

https://auditjobs.up.railway.app/
1•hlymrk•1h ago•0 comments

Show HN: Crypto Cards – 136 debit/credit cards, MIT-licensed list

https://github.com/mbtrilla/awesome-crypto-cards
1•mbtrilla•1h ago•0 comments

Message Brokers Are Modern Grids(2020)

https://yusufaytas.com/message-brokers-are-modern-grids
3•return_null•1h ago•0 comments

Show HN: Modolap, Improve the Reliability of Your Software Systems

https://modolap.com/
1•ronfriedhaber•1h ago•0 comments

I Wrote a Nix Flake for Helium Browser with Home Manager and NixOS Modules

https://github.com/oxcl/nix-flake-helium-browser
2•oxcl•1h ago•0 comments

Show HN: Social Network for Corporate Cringe

https://CringeOut.com
7•CringeOut•1h ago•2 comments

Plimpton 322 – Babylonian Clay table of triangles 1k years before Pythagoras

https://en.wikipedia.org/wiki/Plimpton_322
1•lifeisstillgood•1h ago•1 comments

Show HN: Uvx privacy-steward for PII removal in texts

https://github.com/AI-Colleagues/privacy-steward
1•NeuralNotwork•1h ago•0 comments

Show HN: Imagev2.me – Tired of juggling AI image subs, so I built one studio

https://imagev2.me/
1•billy42•1h ago•0 comments
Open in hackernews

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

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