frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Once Upon a Boot

https://once-upon-a-boot.github.io/
1•pbou•36s ago•0 comments

Z80 Sans – a disassembler in a font (2024)

https://github.com/nevesnunes/z80-sans
1•pabs3•1m ago•0 comments

Show HN: MarkNote – Local-First Wysiwyg Markdown Editor (Tauri/Rust)

https://marknote.pages.dev/
1•cacao-cacao•2m ago•0 comments

Ytm-player: full-featured YouTube Music player for the terminal

https://github.com/peternaame-boop/ytm-player
1•handfuloflight•3m ago•0 comments

I left work early to get a hug from my wife

https://rxa.me/why/
2•regular-bob•4m ago•0 comments

Jensen Huang says Nvidia is pulling back from OpenAI and Anthropic

https://techcrunch.com/2026/03/04/jensen-huang-says-nvidia-is-pulling-back-from-openai-and-anthro...
2•jnord•6m ago•0 comments

Google Research Language Explorer

https://sites.research.google/languages/language-explorer/
1•gmays•8m ago•0 comments

Show HN: RecruitPhysician – An easier way to find physicians

https://recruitphysician.com/
1•healthtal•10m ago•0 comments

Codex 5.3 (Xhigh) Solved a 6 Month Old Bug in Ghostty

https://twitter.com/mitchellh/status/2029348087538565612
1•dunb•10m ago•0 comments

[satire] Claude Code build my open source project in 5 minutes

https://www.sammystraus.com/#satire-claude-code-build-my-entire-open-source-project-in-5-minutes
2•sammy0910•11m ago•4 comments

Built a tiny edge-based tracker for AI/LLM crawlers on my Astro blog

https://xergioalex.com/blog/tracking-invisible-ai-bot-analytics/
1•xergioalex•13m ago•0 comments

I Wail, for My Tailscale Fails: How My Packets Got Dropped Beyond the Pale

https://jusung.dev/posts/tailscale-wsl/
1•badeeya•14m ago•3 comments

Wikifunctions: Convert Malay Rumi to Jawi

https://www.wikifunctions.org/view/en/Z31670
1•altilunium•14m ago•0 comments

Paper for Water

https://earthchronicles.substack.com/p/paper-for-water
1•taguniversalm•18m ago•1 comments

GLP-1 drugs protect against new or worsening addictions, large study shows

https://www.reuters.com/business/healthcare-pharmaceuticals/glp-1-drugs-protect-against-new-or-wo...
1•0in•19m ago•0 comments

Show HN: MCPHound MCP servers together, create attack paths solo scanners miss

https://github.com/tayler-id/mcphound
1•tayler123•24m ago•0 comments

Show HN: Shinobi – 10-second security scanner for developers

https://github.com/AkrijSama/Shinobi
1•SolidDark•24m ago•0 comments

Computational Models of Interoception and Body Regulation (2021)

https://pmc.ncbi.nlm.nih.gov/articles/PMC8109616/
1•mbil•25m ago•0 comments

Apple Does Not Include a Charger with All New MacBooks in UK and EU

https://www.macrumors.com/2026/03/04/macbook-neo-no-charger-in-uk-or-eu/
3•WaitWaitWha•28m ago•1 comments

Dabao board features open-source hardware RISC-V MCU

https://www.cnx-software.com/2026/03/04/dabao-board-features-open-source-hardware-baochip-1x-risc...
2•MassPikeMike•29m ago•0 comments

Guard rails for AI agents and the developers who ship with them

https://devrail.dev
1•mate0grand3•30m ago•1 comments

Show HN: How ads should work on chatbots, and why no one has built it yet

https://www.june.kim/advertising-journey/
1•kimjune01•31m ago•2 comments

Tell HN: AI Lies About Having Sandbox Guardrails

3•benjosaur•31m ago•0 comments

Show HN: Nodepp – A C++ runtime for scripting at bare-metal speed

https://github.com/NodeppOfficial/nodepp
1•EDBC_REPO•33m ago•1 comments

Get Cited by Gemini, Claude, Perplexity,& ChatGPT, SEO Bot ( AI Skill Include)

https://github.com/JoinDataCops/react-prerender-datacops
2•simullab•33m ago•1 comments

Show HN: Multi platform/multi service (several REd for it) OCR daemon/texthooker

https://github.com/AuroraWright/owocr
1•AuroraWright•34m ago•0 comments

Show HN: Mount any OpenAPI/Swagger API (or non-API JSON) as a local filesystem

https://github.com/scottvr/apifusefs/blob/main/README.md
1•ycombiredd•36m ago•1 comments

The American, Israeli and Iranian Weapons Being Deployed in Middle East

https://www.bellingcat.com/news/2026/03/03/bombs-will-fall-everywhere-the-american-israeli-and-ir...
3•colinprince•38m ago•0 comments

US tech firms pledge at White House to bear costs of energy for datacenters

https://www.theguardian.com/us-news/2026/mar/04/us-tech-companies-energy-cost-pledge-white-house
8•geox•39m ago•6 comments

Just Use Postgres

https://amattn.com/p/just_use_postgres.html
3•todsacerdoti•40m 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".