frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beginning Mathematical Logic: A Study Guide

https://www.logicmatters.net/tyl/
1•perihelions•5m ago•0 comments

Imgui-react-runtime: natively compiled apps with React+JavaScript+Dear ImGui

https://github.com/tmikov/imgui-react-runtime
1•tmikov•18m ago•1 comments

The Anti Code of Conduct

https://github.com/QueueSevenM/AntiCoC
2•q7m•19m ago•0 comments

Show HN: AI Content Rewriter – one-line embeddable widget (open-source)

https://github.com/ankurclub/ai-content-rewriter
1•ruchiclub•23m ago•0 comments

Having Fun with Java Reflection and Modules

https://blog.ptidej.net/having-fun-with-java-reflection-and-modules/
1•yann-gael•26m ago•1 comments

When Enforcing Copyright Starts Breaking the Internet's Plumbing

https://quad9.net/news/blog/when-enforcing-copyright-starts-breaking-the-internets-plumbing/
2•HotGarbage•26m ago•0 comments

A software synthesizer modellled on Yevgeny Murzin's ANS synthesizer

https://github.com/frankenbeans/MZ2SYNTH
2•todsacerdoti•27m ago•0 comments

Feeling Great About the Economy? You Must Own Stocks

https://www.wsj.com/economy/consumers/economy-sentiment-stock-market-investors-2eb1e772
1•zerosizedweasle•27m ago•1 comments

Linux Privilege Escalation reference for all things

https://github.com/ThatTotallyRealMyth/LinuxPrivEsc
1•MeowMeowBinks•28m ago•1 comments

Chinese Takeout Menu [video]

https://www.youtube.com/watch?v=ofkdTv39hyw
2•jumpocelot•30m ago•1 comments

Yuzu Switch Emulator Is Over

https://wololo.net/2024/03/05/yuzu-is-over/
2•tyleo•32m ago•0 comments

Automating Benchmark Design

https://arxiv.org/abs/2510.25039
1•bbzjk7•42m ago•0 comments

Show HN: VibeFarm – Modular composition layer for language models

https://app.vibefarm.ai
1•vibefarm•42m ago•0 comments

Hollywood's Music Biopic Boom: Quantifying the Rise of a Soulless Genre

https://www.statsignificant.com/p/the-rise-of-the-soulless-music-biopic
1•gmays•44m ago•0 comments

Error ABI

https://matklad.github.io/2025/11/09/error-ABI.html
1•todsacerdoti•53m ago•0 comments

Who is 'fedora man'? Dapper French teenager in viral Louvre heist photo unmasked

https://www.theguardian.com/world/2025/nov/10/fedora-man-louvre-photo-pedro-elias-garzon-delvaux
2•wslh•54m ago•0 comments

Why your booze-free drink costs just as much as the alcoholic kind

https://www.cbc.ca/radio/costofliving/booze-free-costly-9.6969478
2•BiraIgnacio•59m ago•0 comments

There is no such thing as a tokenizer-free lunch

https://huggingface.co/blog/catherinearnett/in-defense-of-tokenizers
1•mcyc•1h ago•0 comments

AII vs. ASI: Philosophical and Systemic Implications for AI's Future

https://nooneweone.org/aii_vs_asi_the_complete_manifest.html
1•nettalk83•1h ago•1 comments

"Digital Signals Theory" by Brian McFee

https://brianmcfee.net/dstbook-site/
1•n3t•1h ago•0 comments

Apple's Unreleased OS for CHRP

https://www.youtube.com/watch?v=qbIoaulKYJY
2•geerlingguy•1h ago•1 comments

AMD warns the Intel and Nvidia partnership is a risk to its business

https://www.tomshardware.com/tech-industry/amd-warns-intel-nvidia-partnership-is-a-business-risk-...
2•mgh2•1h ago•0 comments

Tesla is launching a crazy new Rental program with cheap daily rates

https://www.teslarati.com/tesla-launching-crazy-new-rental-program-cheap-daily-rates/
1•jfoster•1h ago•0 comments

Building the Future with Blockly at the Raspberry Pi Foundation

https://opensource.googleblog.com/2025/10/blockly-graduates-from-google.html
2•sunshinesnacks•1h ago•2 comments

Open source has a growing problem with LLM generated issues

https://github.com/opencontainers/runc/issues/4990
5•dropbox_miner•1h ago•2 comments

Democracy, Disagreement, and Authority

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5019510
2•danielam•1h ago•0 comments

Evilginx's creator reckons with the dark side of red-team tools

https://therecord.media/evilginx-kuba-gretzky-interview-click-here-podcast
1•PaulHoule•1h ago•0 comments

A Loophole Lets You Fly This Electric VTOL Without a Pilot's License

https://www.jalopnik.com/2018896/personal-evtol-pivotal-blackfly-no-pilots-license/
2•harambae•1h ago•0 comments

NITT v1.0 – Truth-in-Labeling Standard for Digital Identity

https://github.com/SPARK-NITT/nitt-digital-identity-standard
1•Spark-NITT•1h ago•0 comments

Senate reaches deal on ending shutdown

https://www.politico.com/news/2025/11/09/government-funding-deal-on-track-to-advance-sunday-night...
4•RickJWagner•1h ago•0 comments
Open in hackernews

My Git history was a mess of 'update' and 'fix' – so I made AI clean it up

https://github.com/f/git-rewrite-commits
28•fka•2h ago

Comments

cube00•1h ago
Perfect for [...] improving repository maintainability.

This misses the whole point of using commit messages to record intent.

At least with a bunch of "fixed it" commits I know what I'm in for. This only fools yourself and others into thinking the repository was well maintained.

fka•1h ago
Good point. The purpose of git-rewrite-commits isn’t to "polish" history or rewrite meaning, it’s more of a rescue tool for those chaotic early stages of side projects (like mine) where commits are basically "update again" for months.

In those cases, the "intent" was never recorded in the first place, so the AI is just giving some structure and readability to what’s already lost context.

It’s not about pretending the repo was well maintained, it’s about making messy histories a bit more understandable for humans (and future me) without rewriting the actual code or meaning.

MangoToupe•1h ago
I think that's perfectly fine on a branch. I don't see this being deploying on the main branches of any projects of note.
fka•1h ago
Agreed! I've already added several warnings and disclaimers to the README :) It's really meant to be a "use it once or twice in your lifetime" kind of tool, not something to run on every project. Actually, mostly shouldn't.
cube00•1h ago
> those chaotic early stages of side projects (like mine) where commits are basically "update again" for months.

I don't accept "chaotic early stages of side projects" is a justification for skipping out on writing good quality commit messages.

It wouldn't be acceptable in a well managed company so I don't understand why side projects would get a pass to become sloppy.

It's your side project and you're free to skip writing commit messages, but you need to own that decision and not blame "those chaotic early stages"

I've found taking the time to write good commit messages helps me as I can see what I've tried previously and pull out any older versions if I've found a new direction isn't working for me. It also captures my thought process in case I'm tempted to repeat the sins of the past.

jghn•1h ago
Not all git messages are equal. My $0.02 is that commit messages I write are for other people. Until I officially hand a branch over for other people's consumption, like a PR, if I'm committing the only reason is because I want to access my code on another machine. I'll put whatever junk I please in those commit messages. But then before I open a PR I'll collapse everything down into 1+ commits each with curated content and appropriate messages.
cube00•1h ago
> My $0.02 is that commit messages I write are for other people.

I write them for my future self.

In this context we're talking about a side project which presumably won't have a PR where the commit messages are cleaned up (at least I don't do PRs for my own side projects).

If I'm on a branch then I will write junk commits and clean them up before merging to main if I actually manage to get the feature right.

milkey_mouse•1h ago
> It wouldn't be acceptable in a well managed company so I don't understand why side projects would get a pass to become sloppy.

Because no one's paying you, and you owe your users nothing?

cube00•40m ago
> Because no one's paying you

While I'm certainly getting there, I'm not cynical enough to believe being paid is the only reason to take pride in the quality of your work.

milkey_mouse•11m ago
Ha! I practice good commit hygiene---even when no one's paying me---because it's useful to my future self, but I don't think pride in one's work (especially through importing workplace best practices) is a great reason, at least not a normative one. I think of this like the proverbial carpenter finishing part of a piece no one will see. It's done for the carpenter's sake, and I wouldn't begrudge a carpenter who didn't. And the latter might sell more furniture.
twodave•24m ago
I think it’s a great justification. It’s a side project. It’s supposed to be fun. If you hate writing commit messages, though, of course you can always just commit with the amend option and force push. But in general I think side projects are better the fewer rules they have.
acjohnson55•1h ago
I'm guessing that the intent is deducible from the diff a pretty large percentage of the time.
amake•58m ago
Really? Almost always I feel the diff captures only the how, not the why.
cube00•47m ago
I didn't find it too deducible when OP removed the acknowledgements section after another commenter called them out on the AI slop [1]

docs(readme): remove acknowledgments section [2]

[1]: https://news.ycombinator.com/item?id=45871258

[2]: https://github.com/f/git-rewrite-commits/commit/210ada7ec78f...

nikeee•40m ago
Yeah, "fixed it" doesn't provide any information that might be hallucinated.

Please don't use AI-generated commit messages blindly. Instead, use AI later when reading commit messages. It will have more context (following commits) to see what was actually happening. Having to guess whether a message was hallucinated by an AI won't help. If the message conflicts in its intention with what it isactually doing, you can spot the bug. You won't get that with AI messages.

Also, using AI commit messages will freeze it's capabilities in time, when creating the commit. When using AI at reading commit messages, you'll always get the latest options for analyzing the commits.

Just because it has more text doesn't make it a better message.

pton_xd•1h ago
I think this is the beginning of the end of Github. Who has time to read through all these new vibe-coded projects and tools? The READMEs alone are basically essays. You can always get a chuckle or two if you read long enough though, so there's that...

"

Acknowledgments

- OpenAI for providing the GPT API

- The conventional commits specification

- The git community for powerful version control tools

"

The future of sharing code is probably dead. Everything is write-only now. Vibe it yourself.

bakugo•1h ago
> docs(readme): remove acknowledgments section

Heh. I wonder if the author asked GPT to remove that section from the readme.

fka•1h ago
yes that’s what I’ve done! :)
cube00•1h ago
Interesting that OP removed this [1] from the README and didn't explain why in their commit message or by replying to this comment.

[1]: https://github.com/f/git-rewrite-commits/commit/210ada7ec78f...

fka•1h ago
honestly, I used to like writing README files before the AI (see my other repos), but I don’t like writing them anymore. GPT does it really well, it may have some mistakes but thankfully, you guys highlight them :)
cube00•43m ago
> GPT does it really well, it may have some mistakes but thankfully, you guys highlight them :)

I'm disappointed in your justification that AI slop mistakes are acceptable because "thankfully" you can use other people to find them for you.

ip26•55m ago
Counterpoint: LLMs seem to depend on robust, stable, and easy to use libraries nearly as much as we do. Due to context limitations, vibe-coding a mega-monolithic project in one shot with zero dependencies would be a silly exercise. Therefore, there is still a use for sharing code, even if plenty of it is agentic.
ninetypercent•44m ago
LLMs only "depend" on libraries because library usage is in their training set. Clearly they don't actually need to use libraries.
ip26•6m ago
Using a library keeps the context window smaller than writing it all yourself. I also suspect the whole vibe-coding thing works best when most of the total running code is NOT vibe-coded, and follows carefully defined behavior the fast-and-loose parts can build on top of.

Otherwise, why bother to run your vibe-coded website on nginx? Just have the LLM spit out its own novel web server, its own novel TCP stack, its own novel OS for that matter.

greazy•1h ago
I've never seen a single character github username. I thought there was always a minimum number of characters!
fka•1h ago
I've created my account ~16 years ago :)
JoshTriplett•1h ago
Do you get a lot of misdirected notifications from people who write the wrong `@`?
fka•1h ago
it's like, every day ;_;
gerdesj•1h ago
I used to have a rather short, pithy gmail address back in the day. I binned it for gerdesj@ instead - a username which I use nearly everywhere.

A one char ID on a web app is all very well but is the extra hassle worth it?

fka•1h ago
Nope, just seems cool.
AmbroseBierce•52m ago
Yeah, same rationale that Elon shared for renaming Twitter to X, so for good or evil you have that trillionaire mindset pinned down.
andix•50m ago
I know another single char user, and couldn't believe it either. I think possible options are a-z and 0-9, so only 36 people in the world got that lucky.
UltraSane•1h ago
Git commit histories should be immutable.
Smudge•1h ago
only once pushed or merged to a shared branch.
fka•1h ago
totally agree. in principle, commit histories should be treated as immutable, especially on shared or production branches.

this tool is not meant to rewrite public history or alter real project timelines. it's more of a utility for personal or experimental repos (or branches), the kind of messy ones full of "update again" commits that never had a proper history. that's exactly why I built it.

mathstuf•1h ago
They are. If you rewrite history, you get a different hash. You can do some shenanigans with git-replace, but those are usually for stitching history across gaps (like hooking pre-publish history to public release for internal archaeology at least.

What you actually want is a ban on rewriting tags or accepting branch updates to commits that do not have the current commit as an ancestor. These hooks do exist, but are not on by default (beyond the toilet paper protection of needing --force).

You also have to ban deleting branches because otherwise you just delete and push a new one with the same name. Maybe we should store topic branches in repos under refs/topics/ to distinguish integration branches from development/review branches?

twodave•19m ago
A great many stiff serious people (in my opinion) are writing very discouraging comments here. Don’t let it get you down. The whole point of hacker culture is to break rules. If that’s what you enjoy then to hell with anyone else’s opinion. I think if you’re more worried about commit history being pristine than the experience of writing code and solving problems then you’ve missed the boat that makes the profession meaningful. Similarly, though, if writing lots of high quality commit messages is your idea of a fun weekend, then go do that and don’t listen to me, either.
Spivak•5m ago
Yeah this project is great, it's exactly the kind of tedious work that should be automated by AI. Some weirdos are going to mythologize commit messages and MR descriptions like they aren't our industry's version of pointless paperwork.
h4ny•18m ago
This feels like a step backwards and now people who never bothered to write proper, appropriate commit messages for others to start with can care even less.

I personally don't see what the use case of this is -- you shouldn't even be hired in the first place if you can't even describe the changes you made properly.