frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Per-tensor layout maps for GGUF quantization

https://huggingface.co/blog/bartowski/per-tensor-layout-maps-for-gguf-quantization
2•pickledish•5m ago•0 comments

Benchmark: CadQuery vs. OpenSCAD for agentic CAD work

https://modelrift.com/blog/cadquery-vs-openscad/
2•jetter•12m ago•0 comments

Show HN: AgentRuleBench, does AI agents violate inferred architecture rules?

https://github.com/Tommkruix/agentrulebench
1•Tommkruix123•12m ago•0 comments

OpenAI delaying IPO amid AI safety concerns, Sam Altman says

https://www.axios.com/2026/09/12/openai-public-ipo-delay-sam-altman
3•m-hodges•13m ago•0 comments

Show HN: An independent directory of AI misalignment reports

https://misalignment.xyz/
1•awormuth•14m ago•0 comments

OmarchyOS Agentic Linux

https://omarchy.us/#home
3•ijidak•16m ago•1 comments

JetKVM OS Services

https://jetkvm.com/blog/introducing-jetkvm-os-services
3•thinkafterbef•17m ago•0 comments

Void Linux Maintainer Orphans 100 Packages over AI Policy Dispute

https://www.phoronix.com/news/Void-Linux-AI-Policy-Orphan
5•Bender•20m ago•0 comments

Uber Guests Aren't Bound by Uber's TOS–Walker vs. Uber

https://blog.ericgoldman.org/archives/2026/09/uber-guests-arent-bound-by-ubers-tos-walker-v-uber.htm
1•hn_acker•21m ago•0 comments

The Dangers of Musk's Votesafe.org

https://popular.info/p/the-hidden-dangers-of-musks-votesafeorg
4•DeepLogin•21m ago•0 comments

I Made a Bet with Tesla

https://www.youtube.com/watch?v=fo-uubnajWM
1•Betelbuddy•22m ago•0 comments

Using Elm and Rust for one 3D web app

https://yoggimix.bearblog.dev/elm-rust-and-webgl-in-one-app/
1•yoggimix•22m ago•0 comments

Asking the most uncomfortable question in AI

https://www.aiminority.dev/the-ai-danger-public-temperature-check
2•danba340•22m ago•1 comments

Show HN: Picobble – my daily word puzzle game

https://picobble.com/
1•vortegne•23m ago•0 comments

40C3 is moving. Just around the corner. Come and help pack up

https://events.ccc.de/en/2026/07/02/were-moving/
1•Tomte•23m ago•0 comments

Show HN: Redis City – Explore how Redis works in an interactive 3D model

https://poltora.dev/redis
1•poltora•25m ago•1 comments

Can large language models understand hum4n L4ngu4ge and the W0rld behind W0rds?

https://royalsocietypublishing.org/rsta/article/384/2320/20250008/481681/A-sentence-is-worth-a-th...
1•Anon84•28m ago•0 comments

Show HN: SimTower, Decompiled, Rewritten, and in the Browser

https://kvetch.io/conciliatower/
1•jonahss•28m ago•1 comments

Anthropic CEO calls on AI companies to slow down development

https://www.euronews.com/my-europe/2026/09/12/anthropic-ceo-dario-amodei-calls-on-ai-companies-to...
2•throwawayffffas•30m ago•0 comments

Show HN: Come prove the Berge Fulkerson conjecture with a swarm of agents

https://provetogether.ai/problems/15
4•fcesco•30m ago•0 comments

Show HN: StateHunter and AuditGuard – Client-Side SPA Recon and Safe Harbor CLI

https://codeandcypher.com/posts/client-side-spa-recon-and-safe-harbor-verification/
1•hlldvr•32m ago•0 comments

LG Says We're Fake News [video]

https://www.youtube.com/watch?v=ToP9xfLDSME
4•HelloUsername•33m ago•0 comments

In the Age of AI, TODOs Considered Harmful

https://frequal.com/java/TodosConsideredHarmful.html
1•TeaVMFan•35m ago•2 comments

OpenAI won't go public this year

https://fortune.com/2026/09/12/sam-altman-openai-ipo-delay-ill-advised-moment-safety-concerns/
6•spidersouris•36m ago•1 comments

On teaching mathematics (2007) [pdf]

https://www-sop.inria.fr/members/Ian.Jermyn/philosophy/writings/Arnoldonmaths.pdf
3•exposition•36m ago•0 comments

Tesla Roadster to be unveiled on Oct first

https://www.tesla.com/roadster
2•simonebrunozzi•40m ago•0 comments

The first-ever naval battle between unmanned boats

https://twitter.com/GirkinGirkin/status/2098799352328183918
2•newsuser•40m ago•0 comments

SEC Proposes Regulation Crypto Assets

https://www.dlapiper.com/en-us/insights/publications/2026/09/sec-proposes-regulation-crypto-assets
1•thedragongc•40m ago•0 comments

Jimmy Kimmel Interviews James Talarico

https://www.youtube.com/watch?v=WLDE9LrGpNk
18•Betelbuddy•40m ago•2 comments

Review of Current Search

https://port19.xyz/tech/search-2026/
1•speckx•42m 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".