frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

U.S. FCC Bans Foreign-Made Routers as a 'National Security Risk'

https://www.cnet.com/home/internet/fcc-bans-foreign-made-routers-as-national-security-risk/
1•walterbell•2m ago•0 comments

SEC's ex-enforcement chief clashed with bosses before leaving

https://www.cnbc.com/2026/03/23/secs-ex-enforcement-chief-clashed-with-bosses-before-leaving.html
1•petethomas•2m ago•0 comments

Geo Cold Outreach in My Inbox Is Up 3x

https://www.generativevisibility.com/the-new-category-showing-up-in-my-inbox/
1•jenthoven•2m ago•0 comments

Why Everyone's Picking Up a PSP Again in 2026

https://gardinerbryant.com/psp-in-2026/
2•ecliptik•3m ago•0 comments

Can Good Writing Be Generative?

https://arxiv.org/abs/2601.18353
1•mihau•3m ago•0 comments

No, Windows Start does not use React

https://pathar.tl/blog/no-windows-start-does-not-use-react/
1•pathartl•5m ago•0 comments

Obsidian CLI

https://obsidian.md/help/cli
1•jrgd•7m ago•1 comments

Confronting the CEO of the AI company that impersonated me

https://www.theverge.com
2•inaros•7m ago•0 comments

Secret Hitler LLM Benchmark

https://github.com/jordan-gibbs/secret-hitler-bench
3•jordan_gibbs•13m ago•1 comments

Beyond AI Taking Jobs: When Economy Needs No Human Consumer

https://ralphmao.github.io/AI-humanity/
1•emulbasaka•14m ago•0 comments

Cisco Announces DefenseClaw at RSAC 2026

https://github.com/cisco-ai-defense/defenseclaw
1•Khaine•16m ago•1 comments

Why your guitar goes sharp when you play hard: the Kirchoff–Carrier equation

https://mbmccoy.dev/posts/nonlinear-vibes/
3•_alternator_•20m ago•1 comments

Is ChatGPT a Scrabble Genius, or a Scrabble Disaster?

https://www.youtube.com/watch?v=8opLB1D_RYY
2•doener•20m ago•1 comments

Python Software Foundation turned down Trump admin grant (2025)

https://arstechnica.com/tech-policy/2025/10/python-foundation-rejects-1-5-million-grant-over-trum...
1•PaulDavisThe1st•21m ago•0 comments

Designing AI Chip Software and Hardware

https://docs.google.com/document/d/1dZ3vF8GE8_gx6tl52sOaUVEPq0ybmai1xvu3uk89_is/edit?tab=t.0
2•broune•22m ago•1 comments

Global Petrol Prices

https://www.globalpetrolprices.com/gasoline_prices/
1•greedo•26m ago•0 comments

AI boom risks widening wealth divide, says BlackRock's Larry Fink

https://www.theguardian.com/technology/2026/mar/23/ai-boom-risks-widening-wealth-divide-blackrock...
5•devonnull•27m ago•0 comments

Dusking is a trend aimed at helping people switch off at the end of the day

https://theconversation.com/dusking-is-a-trend-aimed-at-helping-people-switch-off-at-the-end-of-t...
3•zeristor•28m ago•0 comments

SynthVision: Building a 110K Synthetic Medical VQA Dataset

https://huggingface.co/blog/OpenMed/synthvision
1•maziyar•30m ago•1 comments

Gabbard plans to shift coveted, CIA-backed high-tech fund In-Q-Tel to her office

https://www.politico.com/news/2026/03/23/in-q-tel-odni-cia-control-00840302
3•avidruntime•30m ago•0 comments

Philosophical DNA

https://diagnostic.millermanschool.com/
1•iamjfu•30m ago•0 comments

Where Should the Agent(s) Live?

https://opencomputer.dev/blog/where-should-the-agent-live
4•iacguy•31m ago•0 comments

Why LLMs can't paragraph well

https://hollisrobbinsanecdotal.substack.com/p/for-the-love-of-god-learn-to-paragraph
2•HR01•32m ago•0 comments

PyTorch 2.11 Released

https://pytorch.org/blog/pytorch-2-11-release-blog/
1•0bytematt•33m ago•0 comments

Minutes before Trump's announcement, $800M in trades made on oil prices

https://www.9news.com.au/world/donald-trump-iran-updates-oil-futures-trade-suspicious-betting-act...
8•inaros•34m ago•0 comments

AI Trained on Birdsong Can Recognize Whale Calls

https://spectrum.ieee.org/foundation-models-google-birds-whales
1•geox•36m ago•0 comments

Leonid Radvinsky, owner of OnlyFans, dies aged 43

https://www.theguardian.com/technology/2026/mar/23/leonid-radvinsky-onlyfans-owner-death
1•chirau•38m ago•1 comments

Absolute Beginner's Guide to Databasemaxxing

https://pthorpe92.dev/databasemaxxing/
1•dvektor•38m ago•0 comments

China Just Killed the B-Pillar Zeekr Mix 2026 [video]

https://www.youtube.com/watch?v=hGV-EUR2GYQ
1•thelastgallon•39m ago•0 comments

Show HN: A CLI for building and deploying Openclaw agents

https://pinata.cloud/blog/from-docker-dread-to-agentic-flow-introducing-the-pinata-cli/
1•madrov•41m 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•10mo ago

Comments

epmatsw•10mo ago
restore and maybe switch are the two missing ones I think. Rebase for me, but that’s preference. Cherry-pick too.
rentonl•10mo ago
my co-workers used to think I was an expert in git. In reality, they memorized 7 commands while I memorized 15
hbogert•10mo ago
i memorized that a commit tree is a ordered set of patches. Everything goes from there.
Areibman•10mo ago
In similar fashion, this site has saved me countless hours fixing common git issues https://ohshitgit.com
the__alchemist•10mo ago
I need to alias:

  git add .
  git commit -am "descriptive name"
  git push

to:

  git sync "descriptive name"
horsawlarway•10mo 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•10mo 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•10mo 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•10mo ago
That sounds better but I like the granularity I get from scrutinizing specific files or the patch takes too long to review.
speff•10mo 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•10mo 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•10mo 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•10mo ago
Maybe not essential, but reflog is invaluable.

I also like to separate fetch from pull (fetch + merge).

foobarkey•10mo ago
Remove merge and add rebase and we agree :)

Oh and maybe cherry-pick

seba_dos1•10mo ago
Both are essential.
realaleris149•10mo ago
There are other commands?
incomplete•10mo 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•10mo ago
i can't take this seriously if there's no mention of the '--amend' option and 'rebase' command
OutOfHere•10mo ago
It missed "git switch" and "git restore".