frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Karpathy LLM Wiki pattern integrated into Obsidian agenic workflow

https://github.com/pssah4/vault-operator
1•pssah4•21s ago•0 comments

Science sleuths uncover more than 100 suspicious images Thermo Fisher antibody

https://www.nature.com/articles/d41586-026-01706-2
1•Bender•3m ago•0 comments

Google wants to release up to 32M good mosquitoes California and Florida

https://ktla.com/news/google-wants-to-release-up-to-32-million-good-mosquitoes-in-california-and-...
2•Bender•4m ago•0 comments

William Chester Minor

https://en.wikipedia.org/wiki/William_Chester_Minor
1•petethomas•10m ago•0 comments

Gen Z are 'zebra striping' to avoid hangovers, scientists say it works

https://www.dailymail.com/sciencetech/article-15854983/Gen-Z-zebra-striping-avoid-hangovers-scien...
1•Bender•12m ago•0 comments

The Anarchist's Workbench [pdf]

https://blog.lostartpress.com/wp-content/uploads/2020/07/AWB_Consumer_June-2020_v5.1-1.pdf
1•wesleyd•14m ago•0 comments

Memo from the Interstellar Information Service – Re: Earth's Latest Space "Plan"

https://samhenrycliff.medium.com/memo-from-the-interstellar-information-service-re-earths-latest-...
1•6stringmerc•29m ago•0 comments

OpenJDK: Removal of the JVM Compiler Interface (JVMCI), in JDK 27

https://bugs.openjdk.org/browse/JDK-8382582
2•alasr•38m ago•0 comments

Harvard Graduation Speaker: "The Mission of Your Generation Is to Destroy AI"

https://www.yahoo.com/entertainment/tv/articles/harvard-graduation-speaker-unloads-ai-130000122.h...
3•poly2it•40m ago•2 comments

How Servers Work: A Hands-On Introduction to TCP Sockets

https://labs.iximiuz.com/tutorials/how-servers-work-tcp-sockets
1•birdculture•41m ago•0 comments

New AI Agent Architecture to fix LLM deviations and token costs

https://github.com/botcircuits-ai/botcircuits-agent
1•nexcatara•41m ago•0 comments

Taiwan's DRAM Failure [video]

https://www.youtube.com/watch?v=ehT3U935Pww
1•mgh2•42m ago•0 comments

Clint Eastwood Turns 96 as Son Kyle Says the Legendary Director Has "Retired"

https://www.worldofreel.com/blog/2026/5/31/happy-birthday-clint-eastwood
3•Michelangelo11•42m ago•0 comments

When FP? And when OOP? (2013)

https://raganwald.com/2013/04/08/functional-vs-OOP.html
1•downbad_•45m ago•0 comments

Read These Books by the Time You Graduate

https://www.theatlantic.com/books/2026/05/seven-books-graduate-young-adult-recommendations/687321/
1•paulpauper•46m ago•0 comments

The Kiwi Farms was targeted with a historic DDoS attack of up to 8Tbps last week

https://twitter.com/KiwiFarmsDotNet/status/2061199487855481199
2•gilfish•47m ago•2 comments

Legal Contract Version Control

https://github.com/SCCS-HQ/legal-contract-version-control
1•slveer•47m ago•1 comments

Mnemonic portraits for 19,023 human genes

https://brinedew.substack.com/p/mnemonic-portraits-for-19023-human
1•paulpauper•47m ago•0 comments

Ten EU countries are breaching the fiscal rules

https://www.ft.com/content/38119f3e-4570-4367-a014-9c5bd626cfb6
2•paulpauper•49m ago•0 comments

Europe's "most complex server processor" is running

https://www.heise.de/en/news/Europe-s-most-complex-server-processor-is-running-11308863.html
1•doener•51m ago•0 comments

Chuwi Minibook X: the netbook we deserve

https://tylercipriani.com/blog/2026/05/28/chuwi-minibook-x/
29•thcipriani•1h ago•22 comments

Retro Synthwave on YouTube

https://www.youtube.com/results?search_query=synthwave+before%3A2024-01-01&sp=EgIYAg%253D%253D
1•usernamed7•1h ago•1 comments

Wrote that Boomers were choking America's economy. Their responses are revealing

https://fortune.com/2026/05/31/boomer-reaction-economy-feel-stuck-confused-angry-sad-insecure/
5•ourmandave•1h ago•2 comments

State Engineering for Agents

https://twitter.com/kleptobyte/status/2060973079140929823
2•Kleptobyte•1h ago•0 comments

CXL-ClusterSim: Modeling CXL-Based Disaggregated Memory

https://arxiv.org/abs/2605.27745
1•rbanffy•1h ago•0 comments

Dear Steve Lemay

https://ilyabirman.net/meanwhile/all/dear-steve-lemay/
1•exizt88•1h ago•0 comments

Review of the MoErgo Glove80 Keyboard

https://arslan.io/2024/04/22/review-of-the-moergo-glove80-keyboard/
1•akyuu•1h ago•0 comments

Show HN: TIL – a timeline file format with a spiral viewer and editor

https://til.rfy.nz
1•rellfy•1h ago•0 comments

Show HN: Monolith, live typed queries on real Postgres for Java (no JDBC)

https://github.com/singlr-ai/monolith
1•uday_singlr•1h ago•0 comments

A Brief-Ish History of SETI. Part VIII: Paradox? What Paradox?

https://www.universetoday.com/articles/a-brief-ish-history-of-seti-part-viii-paradox-what-paradox
1•tcp_handshaker•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".