frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Live TSA Wait Times Dashboard

https://tsa.fromthetraytable.com/
1•takoid•31s ago•0 comments

The surprising link between back pain and a sensitivity to loud noises

https://www.washingtonpost.com/wellness/2026/03/24/chronic-back-pain-sound-sensitivity/
1•bookofjoe•52s ago•1 comments

Welcome to FastMCP

https://gofastmcp.com/getting-started/welcome
2•Anon84•2m ago•0 comments

Writing an LLM from scratch, part 32g – Interventions: weight tying

https://www.gilesthomas.com/2026/03/llm-from-scratch-32g-interventions-weight-tying
1•gpjt•2m ago•0 comments

We scored 37 devtools companies to build a PMF benchmark–here's what we found

https://evilmartians.com/chronicles/product-market-fit-methodology-devtools
2•marko_dancer•3m ago•0 comments

Ask HN: Constrained LLM Games

1•AymanJabr•6m ago•0 comments

Show HN: Updated GiantJSON Viewer – Opening 100GB JSONs on Android (Rust+SIMD)

https://giantjson.com/
1•kotysoft•6m ago•2 comments

The Kaizen of Context: The Shift from Generation to Verification

https://carlsz.dev/posts/test-driven-design-kaizen-of-context
1•LyalinDotCom•6m ago•0 comments

The Case for Becoming an Engineering Manager

https://newsletter.thelongcommit.com/p/the-case-for-becoming-a-manager
1•jcmartinezdev•6m ago•0 comments

The Lost BART of the Midwest: Detroit's 1974 Transit Dream

https://thetransitguy.substack.com/p/the-lost-bart-of-the-midwest-detroits
1•FinnKuhn•8m ago•0 comments

Show HN: Krira Augment – Production-ready RAG in minutes

https://www.kriralabs.com/waitlist
1•kriralabs•9m ago•0 comments

Murten Panorama Digital Twin Scanning Project

https://paulbourke.net/panorama/MurtenStory/
1•Uncorrelated•9m ago•0 comments

Guido Interviews Brett Cannon

https://gvanrossum.github.io/interviews/BrettCannon.html
1•BerislavLopac•10m ago•0 comments

Speeedy – A local-first, distraction-free RSVP reader for power users

https://speeedy.pages.dev/
1•Lasang•11m ago•0 comments

Show HN: Nekoni – local AI agent accessible from your phone, no cloud

https://nekoni.dev/
1•denysm•12m ago•0 comments

SysMoBench: Evaluating AI on Formally Modeling Complex Real-World Systems

http://muratbuffalo.blogspot.com/2026/03/sysmobench-evaluating-ai-on-formally.html
1•matt_d•12m ago•0 comments

OpenClaw VPS – managed OpenClaw without infra babysitting (7-day trial)

https://openclawvps.com/
1•jcochranio•12m ago•0 comments

Wordif.sh – word-by-word text comparison in color, output to HTML or PDF

https://github.com/jazzfan2/wordif
1•robtoscani•12m ago•1 comments

A Poisoned Security Scanner Became the Key to Backdooring LiteLLM

https://snyk.io/articles/poisoned-security-scanner-backdooring-litellm/
1•taubek•14m ago•0 comments

Show HN: Agentic Task Queue – batch processing of agentic tasks

2•endyai•16m ago•0 comments

How to Play Flight Simulator in VR on an EC2 Cloud Gaming Instance

https://vishal.rs/essay/how-to-play-flight-simulator-in-vr-on-an-ec2-cloud-gaming-instance
2•givemeethekeys•17m ago•0 comments

Image Generation and Upgraded AI Coding with Mojo

https://www.modular.com/blog/modular-26-2-state-of-the-art-image-generation-and-upgraded-ai-codin...
1•visheshdembla•18m ago•0 comments

KiCad 10 release – Dark mode, graphical DRC rule editor, new file importers

https://www.cnx-software.com/2026/03/22/kicad-10-release-dark-mode-graphical-drc-rule-editor-new-...
3•conductor•19m ago•1 comments

Tell HN: Russians may soon lose access to the global internet

5•taminka•20m ago•2 comments

Where You Work Matters List 2026

https://www.whereyouworkmatters.org/the-list/
2•impish9208•21m ago•1 comments

Singapore for Developers: Relocation Guide

https://relocateme.substack.com/p/moving-to-singapore-for-work
2•andrewstetsenko•22m ago•0 comments

HellForge: level editor for idTech4 games with procedural generators and MCP

https://hellforge.dev
2•klaussilveira•29m ago•0 comments

The Carbon Cost of Email

https://newslttrs.com/carbon-cost-of-email-part-two/
1•spzb•29m ago•0 comments

Fyrox Game Engine 1.0.0 released

https://fyrox.rs/blog/post/fyrox-game-engine-1-0-0/
1•klaussilveira•30m ago•0 comments

So what if LLMs can produce great art?

https://rebeccadai.substack.com/p/on-the-nature-of-daylight
4•randomparticlez•31m ago•1 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".