frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Exploring Thompson Sampling for model selection

https://sourcepilot.co/blog/2025/11/22/how-thompson-sampling-works
1•jucasoliveira•31s ago•0 comments

March of Intellect

https://en.wikipedia.org/wiki/March_of_Intellect
1•zeristor•8m ago•0 comments

SQLite Release 3.51.0

https://sqlite.org/releaselog/3_51_0.html
1•tamnd•10m ago•0 comments

Rep+: Fast AI-Powered HTTP Repeater in Chrome

https://github.com/bscript/rep
1•bscript•11m ago•1 comments

Peekaping – self-hosted uptime monitoring, in Go

https://peekaping.com/
2•hectormalot•11m ago•0 comments

A Tour of Aquarius Reef Base (2015) [video]

https://www.youtube.com/watch?v=v3qqO8yQswg
1•jstanley•13m ago•0 comments

OpenAI's Changes Sent Some Users Spiraling

https://www.nytimes.com/video/technology/100000010535987/how-openais-changes-sent-some-users-spir...
1•fleahunter•14m ago•0 comments

Show HN: Whistle – Offline, private voice transcription using whisper

https://play.google.com/store/apps/details?id=com.blazingbanana.whistle&hl=en_US
2•blazingbanana•14m ago•0 comments

Menghubungi CS Indodax

1•kamuapatme•15m ago•0 comments

Experimenting with Robin Hood Hashing

https://twdev.blog/2025/11/robin_hood/
1•signa11•15m ago•0 comments

Tips Menghubungi CS Ajaib

1•kamuapatme•16m ago•0 comments

Introducing The Flux Keyboard

https://fluxkeyboard.com/?v=0b3b97fa6688
1•signa11•16m ago•0 comments

RavynOS: Open-Source macOS with Same BSD Pedigree

https://hackaday.com/2025/11/22/ravynos-open-source-macos-with-same-bsd-pedigree/
2•adamretter•20m ago•0 comments

The Rise of Agentic AI in 2025: Autonomous Agents

https://paidforarticles.in/top-news-the-rise-of-agentic-ai-in-2025-why-autonomous-agents-are-fina...
1•iamtech•23m ago•0 comments

Tell HN: MS's integration of OneDrive into Windows is a total mess

1•retube•26m ago•0 comments

Customer Service Garuda Indonesia

1•GardaTerdepan•27m ago•11 comments

The carbon cost of reality TV shows like The Traitors

https://theconversation.com/the-hidden-carbon-cost-of-reality-tv-shows-like-the-traitors-269675
1•zeristor•28m ago•0 comments

Devs (TV Series)

https://en.wikipedia.org/wiki/Devs_(TV_series)
2•nikolay•32m ago•1 comments

A Camera of Miroslav Tichý

https://artblart.com/tag/a-camera-of-miroslav-tichy/
1•Kaibeezy•43m ago•0 comments

Picky – A Judgemental Trashcan Robot

https://www.creativeapplications.net/member/picky-a-judgemental-trashcan-robot/
1•bryanrasmussen•46m ago•1 comments

What a chatbot thinks about Meta (reader discretion advised)

https://viewreplyy.com/share/galactico/4w1b485
1•galactic_atom•58m ago•0 comments

LLM Council: query multiple LLMs, and asks them to rank each other's work

https://github.com/karpathy/llm-council
1•maxloh•59m ago•0 comments

Ask HN: What browser do you use?

1•whatever3•1h ago•0 comments

Abstracting cloud infra software from vendor hardware with K8s

https://runos.com/blog/why-we-built-runos.html
1•didierbreedt•1h ago•0 comments

20x Faster TRL Fine-Tuning with RapidFire AI

https://huggingface.co/blog/rapidfireai
1•ibobev•1h ago•0 comments

NaTex: Seamless Texture Generation as Latent Color Diffusion

https://natex-ldm.github.io/
2•GaggiX•1h ago•0 comments

Gemini 3 Just Made Larry Page World's Third Richest Man

https://vechron.com/2025/11/larry-page-overtakes-jeff-bezos-to-become-third-richest/
21•GeorgeWoff25•1h ago•2 comments

GitHub have added social logins

https://github.com/signup
2•aiiizzz•1h ago•3 comments

Julia for Microcontrollers and Embedded Environments

https://joel.id/julia-my-love/
2•wagerlabs•1h ago•1 comments

Lex Fridman Podcast: Truth, Science, and Censorship in a Pandemic (2021) [video]

https://www.youtube.com/watch?v=TG6BuSjwP4o
1•g42gregory•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.