frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Nano Banana Pro and 2.0 AI

https://www.nanobanana-pro.app
1•timi09•2m ago•0 comments

What OpenAI Did When ChatGPT Users Lost Touch with Reality: DAU Optimization

https://www.nytimes.com/2025/11/23/technology/openai-chatgpt-users-risks.html
1•nonprofiteer•4m ago•0 comments

AI Investors Want More Making It and Less Faking It

https://www.wsj.com/finance/stocks/ai-investors-want-more-making-it-and-less-faking-it-321d8202
2•fortran77•9m ago•1 comments

Americans Are Holding onto Devices Longer

https://www.cnbc.com/2025/11/23/how-device-hoarding-by-americans-is-costing-economy.html
2•jamesgill•11m ago•0 comments

Too Computerised? Too Cold?: 1999 A.D. (1967)

https://publicdomainreview.org/collection/1999-ad/
1•Hooke•15m ago•0 comments

The Feds Want to Make It Illegal to Even Possess an Anarchist Zine

https://theintercept.com/2025/11/23/prairieland-ice-antifa-zines-criminalize-protest-journalism/
2•pabs3•16m ago•0 comments

(2) Inside the Shenzhen Robot Factory That's Reinventing CNC [video]

https://www.youtube.com/watch?v=NZs8PP6lG9k
2•xbmcuser•23m ago•0 comments

Counterfactual World Models via Digital Twin-Conditioned Video Diffusion

https://arxiv.org/abs/2511.17481
1•badmonster•23m ago•0 comments

Pg_AI_query – AI-powered SQL generation and query analysis for PostgreSQL

https://www.postgresql.org/about/news/pg_ai_query-ai-powered-sql-generation-query-analysis-for-po...
2•ramesh1994•25m ago•0 comments

Show HN: I built a free kids coloring site with AI

https://happykidscoloring.com/en
1•daimajia•26m ago•0 comments

IACR 2025 election cannot be verified due to lost decryption key

https://www.iacr.org/news/item/27138
1•T3OU-736•27m ago•0 comments

A Batesian Mimicry Explanation of Business Cycles (2010)

http://falkenblog.blogspot.com/2010/07/batesian-mimicry-explanation-of.html
1•Ariarule•30m ago•0 comments

Test Your Ability to Spot Google Gemini's Nano Banana Pro

https://realorai.dev/
1•ducktective•32m ago•0 comments

Ask HN: How to get over the "Work –> Appreciation" cycle

1•Nischalj10•32m ago•0 comments

Java 25: The 'No-Boilerplate' Era Begins

https://amritpandey.io/java-25-the-no-boilerplate-era-begins/
2•MichaelNolan•38m ago•0 comments

The loneliness fix: I wanted to find new friends in my 30s

https://www.theguardian.com/lifeandstyle/2025/nov/23/the-loneliness-fix-i-wanted-to-find-new-frie...
2•mrroryflint•41m ago•0 comments

Cancer

https://jacobbrazeal.wordpress.com/2025/11/24/cancer/
1•tibbar•43m ago•0 comments

Lambda Calculus – Animated Beta Reduction of Lambda Diagrams

https://cruzgodar.com/applets/lambda-calculus
1•perryprog•45m ago•0 comments

Show HN: TikTok-Meets-AI-Game-Maker Platform

https://gamespark.app/
1•gamesparkapp•45m ago•0 comments

Dwarf Studios, Japan's King of Stop Motion

https://animationobsessive.substack.com/p/inside-dwarf-studios-japans-king
1•vinhnx•51m ago•0 comments

Snow Crystal Habits

https://www.eoas.ubc.ca/courses/atsc113/snow/met_concepts/07-met_concepts/07kl-snow-crystal-habits/
2•gsf_emergency_6•1h ago•0 comments

Developing a Giga pixel linear scanning format camera [video]

https://youtu.be/KSvjJGbFCws?si=Q1ejGM7twdU1gzUY
1•kposehn•1h ago•0 comments

Show HN: ShapeBridge – AI-Based 3D Model Processing and Analysis Framework

https://github.com/rajgandhi1/ShapeBridge
1•rajgandhi95•1h ago•0 comments

Long lost Moon-forming planet formed in the inner Solar System

https://www.euronews.com/next/2025/11/23/long-lost-moon-forming-planet-formed-in-the-inner-solar-...
3•jnord•1h ago•0 comments

Build desktop applications using Go and Web Technologies

https://github.com/wailsapp/wails
1•selvan•1h ago•0 comments

Why concerns about an AI bubble are bigger

https://www.npr.org/2025/11/23/nx-s1-5615410/ai-bubble-nvidia-openai-revenue-bust-data-centers
7•zerosizedweasle•1h ago•1 comments

Show HN: I wrote a site to aggregate Anthropic related news

https://anthropicnews.com/
3•cebert•1h ago•6 comments

Ask HN: Anyone Know Anyone at Expedia?

2•OhMeadhbh•1h ago•2 comments

Insurers retreat from AI cover as risk of multibillion-dollar claims mounts

https://www.ft.com/content/abfe9741-f438-4ed6-a673-075ec177dc62
23•gwintrob•1h ago•1 comments

Efficient solar cooking that stores heat in sand

https://www.sciencedirect.com/science/article/pii/S266711312500035X
1•gsf_emergency_6•1h ago•0 comments
Open in hackernews

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

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