frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Explaining the coexistence of economic freedom and big government

https://www.cambridge.org/core/journals/journal-of-institutional-economics/article/abs/hayekian-w...
1•paulpauper•26s ago•0 comments

Hollis Robbins on Average vs. Marginal

https://arnoldkling.substack.com/p/hollis-robbins-on-average-vs-marginal
1•paulpauper•1m ago•0 comments

Wellbeing, Youth and Survey Mode: Comparisons Across 23 Countries

https://www.nber.org/papers/w35058
1•paulpauper•1m ago•0 comments

Tmux-Kanban – a web board for managing real tmux sessions

https://github.com/linwk20/tmux-kanban
1•wkallan•1m ago•0 comments

Motorola sues social platforms and creators over posts, raising speech concerns

https://techcrunch.com/2026/04/15/motorola-sues-social-platforms-and-creators-over-posts-raising-...
1•abra_dabra•1m ago•0 comments

Any engineers here with experience of clinical data standards?

1•kalturnbull•1m ago•0 comments

Discovery of genetic switch could help turn rice into a perennial crop

https://phys.org/news/2026-03-discovery-genetic-rice-perennial-crop.html
1•PaulHoule•3m ago•0 comments

Wafer maximizes intelligence per watt by optimizing kernals

https://www.wafer.ai/blog/seed-round
1•sethbannon•3m ago•0 comments

Lint email HTML for client compatibility using caniemail data. CLI and library

https://github.com/stewartjarod/email-lint
1•stewartjarod•4m ago•0 comments

The Enshittificator [video]

https://vimeo.com/1168468796
2•aeinbu•6m ago•0 comments

Simon Oxley, famous tech logo designer, has died

https://en.wikipedia.org/wiki/Simon_Oxley
3•anigbrowl•7m ago•0 comments

Anr further skinny about Mythos

1•rkorlimarla•10m ago•0 comments

Emerging-Market Pioneer Mark Mobius Dies at 89

https://www.wsj.com/finance/investing/emerging-market-pioneer-mark-mobius-dies-at-89-5ed4e945
1•sonabinu•10m ago•0 comments

Tennessee is about to make building chatbots a Class A felony

https://old.reddit.com/r/artificial/comments/1slu23a/red_alert_tennessee_is_about_to_make_building/
2•mindcrime•11m ago•0 comments

The AI Labs Have a $7 Doritos Problem

https://vinvashishta.substack.com/p/the-ai-labs-have-a-7-doritos-problem
1•gmays•11m ago•0 comments

Google launches native Gemini app for Mac

https://9to5google.com/2026/04/15/gemini-app-mac/
2•quadrige•11m ago•0 comments

Coding agent methodology built from tool failure, not theory

https://gitlab.com/naive-x/naive-artifact-coding/-/blob/main/white-paper.md
1•haragx•16m ago•0 comments

Show HN: Experimental app for remixing and sharing Wikipedia content

https://testflight.apple.com/join/TcuN9rry
1•brokensegue•17m ago•0 comments

Pay Transparency in the EU (2026)

https://www.consilium.europa.eu/en/policies/pay-transparency/
2•andrewstetsenko•17m ago•0 comments

You can now suggest RSS feeds on Rawfeed.social

https://rawfeed.social/blog/rss-feed-suggestions
1•iozguradem•18m ago•0 comments

Claude Code can now do your job overnight

https://thenewstack.io/claude-code-can-now-do-your-job-overnight/
1•Brajeshwar•23m ago•0 comments

How to notify users about privacy policy changes without spamming everyone

https://www.openpolicy.sh/blog/building-update-flows
1•jamie_davenport•23m ago•0 comments

Ask HN: Are your product managers sending PRs?

1•subw00f•25m ago•1 comments

Reverse-enginnering a bluethoot termal printer (2021)

https://werwolv.net/posts/cat_printer/
1•Muhammad523•28m ago•0 comments

Show HN: Unseal.link – Paste a URL, set a price, let buyers unseal it via Stripe

https://unseal.link
1•beharefe•29m ago•1 comments

NoteSide

https://dylblake.dev/
2•dylblake03•30m ago•1 comments

PTEcorepractice – Free PTE Core Practice Platform for Canada PR Applicants

https://ptecorepractice.com
1•zzx•30m ago•0 comments

One Interface, Every Protocol

https://openbindings.com/blog/one-interface-every-protocol
2•clevengermatt•31m ago•3 comments

Sumida Aquarium Posts 2026 Penguin Relationship Chart, with Drama and Breakups

https://www.sumida-aquarium.com/special/sokanzu/en/2026/
2•Lwrless•31m ago•0 comments

LinkedIn data shows AI isn't to blame for hiring decline yet

https://techcrunch.com/2026/04/15/linkedin-data-shows-ai-isnt-to-blame-for-hiring-decline-yet/
3•caisah•32m ago•1 comments
Open in hackernews

Show HN: acmsg (automated commit message generator)

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

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