frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Torch.ts – building PyTorch in TypeScript from scratch to learn

https://github.com/13point5/torch.ts
1•13point5•5m ago•1 comments

Sophia: A Persistent Agent Framework of Artificial Life

https://arxiv.org/abs/2512.18202
1•mpweiher•7m ago•0 comments

Brew by Weight? Brew by AI – Archestra Blog – Archestra

https://archestra.ai/blog/brew-by-ai
1•scoring-wade-6c•18m ago•0 comments

How Much Does a Horse Cost?

https://horseguidehub.com/how-much-does-a-horse-cost
1•onSmallMessage•19m ago•2 comments

What can I do if ChatGPT gets increasingly laggy after a long conversation?

1•ZHUDAN509•24m ago•2 comments

100k-Watt Iron Beam laser becomes first to be operationally deployed

https://www.tomshardware.com/tech-industry/100kw-iron-beam-laser-becomes-worlds-first-drone-defen...
5•tomerbd•24m ago•0 comments

Show HN: Proving 67M ZK rows on a laptop in 28s (Winterfell OOMs)

1•y00zzeek•25m ago•1 comments

Show HN: GPU-Zombie-Hunter – Find GPU Processes Wasting $2,880/Month

https://github.com/ecl-runtime/gpu-zombie-hunter
1•gpuzombiehunter•34m ago•0 comments

Show HN: How SQL Parsers Work

https://nishchith.com/sql-parsers/
1•inishchith•38m ago•0 comments

A Simple Reason Snow Globe Glass Cups Feel More "Special" Than Regular Ones

1•tumblers•42m ago•0 comments

AI as an Attributable Representation Channel: An AI-Mediated Governance Failure

https://zenodo.org/records/18105273
1•businessmate•43m ago•1 comments

Ask HN: uppercase I and lowercase L Are the Same

1•roschdal•43m ago•2 comments

What do I mean by some software devs are "ngmi"?

https://ghuntley.com/ngmi/
1•ghuntley•44m ago•1 comments

2025: The science stories that stopped us in our tracks

https://www.bbc.co.uk/news/articles/c3v17ylvn57o
1•WithinReason•44m ago•0 comments

Why Snow Globe Cups Are Popular–and Why This Design Makes Sense

1•tumblers•44m ago•0 comments

Ask HN: What percentage of code do you still write by hand?

1•aurareturn•46m ago•4 comments

UK company sends factory with 1,000C furnace into space

https://www.bbc.co.uk/news/articles/c62vx0pgyrgo
6•vekerdyb•50m ago•0 comments

Linear Address Spaces: Unsafe at any speed

https://queue.acm.org/detail.cfm?id=3534854
1•nithssh•56m ago•0 comments

CNN Travel challenged ChatGPT to come up with city guides

https://www.cnn.com/travel/ai-chatgpt-llms-travel-planning
1•_____k•58m ago•0 comments

What the Research Reveals About Real Power

https://rodgercuddington.substack.com/p/what-the-research-reveals-about-real
2•freespirt•1h ago•0 comments

ProxCLMC – Determine the maximum CPU compatibility in Proxmox VE clusters

https://gyptazy.com/proxclmc-identifying-the-maximum-safe-cpu-model-for-live-migration-in-proxmox...
1•gyptazy•1h ago•1 comments

Show HN: Use Claude Code to Query 600 GB Indexes over Hacker News, ArXiv, etc.

https://exopriors.com/scry
2•Xyra•1h ago•0 comments

AI as a Post-Market Safety Channel: Pharmacovigilance Failure

https://zenodo.org/records/18105073
1•businessmate•1h ago•1 comments

Show HN: VividManga – AI-based manga coloring focused on line art consistency

https://vividmanga.com
2•iaiuse•1h ago•1 comments

The Cost of a Closure in C: The Rest

https://thephd.dev/the-cost-of-a-closure-in-c-c2y-followup
1•ingve•1h ago•0 comments

Show HN: Made a simple way to catch production errors with 4 lines of code

https://www.bugmail.site
1•kaave•1h ago•0 comments

How Deep Is Challenger Deep?

https://storymaps.arcgis.com/stories/0d389600f3464e3185a84c199f04e859
1•PaulHoule•1h ago•0 comments

LLM Vision: Visual intelligence for your smart home

https://github.com/valentinfrlch/ha-llmvision
1•solarist•1h ago•0 comments

NezusHub – The Home of iOS Signing Certificates

https://nezushub.vip/
1•SuperGamer474•1h ago•0 comments

Nexperia got caught between two world powers

https://www.nrc.nl/nieuws/2025/12/30/nexperia-in-no-mans-land-how-a-chip-company-became-caught-be...
1•bouk•1h ago•0 comments
Open in hackernews

Show HN: acmsg (automated commit message generator)

https://github.com/quinneden/acmsg
15•qeden•7mo ago
A cli tool written in python for generating commit messages based on the staged changes in a repository using AI models through the OpenRouter API.

Comments

infocollector•7mo ago
Looks like openrouter api can be self-hosted, which means you should be able to run this locally. If anyone is able to run this with ollama, please do post how you did that? :)
theblazehen•7mo ago
The openrouter api is the same as the openai api, so you should be able to use the openai api compatibility built into ollama after updating the url in /src/acmsg/constants.py
pvdebbe•7mo ago
Maybe I am a bit old-fashioned but I think the commit message should convey intent and not content of the diffs. Perhaps the real utility of this is to describe existing commits in a repository.
owebmaster•7mo ago
I'm also old-fashioned but I always thought it made much more sense to give a content diff, it makes it easier to find changes.
JimDabell•7mo ago
The commit itself is the content diff. Repeating that in the log message is redundant.
owebmaster•7mo ago
no, it is not redundant, a summary makes it easier to search and find the correct commit to read the full diff.
hiatus•7mo ago
Isn't that solved with blame?
InsideOutSanta•7mo ago
I don't understand the reasoning for persisting LLM output that can be generated at any point. If I want to use an LLM to understand someone else's commits, I can use the LLM best suited for that task at the time I need the information, which will likely be more accurate than what was available at the time of the commit and will have access to more context.

I also believe that commit messages should focus on information the code doesn't already convey. Whatever the LLM can generate from looking at your code is likely not the info I'll seek when I read your commit message.

bee_rider•7mo ago
It looks like it just is based on the git diff and status, at least as far as I can tell in a quick skim…

Hypothetically, a tool like this could ingest the bug report you were fixing, some emails, etc etc. It could also read the whole project (to get more context than just the diff). In principle there’s no reason it couldn’t relay more info than just the diff, in some extreme form…

Also, it could be seen as producing a starting point. When a person picks which AI generated text to keep, that is enough to add a bit of human spark into the system, right?

nickcw•7mo ago
When you are looking through commit messages, "Why?", Is the question you want answered. The diff contains "What?" and "How?".

Assuming that the commits in this repo were generated by this tool it is missing the "Why?".

myrmidon•7mo ago
Fully agree. Also, using LLMs for things like this can have bad side-effects, too, simply because it raises the noise-floor:

By spelling out things that are not noteworthy enough for a human, you make it more difficult to find comments that are (and were). Injecting a lot of irrelevant information can hamper understanding even if it is technically completely correct.

flysand7•7mo ago
You are talking about the commit message body, right, not just the header? Because for me it's something similar, but:

Header: Contains "What" and the scope of the changes, as short as possible Body: Contains "Why" and the full explanation of the change

trallnag•7mo ago
So what kind of commit subject do you expect for fixing a single typo? Or bumping the patch version of a random dependency?
Xiol32•7mo ago
Do you need an LLM to create those commit messages?
alzamixer•7mo ago
I use the following script to allow copilot vim plugin to help me.

```plaintext name=../../bin/assisted-commit

#!/bin/bash

# Run git commit with --verbose --dry-run and save the output git commit --verbose --dry-run > ./commit.message

# Prepend # to every line and add "conventional commit message:" at the end sed -i 's/^/# /' ./commit.message echo "# uncommented conventional commit message using feat, fix or doc flags. !beakingchange iff change breaks backward compatibility:" >> ./commit.message echo "" >> ./commit.message

# Open the file in vim for editing, with cursor on a new line at the end and in insert mode vim +':normal Go' +startinsert ./commit.message

# Filter out commented lines and save to a temporary file grep -v '^#' ./commit.message > ./commit.message.filtered

# Commit using the filtered file git commit -F ./commit.message.filtered

# Delete the files rm ./commit.message ./commit.message.filtered

```

esafak•7mo ago
Don't forget to include committed code in the context when amending.
theknarf•7mo ago
This is worse than useless.

The commit message is supposed to contain the details that you can't just glance from the code. Why a certain decision was made, or the pro's and con's of a decision, a link to a relevant Github / Jira issue, etc.

jasonjmcghee•7mo ago
> a link to a relevant Github / Jira issue, etc.

So important!

Makes all devs lives so much easier.

Though you know someone is going to tweak the lint rules at some point and have the top commit on nearly every line at a certain point in time.

Is there a "non-functional change commit" dictionary for git blame to ignore these? I would use that feature...

maxcomperatore•7mo ago
Just click the copilot button in any ide to generate an automated commit message in less than one second. This is effectively useless.