frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Coq: The World's Best Macro Assembler? [pdf]

https://nickbenton.name/coqasm.pdf
1•addaon•4m ago•0 comments

Generalized Worley Noise

https://ianthehenry.com/posts/generalized-worley-noise/
1•todsacerdoti•5m ago•0 comments

Indonesia's Jakarta now the world's largest city, Tokyo falls to third: UN

https://www.aljazeera.com/news/2025/11/26/indonesias-jakarta-now-the-worlds-largest-city-tokyo-fa...
2•thunderbong•10m ago•0 comments

From Frustration to Foundation: Story Behind Building ADirectory

https://www.indiehackers.com/post/from-frustration-to-foundation-the-indie-hacker-story-behind-bu...
1•abdurbd•15m ago•0 comments

LLMs can invent their own compression

https://www.rajan.sh/llm-compression
1•dsr12•15m ago•0 comments

Review of Deep Seek OCR

https://lukeatkins.me/90_30_Club/posts/deepseekocr/
4•lukeatkins•19m ago•0 comments

What to know about a recent Mixpanel security incident

https://openai.com/index/mixpanel-incident
4•meetpateltech•21m ago•2 comments

Show HN: NeurIPS 2025 Explorer – 5000+ papers, 20+ interactive explainers

https://neurips2025.pages.dev/
1•imranq•23m ago•1 comments

EU lawmakers back plan for social media age rules

https://www.dw.com/en/eu-lawmakers-back-plan-for-social-media-age-rules/a-74909572
3•walterbell•24m ago•1 comments

Will Anyone Read This?

https://sidecar.clutch.engineering/news/2025/11/26/will-anyone-read-this/
3•featherless•31m ago•0 comments

Show HN: Flux2.cloud – Free, unlimited Flux.2 AI image generator (no account)

https://flux2.cloud
1•console-log•36m ago•0 comments

The 1-Click Localhost Cloud

https://pinokio.co/
2•vyrotek•38m ago•1 comments

Bayesian Neural Networks (2018) [pdf]

https://arxiv.org/abs/1801.07710
1•swatson741•39m ago•0 comments

Show HN: MakeSkill – The Intelligent Skill Builder for Claude

https://makeskill.cc
2•thanhdongnguyen•40m ago•0 comments

Show HN: JW Tool Box – Free, privacy-first web tools (PDF, Image, Converters)

https://www.jwtoolbox.com/
1•kurokosama•40m ago•1 comments

Did the Giant Heads of Easter Island Once Walk?

https://www.nytimes.com/2025/11/26/science/archaeology-easter-island-rapa-nui.html
4•Stratoscope•49m ago•3 comments

Americans are holding onto devices longer than ever and it's costing the economy

https://www.cnbc.com/2025/11/23/how-device-hoarding-by-americans-is-costing-economy.html
3•cardamomo•49m ago•6 comments

Ask HN: Do you use your phone as hotel/free WiFi condom for laptops?

1•ebfe1•54m ago•2 comments

Apple projected to beat Samsung in smartphone shipments first time since 2011

https://www.foxbusiness.com/markets/apple-projected-beat-samsung-smartphone-shipments-first-time-...
1•andsoitis•55m ago•0 comments

A neuropsychology of political orientation: ideology in patients w lesions

https://pmc.ncbi.nlm.nih.gov/articles/PMC7935085/
1•DrierCycle•1h ago•7 comments

Why Use React?

https://adactio.com/journal/22265
3•nnx•1h ago•3 comments

Show HN: Non-Custodial Cryptocurrency Payment Gateway

https://coinpayportal.com
2•cranberryturkey•1h ago•2 comments

The Racist, AI-Generated Future of Entertainment

https://www.theatlantic.com/culture/2025/11/will-stancil-show-ai/685058/
5•jdkee•1h ago•6 comments

Tim Sweeney thinks Steam should stop labelling games as being made with AI

https://www.pcgamer.com/software/ai/epic-boss-tim-sweeney-thinks-stores-like-steam-should-stop-la...
2•evo_9•1h ago•2 comments

CoinTracker Third-party security incident (Mixpanel)

4•dotmanish•1h ago•1 comments

Can Management Be Outsourced?

1•ymanagers•1h ago•0 comments

Google Hotels API

https://github.com/johnisanerd/Apify-Google-Hotels-API
1•johncole•1h ago•0 comments

Show HN: I built a D2C supply chain for my village's Makhana farmers using Bolt

https://earthborn-barsoi.vercel.app/
2•Vikkyv•1h ago•3 comments

Cryo-electron microscopy shows how statins harm muscles

https://medicalxpress.com/news/2025-11-statins-muscles.html
3•walterbell•1h ago•0 comments

People as Foundation: The Productive Capacity Theory of Money – Part 1

https://danieltan.weblog.lol/2025/11/people-as-foundation-the-productive-capacity-theory-of-money...
1•danieltanfh95•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•7mo 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.