frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Completely free Claude Sonnet 4.5, supported by contextual ads

1•namanyayg•2m ago•0 comments

Tududi – Self-hosted task management

https://github.com/chrisvel/tududi
1•celsoazevedo•3m ago•0 comments

Normalize decorative first letters in code snippets

https://twitter.com/tjcages/status/1986238400676995254
1•delichon•5m ago•0 comments

Chaos and lies: Why Sam Altman was booted from OpenAI according to new testimony

https://www.theverge.com/ai-artificial-intelligence/814876/ilya-sutskever-deposition-openai-sam-a...
1•littlexsparkee•5m ago•1 comments

How to fix subsystem request failed on channel 0

https://blog.x-way.org/Linux/2025/11/06/How-to-fix-subsystem-request-failed-on-channel-0.html
1•speckx•5m ago•0 comments

Space junk may have struck a Chinese crew ship in low-Earth orbit

https://arstechnica.com/space/2025/11/landing-postponed-for-chinese-astronauts-after-suspected-sp...
1•rbanffy•6m ago•0 comments

Niacin Pathway Gene Linked to Motor Neuron Weakness Diseases

https://www.sciencedaily.com/releases/2025/11/251106003917.htm
1•Noaidi•7m ago•1 comments

A machine could keep a baby alive outside the womb. How will the world use it?

https://www.theguardian.com/world/2025/nov/05/baby-alive-outside-womb
1•binning•8m ago•0 comments

German nurse gets life in jail after murdering 10 to reduce workload

https://www.bbc.com/news/articles/cz0xgrv7543o
3•wslh•8m ago•0 comments

Britain's next maternity scandal

https://www.newstatesman.com/politics/health/2025/11/britains-next-maternity-scandal
1•binning•10m ago•0 comments

Universe's expansion 'is now slowing, not speeding up'

https://ras.ac.uk/news-and-press/research-highlights/universes-expansion-now-slowing-not-speeding
3•chrka•11m ago•0 comments

Rare hyena behaviours caught on camera in new Attenborough documentary

https://www.bbc.co.uk/news/articles/cn51l324p7lo
1•binning•11m ago•0 comments

Reuters.com no longer works with JavaScript disabled

2•rkagerer•13m ago•2 comments

Omarchy 3 [video]

https://www.youtube.com/watch?v=L3EafsSCv80
1•shaicoleman•13m ago•1 comments

Blade Lifter Technology

https://reneweconomy.com.au/marvel-of-engineering-giant-wind-turbine-transporters-find-their-way-...
2•asdefghyk•15m ago•2 comments

Who has the best map of orbit?

https://spacenews.com/who-has-the-best-map-of-orbit/
1•defrost•16m ago•0 comments

Show HN: Bother, my answer to the poor UX of bloated project management tools

https://bother.now/index.html
1•kalturnbull•16m ago•1 comments

Ask HN: Why is there a stigma around working in defense-related tech?

1•piratesAndSons•18m ago•4 comments

Latest Updates

https://djalbat.com/
1•djalbat•18m ago•0 comments

Mitigation efforts to reduce CO2 emissions have been offset by economic growth

https://www.nature.com/articles/s43247-025-02743-x
1•PaulHoule•19m ago•0 comments

You Should Write An Agent

https://fly.io/blog/everyone-write-an-agent/
3•tabletcorry•19m ago•0 comments

Ask HN: Why don't programming language foundations offer "smol" models?

1•xrd•20m ago•0 comments

Hello, Shopify Merchants

2•Returnlytic•20m ago•0 comments

Inside Hyundai’s Massive Metaplant

https://spectrum.ieee.org/hyundai-metaplant
1•oldnetguy•22m ago•0 comments

Ask HN: Does anyone know how many pages are in Perplexity's search index?

1•n1xis10t•22m ago•0 comments

It's mainframes all the way down

https://medium.com/supplyframe-hardware/its-mainframes-all-the-way-down-73de55d2884b
1•rbanffy•23m ago•0 comments

What if you could describe a live webstream and get it?

https://3kk0.com/
2•Oliver-Taylor•25m ago•1 comments

Improving Rust Compile Times by 71 Percent

https://elijahpotter.dev/articles/improving-rust-compile-times-by-71-percent
2•emschwartz•25m ago•0 comments

Google Finance adds prediction markets and AI features for research, earnings

https://blog.google/products/search/new-google-finance-ai-deep-search/
2•mfiguiere•25m ago•0 comments

Why Does So Much New Technology Feel Inspired by Dystopian Sci-Fi Movies?

https://www.nytimes.com/2025/11/05/magazine/ai-tech-industry-sora-science-fiction.html
4•voxadam•26m ago•1 comments
Open in hackernews

Show HN: acmsg (automated commit message generator)

https://github.com/quinneden/acmsg
15•qeden•5mo 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•5mo 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•5mo 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•5mo 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•5mo 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•5mo ago
The commit itself is the content diff. Repeating that in the log message is redundant.
owebmaster•5mo ago
no, it is not redundant, a summary makes it easier to search and find the correct commit to read the full diff.
hiatus•5mo ago
Isn't that solved with blame?
InsideOutSanta•5mo 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•5mo 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•5mo 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•5mo 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•5mo 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•5mo 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•5mo ago
Do you need an LLM to create those commit messages?
alzamixer•5mo 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•5mo ago
Don't forget to include committed code in the context when amending.
theknarf•5mo 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•5mo 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•5mo ago
Just click the copilot button in any ide to generate an automated commit message in less than one second. This is effectively useless.