frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UN warns AI risk means world urgently needs more UN

https://cotidianul.md/en/38120/UN-warns-of-risks-of-advanced-artificial-intelligence-and-calls-fo...
1•delichon•1m ago

Show HN: Dol – Local-first Markdown notes that sync to your own CouchDB

https://dol.praxostudio.com/
1•ydh0110•5m ago•0 comments

Show HN: Browse 27 years of movie ticket stubs in ThreeJS

https://gardnermcintyre.com/stubs/
1•zebomon•5m ago•0 comments

Show HN: Vertumnus – printable posters of farmers' market produce seasonality

https://vertumnus.fyi
1•perspectivezoom•7m ago•0 comments

Outrageously Small Neural Networks: Emergent Basic Reasoning at 6,616 tok/SEC [pdf]

https://huggingface.co/gdiamos/amx-reasoning-v1-instruct/blob/main/paper.pdf
2•Anon84•8m ago•1 comments

The Ultra-Scale Playbook

https://huggingface.co/spaces/nanotron/ultrascale-playbook
1•Anon84•11m ago•0 comments

Frontier AEO Tracker: What Astra Chooses

https://www.latent.space/p/aeo
1•swyx•13m ago•0 comments

The American Motel

https://lileks.com/motels/index.html
1•qsi•13m ago•1 comments

Disconnect your LG television from the internet, now

https://appleinsider.com/articles/26/09/07/disconnect-your-lg-television-from-the-internet-now
2•harambae•15m ago•0 comments

TikTok's owner fined nearly $30M in Brazil over safety of minors

https://apnews.com/article/brazil-tiktok-owner-fined-regulator-child-protection-cfbe802ab180c45dc...
1•doodlesdev•15m ago•0 comments

PC Tweaker

https://pctweaker.app/
1•Aurelioavila•15m ago•0 comments

I Know What You Think of Me (2013)

https://archive.nytimes.com/opinionator.blogs.nytimes.com/2013/06/15/i-know-what-you-think-of-me/
2•jger15•20m ago•0 comments

Outrageously Small NNs: Emergent Reasoning at 6,616 Tok/s on One Intel AMX Core

http://gregdiamos.com/2026/09/07/outrageously-small-neural-networks.html
1•gdiamos•21m ago•0 comments

TIL POSIX specifies a tool designed to assist you with generated code

https://www.reddit.com/r/commandline/comments/1w809fu/til_posix_specifies_a_tool_designed_to_assi...
2•g-b-r•21m ago•0 comments

Super Smash Bros. Melee is 100.00% decompiled

https://decomp.dev/doldecomp/melee
1•Lammy•27m ago•1 comments

Meetings

https://www.nber.org/papers/w35706
2•tfirst•29m ago•1 comments

September 2026 Emacs meetup recap [video]

https://www.youtube.com/watch?v=RatVp4YLwiM
17•iLemming•35m ago•1 comments

Why Did Trump Order Up 660M Pounds of Mystery Meat?

https://www.nytimes.com/2026/09/07/opinion/trump-meat-import.html
3•thelastgallon•35m ago•1 comments

Githack: A Persistent Object Store for Lisp Based on Git

http://funcall.blogspot.com/2026/09/githack-persistent-object-store-for.html
27•kagevf•35m ago•1 comments

Relaxed Memory Model Zoo: Ordering models by the inclusion of allowed behaviours

https://rmm-zoo.kissig.org/
2•csmantle•43m ago•0 comments

Coulomb's law remains tricky to test at home

https://chillphysicsenjoyer.substack.com/p/coulombs-law-remains-tricky-to-test
2•crescit_eundo•1h ago•0 comments

Browser Isolation Session Initialization Failures – Cloudflare Status

https://www.cloudflarestatus.com/incidents/z16209cfb1xv
2•kyisaiah47•1h ago•0 comments

SayItErmano – local-first voice dictation for Linux

https://github.com/acailic/SayItErmano
3•ilkehimself•1h ago•0 comments

OpenCode team's X analytics leaderboard

https://xrank.opencode.ai/
3•seelos•1h ago•0 comments

Where Understanding Arrives After the Decisions

https://medium.com/@gurvinder372/article-10-where-understanding-arrives-after-the-decisions-310cb...
3•gps372•1h ago•0 comments

Anthropic AI 'formalizes' proof of Fermat's last theorem in just 11 days

https://www.nature.com/articles/d41586-026-02822-9
5•sbulaev•1h ago•1 comments

Zen of Palm [pdf]

https://www.cs.uml.edu/~fredm/courses/91.308-fall05/palm/zenofpalm.pdf
3•hexatron4•1h ago•0 comments

Europe's largest carbon capture facility opens in the Netherlands

https://www.yara.com/corporate-releases/europes-largest-carbon-capture-facility-officially-inaugu...
4•negura•1h ago•0 comments

Made this math/physics learning website, would love some feedback

https://locusmath.org/
3•dinomighty•1h ago•2 comments

Integration of proteomic aging clocks in a phase 2a clinical trial

https://www.nature.com/articles/s41587-026-03286-y
4•spenvo•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".