frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bridging the Gap Between Latent and Explicit Reasoning with Looped Transformers

https://arxiv.org/abs/2606.31779
1•simonpure•1m ago•0 comments

B.Y.O.A. – Bring Your Own Agent [video]

https://www.youtube.com/watch?v=4ISj9sxKDAQ
1•JohnBerryman•7m ago•0 comments

IDPFlare – Identity Provider Built for Cloudflare

https://idpflare.com/
2•jimmcslim•14m ago•0 comments

Hedge Fund Giants Have a New Profit Engine: Their Smaller Rivals

https://www.bloomberg.com/news/articles/2026-07-15/hedge-funds-turn-to-smaller-independent-firms-...
2•petethomas•15m ago•1 comments

Aval: New open-source format for interactive video on the web

https://github.com/pixel-point/aval
2•handfuloflight•15m ago•1 comments

Rusefi – GPL internal combustion engine ECU

https://github.com/rusefi/rusefi
2•bilegeek•16m ago•0 comments

Back Up

1•bhusanbh•18m ago•0 comments

UI-Skills

https://github.com/ibelick/ui-skills
1•handfuloflight•19m ago•0 comments

11,700 Free Photos from John Margolies' Archive of Americana Architecture

https://www.openculture.com/2026/07/free-photos-from-john-margolies-archive-of-americana-architec...
2•gslin•23m ago•0 comments

Linus Torvalds "Linux is not one of those anti-AI projects"

https://lore.kernel.org/linux-media/CAHk-=wi4zC+Ze8e+p3tMv8TtG_80KzsZ1syL9anBtmEh5Z40vg@mail.gmai...
4•linolevan•24m ago•2 comments

Lhv.ai – Estonian bank AI integration via MCP

https://lhv.ai/
1•loh•26m ago•0 comments

Show HN: CloudDM 4.0 – open-source database development platform

https://github.com/ClouGence/open-cdm
2•cloudcanalx•28m ago•1 comments

Show HN: Migrate your legacy Google My Maps

https://tasmap.app/
1•apolkingg8•41m ago•0 comments

EBAE: A protocol for bounding the real-world authority of autonomous agents

https://zenodo.org/records/21385239
1•Akumaskills•41m ago•0 comments

Duplicate

https://openai.com/supply/co-lab/work-louder/he
2•akman•41m ago•2 comments

Tachyon: An on-screen AI that points, so you learn by doing

https://heybraza.com
1•orakulus•43m ago•0 comments

The log/event processing pipeline you can't have

https://apenwarr.ca/log/20190216
1•kklee•44m ago•0 comments

Intel Makes Chipmaking History with High-NA EUV Panther Lake Production

https://hothardware.com/news/intel-first-high-na-euv-production
2•kristianp•46m ago•0 comments

Too Old for Silicon Valley? Think Again. AI Is Changing the Math

https://www.kqed.org/news/12090173/too-old-for-silicon-valley-think-again-ai-is-changing-the-math
3•andsoitis•51m ago•0 comments

Looking for Work

4•rmcdermott•54m ago•2 comments

TDD is dead. Long live testing. (2014)

https://dhh.dk/2014/tdd-is-dead-long-live-testing.html
3•yokto•55m ago•0 comments

Vint Cerf is working on a plan to unleash AI agents on the open internet

https://techcrunch.com/2026/07/15/vint-cerf-is-working-on-a-plan-to-unleash-ai-agents-on-the-open...
4•indigodaddy•55m ago•2 comments

Dan Boneh: The elliptic curve running the modern internet might have a backdoor [video]

https://www.youtube.com/watch?v=8WDOpzxpnTE
2•philipfweiss•57m ago•1 comments

Show HN: One More Letter

https://playonemoreletter.com/
11•hmate9•57m ago•7 comments

Reverse Engineering Apple Wallet

3•asxeem•59m ago•1 comments

Show HN: A Monte Carlo model that called the World Cup finalists 2 weeks ago

https://github.com/fabio-ricardo/worldcup-forecasting-model
3•fabioricardo7•59m ago•1 comments

Nul Characters in Strings in SQLite

https://sqlite.org/nulinstr.html
11•basilikum•1h ago•0 comments

Can AI Do RCA?

https://coroot.com/blog/hard-part-of-ai-root-cause-analysis-is-no-longer-the-model/
3•ekiauhce•1h ago•1 comments

Decarbonizing Singapore's Data Centers Using Sumatra's Geothermal Resources

https://ccsi.columbia.edu/the-case-for-decarbonizing-singapores-data-center-boom-using-south-suma...
3•crookedroad44•1h ago•0 comments

Will AI Fix Prior Authorization – Or Make It Worse?

https://undark.org/2026/07/15/medicare-prior-authorization-ai/
3•EA-3167•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".