frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sell Your AI Skills?

https://capabase.ai/learn/sell-your-ai-skills
1•trebuh•25s ago•0 comments

Kimi K3's Design Secret May Be in Its Thinking Traces

https://notes.designarena.ai/kimi-k3s-design-secret-may-be-in-its-thinking-traces/
1•gmays•1m ago•0 comments

Show HN: Generate, Version and Host your resumé all via GitHub

https://github.com/sadigaxund/git-resume
1•sakhund•1m ago•0 comments

Largest battery storage in Germany set for partial commissioning

https://www.heise.de/en/news/Largest-battery-storage-in-Germany-set-for-partial-commissioning-113...
2•doener•4m ago•0 comments

Babe32 – Barely Adequate Browser ESP32

https://github.com/alunmorris/babe32-ESP32-web-browser-for-cheap-black-display
1•iamnothere•9m ago•1 comments

If you need plausible deniability, avoid devices that use wear-leveling

https://twitter.com/GrapheneOS/status/2082576645215412651
1•Cider9986•11m ago•1 comments

Meta shares drop on falling profits and weak sales forecast

https://www.ft.com/content/06d941ed-8136-46a4-a2ec-44bea1b35c3b
2•petethomas•11m ago•0 comments

The Pedagogy Behind the Studio

https://gail.wharton.upenn.edu/gen-ai-studio/the-generative-ai-studio-pedagogy/
2•ray__•13m ago•0 comments

The bond market to Kevin Warsh: What are you doing about inflation?

https://www.cnn.com/2026/07/29/business/bond-yields-fed-warsh
2•mapping365•15m ago•1 comments

Create multi-model coding workflows with Maestro

https://maestro-build.vercel.app/
2•Entropnt•17m ago•0 comments

US DOE to Convert Uranium Enrichment Facility into Data Center Campus

https://www.energy.gov/articles/energy-department-announces-partnership-expand-reliable-affordabl...
4•leecoursey•17m ago•3 comments

C++ float-to-int conversion can be undefined behavior

https://kttnr.net/blog/cpp-float-to-int-conversion-undefined-behavior/
3•Quentak•17m ago•0 comments

My Brain-Breaking Trick to Quit Using Facebook

https://tedium.co/2026/07/27/facebook-home-row-keyboard-trick/
2•latexr•23m ago•0 comments

TrophyLab – Shared space for enemy weapons research

https://trophylab.mod.gov.ua/en/
3•sebastian_z•30m ago•0 comments

How to get more coding productivity with LLMs

3•DaveParkCity•33m ago•0 comments

Gangstalking = "breaking hidden rules" = "Ignorance of the law is no excuse."

2•VitaSetLLC•34m ago•0 comments

LLMs and Xfwl4

https://www.spurint.org/journal/2026/07/llms-and-xfwl4
2•Gualdrapo•37m ago•0 comments

FCC: Ban on Foreign-Made Robots Includes Robot Vacuums

https://www.pcmag.com/news/fcc-ban-on-foreign-made-robots-includes-robot-vacuums
11•dataneedscoffee•38m ago•0 comments

Remove watermarks and free pdf tools

https://www.removewatermarks.net/
2•adgine•38m ago•0 comments

Engineering a plant-derived nanofoundry to power mammalian cells

https://www.cell.com/cell/abstract/S0092-8674(26)00518-0
2•maxall4•39m ago•0 comments

From Academic Research to a Frontier LLM: A Case Study in DPO [video]

https://www.youtube.com/watch?v=rhA7pLVt4E0
2•erichocean•42m ago•0 comments

Companies' Handling of Users Privacy Rights Spurs States' Probe (2025)

https://news.bloomberglaw.com/privacy-and-data-security/companies-handling-of-users-privacy-right...
3•1vuio0pswjnm7•42m ago•0 comments

The Productivity Mirage

https://frantic.im/mirage/
6•msephton•43m ago•0 comments

We Can Spend $50B a Year Effectively

https://www.cgdev.org/blog/we-can-spend-50-billion-year-effectively
2•alphabetatango•44m ago•0 comments

Lyricsfile is a YAML-based format for lyrics

https://lrclib.net/lyricsfile
2•coolcoder613•45m ago•0 comments

Sentinel – opens a PR to fix Stripe breaking changes before they land

https://github.com/rtsdque/sentinel
2•rtsdque•45m ago•0 comments

We're giving 100k academic researchers free access to our frontier models [video]

https://www.youtube.com/watch?v=MLehRytu9Zo
2•bryan0•47m ago•0 comments

Software Applications Inc

https://software.inc
2•audreyfei•51m ago•0 comments

OpenDerm – Open-source robotic 3D skin imaging

https://openderm.github.io/
3•avyfain•52m ago•0 comments

What's Going On – R/Anthropic

https://www.reddit.com/r/Anthropic/comments/1v8t9v0/whats_going_on/
6•obilgic•52m 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.