frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: ChartsPrintables – printable conversion charts and reference tables

https://chartsprintables.com
1•robot1996•2m ago•0 comments

Harvey AI started with a Reddit thread. Now it's worth $11B

https://freemalta.com/hub/library/they-named-a-11-billion-company-after-harvey-specter-then-they-...
1•ilhaniremyuce•7m ago•0 comments

The New 'Bootstrap' to the American Dream: Deep Cleaning Cars

https://www.wsj.com/business/entrepreneurship/why-some-workers-are-trading-desks-for-car-detailin...
1•JumpCrisscross•9m ago•0 comments

Europe's new climate in seven charts

https://www.bbc.com/news/articles/c8e2j0j87reo
2•saikatsg•10m ago•0 comments

Scientist who cleaned space toilet on work now leading Mars exploration

https://www.bbc.com/news/articles/cz758x04g83o
3•saikatsg•11m ago•0 comments

U.S. Policies Unintentionally Accelerated China's Open AI Ecosystems

https://arxiv.org/abs/2606.15999
2•hunglee2•20m ago•0 comments

I wanted to be Anthony Bourdain–until I met him

https://cailey.substack.com/p/i-wanted-to-be-anthony-bourdainuntil
2•FinnLobsien•20m ago•1 comments

Comparing Investment Options with Charts – The Basics

https://finbodhi.com/docs/blog/compare-charts/
3•ciju•20m ago•0 comments

What Is Linux Swap, and Should You Enable It?

https://blog.lyc8503.net/post/21-swap-setup/
1•uneven9434•24m ago•0 comments

Update: ZerfAI generated 60 Micro SaaS ideas – 14 scored 8/10 or higher

https://www.zerfai.com/
1•awsaqh•31m ago•0 comments

Ask HN: Good fast IDE for reading and navigating code in multiple languages

1•akkad33•33m ago•0 comments

Show HN: Self-healing review gate and knowledge base for Claude Code (Beta)

https://verity.md
2•claudiacsf•34m ago•0 comments

"Gauging your humanity This may take some seconds"

https://github.com/unt-libraries/django-altcha-middleware
1•joebig•36m ago•0 comments

"Stop Moralizing AirCon": How Institutions Shift Responsibility onto Individuals

https://jdjayne.substack.com/p/moralizing
1•theanonymousone•39m ago•0 comments

Google: Earthquake early warning system did not work properly in Turkey

https://www.heise.de/en/news/Google-Earthquake-early-warning-system-did-not-work-properly-in-Turk...
2•teleforce•41m ago•0 comments

9 Months of Agentic Development

https://www.benko.app/blog/9-months-of-agentic-development
1•dools•41m ago•0 comments

The 18-Months Deadline

https://adlrocha.substack.com/p/adlrocha-the-18-months-deadline
3•adlrocha•51m ago•1 comments

antiware-JS

https://www.npmjs.com/package/antiware-js?activeTab=readme
1•mohamed-medhat•54m ago•1 comments

Lisper.io

https://lisper.io.
1•rifflax•56m ago•1 comments

Learning Multi-Agent Coordination via Sheaf-ADMM

https://pub.sakana.ai/sheaf-admm/
1•hardmaru•1h ago•0 comments

LongCat-2.0

2•rika321•1h ago•0 comments

Show HN: A live badge that proves your SaaS runs on EU infrastructure

https://euroseal.pages.dev
1•robpus•1h ago•0 comments

Job descriptions got longer than CVS receipts

https://www.businessinsider.com/job-descriptions-longer-than-cvs-receipts-ai-2026-7
2•ilreb•1h ago•0 comments

Intuitive Quantum Electrodynamics

https://forwardscattering.org/page/Intuitive%20Quantum%20Electrodynamics
1•Ono-Sendai•1h ago•0 comments

Show HN: MM to Inches converter with fractional inch references

https://mm-to-inches.net
1•robot1996•1h ago•0 comments

Concentration of power in AI is a risk, by Andy Konwinski

https://xcancel.com/i/article/2072830533739192560
3•alecco•1h ago•0 comments

The "Collosophone"

https://pressforsound.com/tag/collosophone/
1•Eridanus2•1h ago•0 comments

AWS Lambda MicroVMs: The Compute Nobody Asked For?

https://www.confessionsofadataguy.com/aws-lambda-microvms-the-compute-nobody-asked-for/
1•nosky•1h ago•0 comments

8 Comprehensive WebSite Health Check Ups

https://urlwatch.io/
2•mssblogs•1h ago•0 comments

Claude Design System Prompt

https://github.com/Trystan-SA/claude-design-system-prompt
2•handfuloflight•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.