frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SyncBank App

https://syncbank.app/
1•samdsgn•52s ago•0 comments

Rubik Solver

https://jeffhuber.github.io/rubiks-solver/
1•tzury•5m ago•1 comments

Cursor Camp from Neal.fun

https://neal.fun/cursor-camp/
1•vidzert•8m ago•0 comments

Ask HN: International Student Career Advice?

1•AriasLcr•8m ago•0 comments

Building apps for single purpose, always on iPhones 6

https://twitter.com/angadsg/status/2048499923533148593
1•angadsg•10m ago•0 comments

Show HN: CFP Radar – Find the conferences your talk belongs at

https://www.cfpradar.dev/
1•gemanor•12m ago•0 comments

Oracle Corporation Emerges as AI Shot-Caller

http://tommyatomsjr.blogspot.com/2026/04/oracle-corporation-transforms-into-ai.html
1•paizono•15m ago•0 comments

Show HN: Open-source Semrush alternative just passed 1.6k stars

https://openseo.so/
1•bsenescu•15m ago•0 comments

The Duolingo taxi test–could being rude to the driver cost you your dream job?

https://phys.org/news/2026-04-duolingo-taxi-rude-driver-job.html
1•i7l•21m ago•0 comments

Anchor – Lisp→C compiler, no GC, hygienic macros, Chez Scheme at compile time

https://github.com/allenj12/anchor/tree/main
1•AnchorLang•21m ago•1 comments

Show HN: Lightport – AI gateway that makes LLM providers OpenAI-compatible

https://github.com/glama-ai/lightport
1•smokybay•22m ago•0 comments

L123: A Lotus 1-2-3–style terminal spreadsheet with modern Excel compatibility

https://github.com/duane1024/l123
2•duane1024•23m ago•0 comments

Finding a Therapist in Germany, Automation

https://github.com/sasanamari/busy_therapists
2•alikhoramshahi•23m ago•1 comments

Show HN: Boredroom, An app for men who stare at walls

https://apps.apple.com/us/app/bored-room/id6758528370
1•ZeidJ•24m ago•0 comments

Lovable: We're Currently Experiencing Issues

https://status.lovable.dev/
1•doener•26m ago•0 comments

Blockify – Build Shopify sections visually, export clean native Liquid you own

https://www.blockifybuilder.com/
1•kibbyd1985•27m ago•0 comments

Clio MCP Open-source Claude connector for law firms

https://github.com/oktopeak/clio-mcp
1•piterjov•30m ago•0 comments

Y Combinator – The French Documentary (With English Subtitles) [video]

https://www.youtube.com/watch?v=w-zS3U40Juo
1•rmason•30m ago•1 comments

I built an AI travel agent that books real hotels

https://medium.com/@sorin_14830/how-i-built-an-ai-travel-startup-that-actually-books-real-hotel-1...
2•sorinmihailescu•32m ago•0 comments

AI can replace your job. Here's what it can't replace

https://www.cjchilvers.com/blog/ai-can-replace-your-job-heres-what-it-cant-replace/
3•evo_9•34m ago•0 comments

Local Figma Port – export scoped design context to MCP for AI coding agents

https://github.com/echo-ae/local_figma_port
1•echo-ae•37m ago•0 comments

To buy this Bay Area home, you'll need Anthropic equity

https://techcrunch.com/2026/04/26/to-buy-this-bay-area-home-youll-need-anthropic-equity/
1•momentmaker•38m ago•0 comments

OpenAI is building a phone that would make apps obsolete

https://thenextweb.com/news/openai-qualcomm-ai-phone-agents-replace-apps
4•skeledrew•38m ago•2 comments

Sebastian Sawe breaks iconic sub-two-hour marathon barrier

https://www.bbc.com/sport/athletics/articles/cp383n09030o
13•avicado0o•39m ago•1 comments

Tokenmaxxing Isn't an AI Strategy

https://www.theregister.com/2026/04/26/ai_price_tag/
1•saikatsg•39m ago•0 comments

Show HN: Rocketship, AI app builder that comes with an AI sales team

https://deployrocketship.com
1•CarlosJeer•40m ago•2 comments

Show HN: Pdfnative-MCP – Model Context Protocol server for the pdfnative engine

https://www.npmjs.com/package/pdfnative-mcp
1•nizoka•40m ago•0 comments

U.S. companies back Sam Altman's World ID even as much of the world pushes back

https://restofworld.org/2026/sam-altman-worldcoin-zoom-tinder-partnerships/
18•kelnos•40m ago•4 comments

Bridging West Papua Through Dispossession

https://failedarchitecture.com/bridging-west-papua-through-dispossession/
1•Thevet•41m ago•0 comments

How Much of Substack Is AI?

https://www.usermag.co/p/how-much-of-substack-is-actually-ai-pangram-analysis-substack-bestsellers
2•laurex•41m 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•12mo 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.