frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tripping on Acid

https://scotmurphy.com/2026/07/08/tripping-on-acid/
1•tekjess•1m ago•0 comments

Policy Statement Concerning the Suppression of Accuracy in AI Systems

https://www.federalregister.gov/documents/2026/07/07/2026-13628/policy-statement-concerning-the-s...
2•sebastian_z•8m ago•0 comments

A Fleet, Not an Assistant

https://bartkolendowski.com/writing/a-fleet-not-an-assistant.html
1•riskcomplex•8m ago•0 comments

Show HN: A shallow lake's report on itself

https://ashallowlake.com/
1•tough•9m ago•0 comments

A Roomba recorded a woman on the toilet. How did screenshots end up on Facebook?

https://www.technologyreview.com/2022/12/19/1065306/roomba-irobot-robot-vacuums-artificial-intell...
3•rmason•13m ago•0 comments

Understanding ECS from Kubernetes Perspective

https://muhammadraza.me/2026/ecs-explained-visually/
3•mraza007•18m ago•0 comments

How to Be a Good open-source Maintainer

https://piechowski.io/post/how-to-be-a-good-open-source-maintainer/
3•grepsedawk•20m ago•0 comments

Show HN: Yaw – digital logbook for glider pilots

https://yawflight.com/
2•mantcz•22m ago•0 comments

Native-speed vLLM transformers modeling back end

https://huggingface.co/blog/native-speed-vllm-transformers-backend
2•simonpure•25m ago•0 comments

Google Vibe Coding vs. Agentic Engineering White Paper

https://www.kaggle.com/whitepaper-the-new-SDLC-with-vibe-coding
2•grepsedawk•25m ago•0 comments

Show HN: A tool that checks how your business appears in AI search

https://www.tryagentscore.com
2•nikhilsiyer•26m ago•1 comments

Every Way Meta Tracks You, and How to Stop It [video]

https://www.youtube.com/watch?v=Yv2Eb_kJous
2•nalekberov•30m ago•0 comments

DSS Code Prime

https://github.com/dailysoftwaresystems/dss-code-prime
2•rgasperetti•30m ago•0 comments

Are Argentina being treated favourably at World Cup?

https://www.bbc.co.uk/sport/football/articles/cx2wkwd7e6go
2•password54321•32m ago•0 comments

Show HN: Day planner shaped like a clock (2-way calendar and Todoist sync)

https://reassign.app
1•smuk3c•32m ago•0 comments

Adsb.fi

https://adsb.fi/
2•rolph•33m ago•0 comments

Lessons from the Vasa Shipwreck

https://www.ft.com/content/200a6c44-9b66-4af3-82eb-98acb53898e4
1•bookofjoe•34m ago•1 comments

'Acceleration without fuel:' superconducting thruster in first orbital test

https://www.space.com/technology/acceleration-without-fuel-revolutionary-superconducting-thruster...
1•breve•37m ago•1 comments

Remote sync, MCP, and an API for your Obsidian vault

https://github.com/8thpark/geode
2•pmihaylov•40m ago•0 comments

The neutral proof standard for consequential AI-agent actions

https://github.com/Actenon
1•Bucko1•43m ago•0 comments

How much and why ACA Marketplace premiums are going up in 2027

https://www.healthsystemtracker.org/brief/how-much-and-why-aca-marketplace-premiums-are-going-up-...
2•LostMyLogin•43m ago•0 comments

A Treatise on How to Use the Internet Without Committing Philosophical Suicide

https://pastebin.com/Ft7P5m9F
1•jxmorris12•48m ago•0 comments

North Korean Hackers Compromise Go and PHP Packages

https://opensourcemalware.com/blog/polinrider-jumps-the-fence
4•6mile•51m ago•1 comments

Rewriting Bun in Rust

https://bun.com/blog/bun-in-rust
48•afturner•51m ago•8 comments

Show HN: Screenstab (tilt-shift-style screenshots) is now free and open source

2•mikaelaast•54m ago•0 comments

CrowdSound: A Song Composed Anonymously by the Internet

https://web.archive.org/web/20191208165423/https://crowdsound.net/lyrics
2•Jomal_HN•57m ago•0 comments

Open Source Barware: free, local-first bar inventory software (GPLv3)

https://opensourcebarware.com
3•RichBJamison•58m ago•0 comments

Apple's AWDL causing periodic 90ms ping on LAN

https://twitter.com/tomaskafka/status/2074963014596366670
2•tomaskafka•1h ago•0 comments

Build Your World Cup Dream Team

https://7-0-game.com/
2•jeyzolo•1h ago•1 comments

More Workers Take Mental Health Leave, and Bosses Aren't Happy

https://www.bloomberg.com/news/articles/2026-07-08/mental-health-leave-is-rising-as-more-us-worke...
6•wslh•1h ago•3 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".