frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Amália- Open Source Large Language Model (LLM) for European Portuguese

https://portugal.gov.pt/gc24/comunicacao/noticias/modelo-de-linguagem-em-grande-escala-para-a-lin...
1•marcogarces•52s ago•0 comments

Another Microsoft Copilot AD injected into 4M GitHub commits

https://twitter.com/jitbit/status/2047990043688464443
1•jitbit•1m ago•1 comments

Martin Galway's music source files from 1980's Commodore 64 games

https://github.com/MartinGalway/C64_music
1•ingve•3m ago•0 comments

With TPU 8, Google Makes GenAI Systems Better, Not Just Bigger

https://www.nextplatform.com/compute/2026/04/24/with-tpu-8-google-makes-genai-systems-much-better...
1•rbanffy•7m ago•0 comments

Happy Horse AI

https://www.happyhorseai.store
1•alanzhan•7m ago•0 comments

South Korean workers learn AI after work, outpacing their companies

https://english.kyodonews.net/articles/-/74668
1•01-_-•8m ago•0 comments

PR: Tim Cook Apple Investors: Drop Dead (2014)

https://nationalcenter.org/ncppr/2014/02/28/tim-cook-to-apple-investors-drop-dead/
1•SanjayMehta•8m ago•0 comments

Intel soars on signs AI boom for CPUs is here

https://www.reuters.com/business/intel-set-record-high-ai-driven-cpu-demand-powers-upbeat-forecas...
1•01-_-•8m ago•0 comments

Cafestol/kahweol concentrations in workplace machine coffee vs. other brewing

https://www.nmcd-journal.com/article/S0939-4753(25)00087-0/fulltext
2•beeforpork•11m ago•0 comments

Spotify: The archive – the tech behind your 2025 wrapped highlights

https://engineering.atspotify.com/2026/3/inside-the-archive-2025-wrapped
1•theorchid•11m ago•0 comments

Serendipity Machines

https://www.shishyko.com/essays/serendipity-machines.html
1•shishy•16m ago•0 comments

Project Deal: Claude-run marketplace experiment

https://www.anthropic.com/features/project-deal
1•EFLKumo•16m ago•0 comments

Show HN: Lazytilt TUI for Tilt.dev

https://github.com/tdi/lazytilt
1•tdi•17m ago•0 comments

Creastor beats stan and all others on fees alone

https://creastor.com/
1•TheFireTiger•19m ago•1 comments

Clawcenter – Minimal Mission Control

1•borjasolerme•19m ago•1 comments

Ask HN: What's a mind-blowing fact you know?

3•chistev•20m ago•0 comments

42 lost pages of the New Testament manuscript discovered

https://phys.org/news/2026-04-lost-pages-testament-manuscript.html
2•pseudolus•20m ago•0 comments

Claude Opus 4.7 has turned into an overzealous query cop, devs complain

https://www.theregister.com/2026/04/23/claude_opus_47_auc_overzealous/
1•freedomben•21m ago•0 comments

You probably wouldn't notice if an AI chatbot slipped ads into its responses

https://theconversation.com/you-probably-wouldnt-notice-if-an-ai-chatbot-slipped-ads-into-its-res...
2•geox•25m ago•0 comments

Possibility of modifying an image to see without glasses? (2010)

https://stackoverflow.com/questions/2563471/is-it-possible-to-modify-an-image-so-someone-with-myo...
5•zeristor•25m ago•1 comments

Meta signs agreement with AWS to power agentic AI on Amazon's Graviton chips

https://www.aboutamazon.com/news/aws/meta-aws-graviton-ai-partnership
1•ksec•28m ago•1 comments

Why LLMs Can't Replace Strategic Insight

https://hbr.org/2026/03/researchers-asked-llms-for-strategic-advice-they-got-trendslop-in-return
1•Antibabelic•31m ago•0 comments

The art of splitting without splitting

https://www.youtube.com/watch?v=jr8KxZvosYI
1•RebootStr•31m ago•0 comments

Rust open-source headless browser for AI agents and web scraping

https://github.com/h4ckf0r0day/obscura
2•guerby•39m ago•0 comments

Gleam gets source maps, 1.16.0

https://gleam.run/news/javascript-source-maps/
2•birdculture•47m ago•0 comments

A fun 5 minute take on AI in business

https://www.youtube.com/watch?v=nDL3Ch7Nz8c
1•lifeisstillgood•48m ago•0 comments

DeFi United calls on the world for $292M rsETH relief

https://defiunited.world/
2•kindkang2024•53m ago•0 comments

I wrote an async LSM storage engine in Rust

https://github.com/mehrdad3301/tiny-lsm
2•mehrdad__3301•55m ago•1 comments

Code Is Free Now. What's Left Is Us

https://p.ocmatos.com/blog/code-is-free-now-whats-left-is-us.html
1•pmatos•56m ago•0 comments

Agentic AI for Hormuz Shock Modelling

https://avkcode.github.io/blog/hormuz-shock.html
1•KyleVlaros•58m ago•0 comments
Open in hackernews

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

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