frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Which Workers Will A.I. Hurt Most: The Young or the Experienced?

https://www.nytimes.com/2025/07/07/business/ai-job-cuts.html
1•rustoo•1m ago•0 comments

Unminify JavaScript

https://jsmon.sh/tools/unminify/
1•rashahacks•5m ago•0 comments

Show HN: Multi-session Claude Code manager with async workflow

https://github.com/ObservedObserver/async-code
2•loa_observer•5m ago•0 comments

Bug Stories

https://500mile.email/
1•thinkingemote•5m ago•0 comments

Build an AI-Ready Data Foundation with MongoDB Atlas on Azure

https://www.mongodb.com/company/blog/innovation/build-an-ai-ready-data-foundation-mongodb-atlas-on-azure
1•amalinovic•6m ago•0 comments

Guile Lab Notebook: On the Move

https://wingolog.org/archives/2025/07/08/guile-lab-notebook-on-the-move
1•bwidlar•8m ago•0 comments

Grow a Garden Calculator

https://growagardencalculators.net/
2•dond1986•9m ago•0 comments

I need to know more about this

1•Tangabar•11m ago•0 comments

I Deleted My Steam Account After 20 Years

https://gist.github.com/Kaldaien/c66bf3dca62a5ac63785714f686e60ad
1•haunter•11m ago•0 comments

SUSE launches new European digital sovereignty service to meet surging demand

https://www.zdnet.com/article/suse-launches-new-european-digital-sovereignty-support-service-to-meet-surging-demand/
2•saubeidl•11m ago•0 comments

State Secrets for Sale: More Leaks from the Chinese Hack-for-Hire Industry

https://spycloud.com/blog/state-secrets-for-sale-chinese-hacking/
1•campuscodi•14m ago•0 comments

Human Behavior: AI Session Replays

https://www.humanbehavior.co/
1•handfuloflight•16m ago•0 comments

Ask HN: Bug Bounty Dilemma – Take the $$ and Sign an NDA or Go Public?

2•deep_thinker26•22m ago•1 comments

ESP32 Only WiFi / BLE Jammer

https://mastodon.social/@Atc1441/114819703241689541
1•rena2019•23m ago•0 comments

Show HN: I rewrote an outdated React Native map clustering library

https://github.com/suwi-lanji/rn-maps-clustering
1•hadat•28m ago•0 comments

Series of posts on HTTP status codes

https://evertpot.com/http/
1•antonalekseev•30m ago•0 comments

Most RESTful APIs Aren't RESTful

https://florian-kraemer.net//software-architecture/2025/07/07/Most-RESTful-APIs-are-not-really-RESTful.html
1•BerislavLopac•31m ago•0 comments

Bandle

https://bandle.app/
1•skibz•31m ago•1 comments

Springer Nature book on machine learning is full of made-up citations

https://retractionwatch.com/2025/06/30/springer-nature-book-on-machine-learning-is-full-of-made-up-citations/
2•ArmageddonIt•33m ago•0 comments

Polaris: A Post-training recipe for scaling RL on Advanced Reasoning models

https://hkunlp.github.io/blog/2025/Polaris/
3•limoce•37m ago•0 comments

The Small Data Showdown '25: Is It Time to Ditch Spark Yet?

https://milescole.dev/data-engineering/2025/06/30/Spark-v-DuckDb-v-Polars-v-Daft-Revisited.html
3•jamesblonde•44m ago•0 comments

40 Hot Swedish AI Startups

https://www.di.se/digital/here-are-the-swedish-ai-companies-everyone-is-talking-about/
9•imartin2k•48m ago•0 comments

2025 Ennie Nominees

https://ennie-awards.com/2025-nominees/
2•yakattak•49m ago•0 comments

From Dollar Dominance to the Slop Machine

https://kyla.substack.com/p/from-dollar-dominance-to-the-slop
2•sherlock_h•51m ago•0 comments

Enabling enhanced security for your app Developer Documentation

https://developer.apple.com/documentation/xcode/enabling-enhanced-security-for-your-app
2•seviu•51m ago•0 comments

Show HN: Expressio – Internationalization for humans, through AI

https://github.com/garage44/expressio
2•jvanveen•54m ago•0 comments

How much useful information can a softmax layer hold?

https://leetarxiv.substack.com/p/enumerating-the-set-of-integer-softmax
2•muragekibicho•57m ago•0 comments

Musk's AI firm forced to delete posts praising Hitler from Grok chatbot

https://www.theguardian.com/technology/2025/jul/09/grok-ai-praised-hitler-antisemitism-x-ntwnfb
6•ndsipa_pomu•59m ago•1 comments

Melhorar Imagem

https://melhorarimagem.org
2•fanisonya•59m ago•0 comments

Turn any browser into your Mac's terminal

https://vibetunnel.sh
3•crcastle•1h ago•2 comments
Open in hackernews

Show HN: acmsg (automated commit message generator)

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