frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Using the same method from TikTok to concentrate better on meetings

https://chromewebstore.google.com/detail/miito-tiktok-like-videos/hlnfebhmljcldnhepjeiodhmijahlhcc
1•miemex•1m ago•0 comments

Margin Trading and Securities Lending Strategy Backtesting

https://medium.com/@DolphinDB_Inc/why-your-backtests-fail-in-margin-trading-securities-lending-an...
1•CrazyTomato•5m ago•0 comments

Food 4 Agile Thought #544: Knowledge Work Tools, Buy-In Trap, Agentic Coding ROI

https://age-of-product.com/food-agile-thought-544-knowledge-work-tools/
1•swolpers•6m ago•0 comments

Tabular-nums for numbers that line up

https://iprodan.dev/l/font-variant-tabular-nums/
1•thunderbong•8m ago•0 comments

How do I write Elixir tests?

https://hauleth.dev/post/writing-tests/
1•hauleth•11m ago•0 comments

Wood burning reintroduces lead poisoning in US

https://www.theguardian.com/environment/2026/may/15/wood-burning-for-heat-reintroducing-lead-poll...
1•oliculipolicula•15m ago•0 comments

Kog AI – Building a Real-Time Inference Stack on AMD Instinct GPUs [video]

https://www.youtube.com/watch?v=ndSA9T5yvmM
6•NicoConstant•19m ago•0 comments

Where's Ed: Anthropic Told Court $5B but Public $19B

https://www.flyingpenguin.com/wheres-ed-anthropic-told-court-5-billion-but-public-19-billion/
2•jorisw•20m ago•0 comments

Overworked AI Agents Turn Marxist, Researchers Find

https://www.wired.com/story/overworked-ai-agents-turn-marxist-study/
2•aleksjess•29m ago•1 comments

Rosetta Check 2.0 scans Pro Tools, Logic and Photoshop plugins for Intel builds

https://rosettacheck.com/testflight
2•jonnokid•30m ago•0 comments

Ask HN: Im a back end dev, how do you go from designing the UI with AI?

3•cristyg0101•40m ago•1 comments

A Technical Deep Dive into the New Raycast

https://www.raycast.com/blog/a-technical-deep-dive-into-the-new-raycast
1•vaishnavsm•48m ago•0 comments

VI65 Text Editor - vi for the 6502

https://vi65.sourceforge.net/
2•rbanffy•48m ago•0 comments

2028: Two scenarios for global AI leadership

https://www.anthropic.com/research/2028-ai-leadership
4•pretext•50m ago•0 comments

Power up your Domain Specific Language

https://slangify.org/
4•librasteve•1h ago•1 comments

Show HN: Pairfuse – Professional Photoshoots for Couples

https://pairfuse.com
1•katerina198b•1h ago•1 comments

Windscribe – We'll move HQ and take our taxes elsewhere

https://twitter.com/windscribecom/status/2055044048122003569
5•mvdwoord•1h ago•0 comments

America is experiencing a productivity miracle

https://www.economist.com/finance-and-economics/2026/05/11/america-is-experiencing-a-productivity...
2•edward•1h ago•0 comments

UUID vs. NanoID – ID Generation Compared

https://tools.pinusx.com/compare/uuid-vs-nanoid
2•ankitg12•1h ago•0 comments

One-of-One Indirapuram Sets a New Standard for Luxury Living

https://realty.economictimes.indiatimes.com/news/brand-connect-initiative/harmandeep-singh-kandha...
1•KirtiKKapoor•1h ago•0 comments

Court upholds discrimination ruling after male excluded from female-only app

https://www.abc.net.au/news/2026-05-15/nsw-tickle-v-giggle-judgement-transgender-woman/106682498
2•wrwr•1h ago•4 comments

Get best online coupons and promo codes and deals of hot brands

https://www.timelycoupons.com
1•oopp0302•1h ago•0 comments

Ask HN: How to be SOC2 Type 2 compliant as a solo-entreprenuer?

15•sochix•1h ago•23 comments

Zero-day exploit defeats default Windows 11 BitLocker protections

https://arstechnica.com/security/2026/05/zero-day-exploit-completely-defeats-default-windows-11-b...
5•ndsipa_pomu•1h ago•0 comments

Have you switched to AI for heart monitoring during physical activity yet?

1•accofrisk•1h ago•1 comments

Slopsmith: A Self-Hosted Rocksmith Alternative That Runs in Docker

https://github.com/byrongamatos/slopsmith
2•steveharing1•1h ago•1 comments

Jelly Tide: My Honest 30-Day Results (Shocking Before and After)

https://finance.yahoo.com/sectors/healthcare/articles/jelly-tide-gummies-exploding-2026-154100263...
1•ragymkalu•1h ago•0 comments

Establishing AI and data sovereignty in the age of autonomous systems

https://www.technologyreview.com/2026/05/14/1137168/establishing-ai-and-data-sovereignty-in-the-a...
2•joozio•1h ago•0 comments

Turn a bare VPS into an operational fortress in 15 minutes and 1 command

1•rockballslab•1h ago•0 comments

Cerebras risked dinner plate-sized AI accelerators. Today it's worth $66B

https://www.theregister.com/ai-ml/2026/05/15/cerebras-wafer-scale-ai-bet-delivers-blockbuster-ipo...
1•beardyw•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".