frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Error by AI scribe during medical appointment leaves patient devastated

https://www.abc.net.au/news/2026-08-14/ai-medical-scribe-error-leaves-patient-devastated/107031672
1•ahonhn•5m ago•0 comments

Fossils show carbon emissions harm forests, not 'green the planet'

https://www.theguardian.com/us-news/2026/aug/13/forests-carbon-dioxide-emissions
1•littlexsparkee•9m ago•0 comments

Structured Decoding with XGrammar

https://aramesh10.github.io/xgrammar/
1•matt_d•15m ago•0 comments

OpenAI Is Building a ChatGPT Wallet for Agentic Purchases

https://runtimewire.com/article/exclusive-openai-is-building-a-chatgpt-wallet-for-agentic-purchases
1•ryanmerket•20m ago•0 comments

SQawk: SQL-based Awk tool for CSV/TSV files

https://crates.io/crates/sqawk
1•jgarzik•20m ago•0 comments

Why Our Memory Slips After Age 50

https://erictopol.substack.com/p/why-our-memory-slips-after-age-50
2•brandonb•20m ago•0 comments

Konjugate: Graph-native visual simulation with AI modeling workflows

https://www.konjugate.com/
1•zenin•21m ago•0 comments

Female assassin kills Ukraine submarine commander who defected to Russia

https://www.yahoo.com/news/world/articles/woman-assassinates-ukrainian-submarine-commander-143742...
2•RickJWagner•22m ago•0 comments

When Agents Talk: Honeytokens Under Shared Memory

https://arxiv.org/abs/2608.11436
1•sbulaev•22m ago•0 comments

Even Claude Is in the Dark About Dario Amodei's Wife

https://www.wsj.com/tech/ai/claude-dario-amodei-wife-anthropic-e1eeda7d
1•latchkey•23m ago•1 comments

DeepSeek Harness Plugin and Agent Profile Package Index

https://dsh-index.xlings.org
1•sunrisepeak•24m ago•0 comments

Geo tool with no LLM run

https://see-geo.com
1•tnaaron•25m ago•1 comments

Why You Shouldn't Build a Blockchain

https://olshansky.substack.com/p/why-you-shouldnt-build-a-blockchain
2•Olshansky•26m ago•0 comments

Your cloud should come with an app builder

https://blog.railway.com/p/dev-new
1•ashumz•34m ago•2 comments

Ask HN: What tasks cost money through a UI but are free in code?

1•instagraham•34m ago•0 comments

Hop from server to server without ever leaving your terminal

https://github.com/p-arndt/hop/
1•thunderbong•36m ago•0 comments

Classifying AI Crawlers and AI Chat User Fetches from Server Logs

https://canonry.ai/blog/classifying-ai-crawlers-user-fetches-server-logs
1•arberx•37m ago•0 comments

This hydrogen-powered JCB doesn't dig – it does 406 MPH

https://www.theregister.com/offbeat/2026/08/13/this-jcb-doesnt-dig-it-does-406-mph/5287395
2•defrost•41m ago•0 comments

Rsync 3.5.0: a huge number of security fixes

https://download.samba.org/pub/rsync/NEWS#SECURITY_FIXES-3.5.0
4•zdkaster•45m ago•0 comments

Dario's wife tried to raise money from Epstein for a porn studio

https://twitter.com/atreides_sf/status/2088044874503524469
7•MrBuddyCasino•47m ago•3 comments

Show HN: Why Business Strategy Creates Innovation

https://s-1.vercel.app/
1•Taikhoom10•48m ago•0 comments

US conducted mass spying campaign against leftwing and anti-ICE protesters

https://www.theguardian.com/us-news/2026/aug/13/us-government-spied-anti-ice-protesters
66•magic_interface•50m ago•8 comments

Accurate local Claude 4.7+ tokenizer

https://www.tokenize.rs/claude
1•Tiberium•54m ago•0 comments

MLSecOps Practical Guide – open-source handbook for securing AI systems

https://github.com/MHaghighian/MLSecOps
2•moslemhaghighia•56m ago•0 comments

Example of a real working loop orchestrator

https://www.reddit.com/r/ClaudeAI/s/Q4xgqXK1bi
1•bgnm2000•1h ago•0 comments

How to tell if qubits are working together

https://medium.com/@jkim_tran/how-to-tell-if-qubits-are-working-together-3ed62f9d710c
1•jennifer-trin•1h ago•0 comments

Patterns and problems in emerging multiagent systems

https://www.anthropic.com/research/multiagent-systems
1•applicative•1h ago•1 comments

The next frontier in AI governance isn't stronger guardrails. It's fire brigades

https://www.fastcompany.com/91583956/the-next-frontier-in-ai-governance-isnt-stronger-guardrails-...
1•newsomix9xl•1h ago•0 comments

Agentstow: Canonical configs, fanned out to all your AI coding agents

https://agentstow.dev/
1•soulmachine•1h ago•0 comments

FieldFleet – open-source field operations system

https://taskfleetai.github.io/fieldfleet/
1•iguardo•1h ago•0 comments
Open in hackernews

Git Commands That Cover 90% of a Developer's Daily Workflow

https://jsdev.space/15-git-commands/
29•javatuts•1y ago

Comments

epmatsw•1y ago
restore and maybe switch are the two missing ones I think. Rebase for me, but that’s preference. Cherry-pick too.
rentonl•1y ago
my co-workers used to think I was an expert in git. In reality, they memorized 7 commands while I memorized 15
hbogert•1y ago
i memorized that a commit tree is a ordered set of patches. Everything goes from there.
Areibman•1y ago
In similar fashion, this site has saved me countless hours fixing common git issues https://ohshitgit.com
the__alchemist•1y ago
I need to alias:

  git add .
  git commit -am "descriptive name"
  git push

to:

  git sync "descriptive name"
horsawlarway•1y ago
personally - skip the 'git add .'

It's a pretty terrible habit to get into, and will (not can - will) cause all sorts of headaches. From minor ones like personal editor configs getting dumped into the projects, all the way up to major ones like secrets ending up in your git history.

If you want something close, but much better, do something like:

    if [[ -n $(git ls-files --others --exclude-standard) ]]; then
        echo "There are untracked files.  Please add, remove, or ignore them."
    else
        git commit -am "descriptive name"
        git push
    fi
the__alchemist•1y ago
I see your point, but find it worth it for convenience. Ultimately git is a tool I use to get the job done, and I want it out of the way. 99% of the time, I just want to sync my project, which doesn't only mean edits to existing files.
open-paren•1y ago
How about `git add --patch -all` to make it interactive? I have that aliased to `gap` and it is probably my most used git command.
cholantesh•1y ago
That sounds better but I like the granularity I get from scrutinizing specific files or the patch takes too long to review.
speff•1y ago
I'd like to suggest also mentioning `git add -p` (--prompt). It's very helpful for just adding changes relevant to the commit
nickcw•1y ago
No `git rebase`?

Here are my stats for my last 300 or so git commands from my history

    $ history | grep git | awk '{print $3}' | sort | uniq -c | sort -rn

     71 log
     44 show
     34 diff
     26 co # alias for checkout
     24 cherry-pick
     23 status
     18 brs # alias for branch -v --sort=-committerdate
     13 rebase
     11 commit
     11 add
      8 push
      4 archive
      3 reset
      2 pull
      1 grep
      1 checkout
      1 br
Been doing lots of tricky merges recently hence all the cherry-picks! Not normally such a large part of my workflow.
mercer•1y ago
For me, I generally don't go far beyond the commands in the article, but I /do/ make a lot of use of git rebase -i in my branches.
karmakaze•1y ago
Maybe not essential, but reflog is invaluable.

I also like to separate fetch from pull (fetch + merge).

foobarkey•1y ago
Remove merge and add rebase and we agree :)

Oh and maybe cherry-pick

seba_dos1•1y ago
Both are essential.
realaleris149•1y ago
There are other commands?
incomplete•1y ago
also gonna echo the same sentiment: where's rebase? :)

two other git log commands i find to be insanely useful are:

alias hlog='git log --date-order --graph --date=short --format="%C(green)%h%Creset %C(yellow)%an%Creset %C(blue bold)%ad%Creset %C(red bold)%d%Creset%s"'

and:

alias alog='git log --date-order --all --graph --date=short --format="%C(green)%h%Creset %C(yellow)%an%Creset %C(blue bold)%ad%Creset %C(red bold)%d%Creset%s"'

this is great when working in a repo w/a main "prod" branch that you don't commit to directly, but instead commit to "staging" or "dev". alog shows you the entire repo's history for all branches, and hlog is just the graph of the non-pushable branches (plus all feature branches).

hbogert•1y ago
i can't take this seriously if there's no mention of the '--amend' option and 'rebase' command
OutOfHere•1y ago
It missed "git switch" and "git restore".