frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Halo BCA chat WhatsApp 0817395377

1•SirTrip•3m ago•0 comments

LLMs and the Semantic Revolution

https://apenwarr.ca/log/20251120
1•flancian•4m ago•0 comments

Why I Wrote Rmlx

https://hughjonesd.github.io/why-I-wrote-Rmlx.html
1•dash2•5m ago•0 comments

Quantum physicists have shrunk and "de-censored" DeepSeek R1

https://www.technologyreview.com/2025/11/19/1128119/quantum-physicists-compress-and-deconsor-deep...
1•donutloop•7m ago•0 comments

Cara Akses halo-BCA menggunakan layanan Call center WhatsApp 24 jam

1•SirTrip•7m ago•0 comments

Layanan Halo BCA Segera Hubungi Call Center Bank BCA

1•SirTrip•9m ago•0 comments

IBM: Scaling beyond our roadmap with networked quantum computers

https://www.ibm.com/quantum/blog/networked-quantum-computers
1•donutloop•9m ago•0 comments

IBM and Cisco Announce Plans to Build a Network of Quantum Computers

https://newsroom.ibm.com/2025-11-20-ibm-and-cisco-announce-plans-to-build-a-network-of-large-scal...
1•donutloop•9m ago•0 comments

So Long, Firefox, Part One

https://hackaday.com/2025/11/20/so-long-firefox-part-one/
1•HotGarbage•13m ago•0 comments

Show HN: Chaotic version of Flappy Bird coded 100% by Gemini 3.0

https://chaos-flappy.pagey.site/
2•freakynit•15m ago•0 comments

Halo BCA Hubungi 62.817.395.377

1•tafseerkhazi•17m ago•0 comments

Show HN: Git-evac – Offline Desktop App, JS free and written in Go with WebASM

https://github.com/cookiengineer/git-evac
1•cookiengineer•20m ago•0 comments

US economy adds 119,000 jobs in September as unemployment rate rises

https://www.aljazeera.com/economy/2025/11/20/us-economy-adds-119000-jobs-in-september-as-unemploy...
1•mgh2•21m ago•0 comments

AI Mathematical Olympiad – Progress Prize 3

https://www.kaggle.com/competitions/ai-mathematical-olympiad-progress-prize-3/overview
2•nabla9•25m ago•0 comments

AI-Assisted Reverse Engineering with Ghidra

https://github.com/biniamf/ai-reverse-engineering
1•mars_wonder•30m ago•1 comments

Show HN: Datamorph – A clean JSON ⇄ CSV converter with auto-detect

https://datamorphio.vercel.app
1•sumit_entr42•31m ago•0 comments

Study finds 41% of EV drivers would avoid Tesla over politics

https://techxplore.com/news/2025-11-ev-drivers-tesla-politics.html
2•pjmlp•32m ago•0 comments

Olmo 3: Charting a path through the model flow to lead open-source AI

https://allenai.org/blog/olmo3
3•mseri•38m ago•0 comments

Docs.python.org – Major Outage

https://status.python.org
2•no-reply•38m ago•0 comments

There's always going to be a way to not code error handling

https://utcc.utoronto.ca/~cks/space/blog/programming/AlwaysUncodedErrorHandling
1•ingve•41m ago•0 comments

Dopamine Response Explains Behavior Fatigue Patterns

https://www.legalreader.com/dopamine-response-explains-behavior-fatigue-patterns/
1•XzetaU8•43m ago•0 comments

Show HN: Nano Banana Pro – Next‑gen AI image model playground

https://www.nanobananapro.site
1•bryandoai•45m ago•1 comments

A new, high-definition look at our galaxy

https://nautil.us/new-ai-model-captures-the-milky-way-in-stunning-detail-1248505/
1•I_Nidhi•46m ago•0 comments

Streaming platform Twitch added to Australia's teen social media ban

https://www.bbc.com/news/articles/cx2n2955g10o
2•Erikun•51m ago•0 comments

Hacker claims to steal 2.3TB data from Italian rail group, Almaviva

https://www.bleepingcomputer.com/news/security/hacker-claims-to-steal-23tb-data-from-italian-rail...
3•fleahunter•1h ago•0 comments

Crypto's connections to the rest of the financial system

https://www.reuters.com/business/finance/cryptos-connections-rest-financial-system-2025-11-20/
1•1vuio0pswjnm7•1h ago•0 comments

Brute-Forceable Airline Reservation API Left Passenger Records Vulnerable

https://alexschapiro.com/blog/security/vulnerability/2025/11/20/avelo-airline-reservation-api-vul...
2•thunderbong•1h ago•0 comments

Finding an edge against the robots needs top human expertise

https://www.thetimes.com/business/entrepreneurs/article/prosapient-competitive-edge-human-experti...
1•petethomas•1h ago•0 comments

Tipping Point or Bubble?

https://www.reuters.com/business/tipping-point-or-bubble-nvidia-ceo-sees-ai-transformation-while-...
1•1vuio0pswjnm7•1h ago•0 comments

What the UK can learn from 1914 war preparations

https://www.thetimes.com/business/economics/article/lessons-from-1914-in-how-the-uk-can-fund-a-lo...
2•petethomas•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•6mo ago

Comments

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

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

to:

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

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

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

Oh and maybe cherry-pick

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