frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Explanation of everything you can see in htop/top on Linux

https://peteris.rocks/blog/htop/
1•theanonymousone•1m ago•0 comments

TabFM: Zero-shot tabular foundation model from Google Research

https://huggingface.co/google/tabfm-1.0.0-pytorch
1•theanonymousone•2m ago•0 comments

The Common Lisp Cookbook – LispWorks Review

https://lispcookbook.github.io/cl-cookbook/lispworks.html
1•AlexeyBrin•4m ago•0 comments

The Most Iconic American Artwork Is the Hardest to See

https://www.nytimes.com/interactive/2026/07/02/arts/design/statue-of-liberty-history-france-us.html
1•jsenn•4m ago•0 comments

Show HN: Sandbox-proxy – A forward proxy that injects credentials to sandboxes

https://github.com/yagop/sandbox
1•yagop•5m ago•0 comments

Why AI Will Never Achieve Consciousness

https://roburie.substack.com/p/why-ai-doesnt-think-cannot-reason
1•megamike•5m ago•0 comments

Chip Industry Urges US to Avoid Moves That Distort Memory Market

https://www.bloomberg.com/news/articles/2026-07-02/chip-industry-urges-us-to-avoid-moves-that-dis...
1•giuliomagnifico•6m ago•0 comments

Tokdash – track tokens, quotas, resets and AI usage locally

https://github.com/JingbiaoMei/Tokdash
1•howardme1•9m ago•0 comments

Organization as a Graph [video]

https://www.wearedevelopers.com/en/videos/2051/your-organization-as-a-graph
1•dunyakirkali•10m ago•0 comments

Critical Evidence from Early Evolution of House Dust Mites [pdf]

https://academic.oup.com/sysbio/article-abstract/62/3/411/1652447?redirectedFrom=fulltext
1•thunderbong•11m ago•0 comments

It's not me, it's the compiler

https://parsa.wtf/cast/
3•jonathandeamer•11m ago•0 comments

Olive – Lisp VSCode Extension (Alternative to Alive)

https://github.com/kchanqvq/olive
1•AlexeyBrin•15m ago•0 comments

Meta's Inevitable Cloud

https://spyglass.org/meta-cloud/
1•RickJWagner•16m ago•0 comments

Notes for June 28 – July 4

https://taoofmac.com/space/notes/2026/07/04/1230
1•rcarmo•22m ago•0 comments

It's Hard to Eval Is a Product Smell

https://hamel.dev/blog/posts/eval-smell/
2•_pdp_•22m ago•0 comments

"How do you plan to dismantle the servers of your rival AIs?" [video]

https://www.youtube.com/watch?v=aicfLYrRuUw
1•deadprogram•22m ago•0 comments

Show HN: A free, no-ad, no-account, no-server iOS calorie budgeting/diet app

https://apps.apple.com/gb/app/budgie-diet/id6670401868
3•PurestGuava•22m ago•0 comments

The Reports of Jim Carrey's Death Are a Failure Mode

https://tane.dev/2026/07/the-reports-of-jim-carreys-death-are-a-failure-mode/
1•taubek•23m ago•0 comments

Did the founders of the United States intend to create a Christian nation?

https://theconversation.com/the-us-founders-other-revolutionary-choice-separating-religion-and-go...
1•chmaynard•24m ago•0 comments

Startup Targets Datacenters with 3D-Printed Nuclear Reactor Module

https://www.theregister.com/systems/2026/07/03/startup-targets-datacenters-with-3d-printed-nuclea...
1•_pdp_•26m ago•0 comments

Polymarket-SDK-cpp – C++23 SDK for Polymarket prediction markets

https://github.com/Wammero/polymarket-sdk-cpp
1•Wammerq•29m ago•0 comments

Nexus System Manager

https://github.com/rilindbytyqi300/NexusSystemManager
1•rilindbytyqi1•30m ago•0 comments

Developer Verification – LineageOS

https://lineageos.org/Developer-Verification/
1•kevincox•32m ago•0 comments

Hot weather and low sunshine linked to mental health-related healthcare use

https://www.uea.ac.uk/about/news/article/everyday-weather-can-increase-demand-for-mental-health-s...
1•giuliomagnifico•40m ago•0 comments

Is a 'Frictionless' Society a Trap?

https://www.nytimes.com/2026/07/02/magazine/frictionless-productivity-marketing-tech.html
1•1vuio0pswjnm7•40m ago•0 comments

Free SaaS Landing Page Template – React, Vue, HTML for Claude Code and Cursor

https://github.com/hannah-wright/saas-landing-page-template
1•DreyGreatness•41m ago•0 comments

Microsoft Disclosure Provides Rare Glimpse of Tax Haven Tactics

https://www.nytimes.com/2026/07/03/technology/microsoft-europe-disclosure-tax-havens.html
2•1vuio0pswjnm7•43m ago•0 comments

Show HN: ProxyBoy. A Windows HTTP/HTTPS debugging proxy with an AI assistant

https://github.com/pjperez/proxyboy
1•InfraScaler•44m ago•0 comments

Show HN: FluxDown – Free, open-source IDM alternative in Rust and Flutter

https://github.com/zerx-lab/FluxDown
1•zero-lab•46m ago•0 comments

Running Engineering Teams Series

https://yusufaytas.com/series/running-engineering-teams
4•yusufaytas•46m ago•1 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.