frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Brandomica – Check if a brand name is safe to launch on one search

https://www.brandomica.com
1•brandomica•37s ago•0 comments

Django-Bolt: High-Performance Typed API Framework for Django

https://github.com/dj-bolt/django-bolt
1•0x1997•3m ago•0 comments

Show HN: A seedable stream shuffler modeled as a roundabout network (Python)

https://pypi.org/project/roundamix/
1•velocitatem•6m ago•0 comments

The Generative AI Policy Landscape in Open Source

https://redmonk.com/kholterhoff/2026/02/26/generative-ai-policy-landscape-in-open-source/
1•nkko•7m ago•0 comments

Daily maths game taking over Wordle

https://the67numbergame.github.io/
1•_snory•11m ago•0 comments

Israel Is Attacking Iran

5•alsufinow•11m ago•0 comments

Show HN: A 24kb standalone visual JSON editor for non-technical users

https://github.com/celerex/json-editor
1•its-a-new-world•11m ago•1 comments

We Audited the Security of 7 Open-Source AI Agents – Here Is What We Found

https://twitter.com/grithai/status/2027410244352028683
1•edf13•12m ago•0 comments

The Man Who Sold The World

https://www.youtube.com/watch?v=u3MX-rUtS6M&list=RDu3MX-rUtS6M
1•helloplanets•13m ago•0 comments

Yes, and

https://htmx.org/essays/yes-and/
1•todsacerdoti•15m ago•0 comments

The Self-Driving Codebase

https://background-agents.com/
1•vinhnx•15m ago•0 comments

Scrapling: An adaptive web scraping framework that handles everything

https://github.com/D4Vinci/Scrapling
1•Paddyz•22m ago•0 comments

Show HN: RayClaw – AI agent like OpenClaw, standalone or as a Rust crate

https://github.com/rayclaw/rayclaw
1•stevensu•23m ago•0 comments

I'm in Tehran, what do you think will be happen?

2•pajuhaan•26m ago•5 comments

An open-source, C#-based Windows RAT (Remote Access Tool)

https://github.com/iss4cf0ng/DuplexSpyCS
1•iss4cf0ng•28m ago•1 comments

Show HN: How many hours have you spent with Claude Code? (CLI tool)

2•yurukusa•28m ago•0 comments

The most beautiful formula not enough people understand (3blue1brown) [video]

https://www.youtube.com/watch?v=fsLh-NYhOoU
2•vismit2000•28m ago•0 comments

Show HN: AI Moire Pattern Remover – Free tool for screen photos, scans, fabrics

https://moireremoval.com
1•wyattly•29m ago•0 comments

Unsloth Dynamic 2.0 GGUFs

https://unsloth.ai/docs/basics/unsloth-dynamic-2.0-ggufs
4•tosh•31m ago•0 comments

Qwen3.5 GGUF Benchmarks

https://unsloth.ai/docs/models/qwen3.5/gguf-benchmarks
2•tosh•33m ago•0 comments

Israel and US launch strikes on Iran as Trump confirms 'major combat operations'

https://www.reuters.com/world/iran-crisis-live-explosions-tehran-israel-announces-strike-2026-02-28/
3•TechTechTech•35m ago•0 comments

Dan Simmons, author of Hyperion and more books, dies at 77

https://arstechnica.com/culture/2026/02/hyperion-author-dan-simmons-dies-from-stroke-at-77/
1•geuis•36m ago•0 comments

Open source router for personal AI agents

https://manifest.build/docs/introduction
1•stosssik•37m ago•0 comments

Is an event planning platform UAE suitable for weddings and private parties?

1•tonhurt•39m ago•1 comments

Cloudflare radar shows Iran internet traffic drop to near zero

https://radar.cloudflare.com/traffic/ir?dateRange=1d
2•nodesocket•41m ago•0 comments

Ask HN: Why are some websites locking or using the audio device on Windows?

1•ezconnect•44m ago•0 comments

Iran agreed zero enriched uranium, and israel immediately bombs Tehran

https://twitter.com/muhammadshehad2/status/2027645609621033376
4•proshno•49m ago•1 comments

Leak confirms GrapheneOS and Motorola partnership

https://piunikaweb.com/2026/02/27/leak-confirms-grapheneos-motorola-partnership-for-non-pixel-har...
3•Cider9986•50m ago•0 comments

You might be falling behind without realizing it

1•hoangnnguyen•54m ago•1 comments

Show HN: AI Tutorial Series – Building Neural Networks with Python

https://peertube.cif.su/watari/videos/watch/123456
1•watari_ai_tools•56m ago•0 comments
Open in hackernews

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

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