frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open_slate tablet promises to last a decade with swappable batteries and storage

https://newatlas.com/consumer-tech/modular-android-tablet-open-slate-braxman-swappable-batteries/
1•breve•26s ago•0 comments

Can AI solve real math proofs? Researchers put it to the test

https://www.scientificamerican.com/podcast/episode/can-ai-actually-solve-real-math-proofs-researc...
1•Brajeshwar•41s ago•0 comments

Where Are All the Campus Protests?

https://www.theatlantic.com/ideas/2026/03/campus-protests-trump-iran/686518/
1•SanjayMehta•1m ago•0 comments

LeWorldModel with Yann LeCun

https://arxiv.org/abs/2603.19312
1•guerby•2m ago•1 comments

AirDrop Your AI: How to Transfer a Living Intelligence Between Devices in 34KB

https://kody-w.github.io/2026/03/21/airdrop-your-ai/
1•bothangles•2m ago•0 comments

HP's new AI encourages you to record f2f meetings

https://www.theregister.com/2026/03/25/hp_iq_laptop_ai/
1•geekinchief•3m ago•1 comments

Why Git Worktrees Are the Missing Piece for Parallel AI Coding Agents

https://amux.io/blog/parallel-agents-isolated-worktrees/
1•Beefin•3m ago•0 comments

Improve Privacy by Running a DNS Server Without Forwarder

https://louwrentius.com/improve-privacy-by-running-a-dns-server-without-forwarder.html
1•louwrentius•6m ago•0 comments

Noteriv – Open-Source Note-Taking App

https://github.com/thejacedev/Noteriv
1•JaceDev•7m ago•1 comments

LisPy – A Lisp interpreter for AI agent orchestration

https://github.com/kody-w/lisppy
1•bothangles•9m ago•0 comments

AmigaOS 3.2 is now available digitally

https://www.hyperion-entertainment.com/index.php/news/1-latest-news/328-amigaos-32-is-now-availab...
1•codewiz•9m ago•0 comments

Android Automotive becoming 'brain' of the car

https://www.theverge.com/tech/899034/google-android-automotive-os-software-defined-vehicle
1•etothet•10m ago•0 comments

Browsers Should Have a Native Control for Per-Site Color Scheme

https://tylergaw.com/blog/color-scheme-browser-native-control/
1•m-hodges•12m ago•0 comments

Drop-in OpenAI proxy that routes to cheaper models – saves 60-85%

https://ai-bridge-router-et30.onrender.com/signup
1•BernardinoGM•13m ago•0 comments

Distributed Python with Wool: Hello World

https://medium.com/@bzurak/distributed-python-with-wool-hello-world-6f75d3b63529
1•bzurak•13m ago•0 comments

Keep up with AI with one simple list

https://www.a2i.now/
1•markke•14m ago•0 comments

Daco – CLI for search auto-completion APIs

https://github.com/djberube/daco
2•djb-at-durable•14m ago•0 comments

Ask HN: Building a deterministic AI substrate on legacy hardware

1•theantagonistai•14m ago•0 comments

Distributed Tracing in Microservices: How It Works

https://www.dash0.com/knowledge/what-is-distributed-tracing
1•ayoisaiah•14m ago•0 comments

Crossview Headlamp plugin is now available

https://artifacthub.io/packages/headlamp/crossview-headlamp/crossview-headlamp
1•moeidheidari•15m ago•0 comments

I Asked 3 AI Agents to "Make It Better" Until They Refused. Only One Did

https://pooyam.dev/ai-agents-sycophancy-test
1•py4•15m ago•0 comments

Show HN: BUY.VODKA—Search engine for US spirits label approvals (TTB/COLA)

https://buy.vodka/
1•hunterleaman•16m ago•0 comments

Show HN: First-token-only flaw in Claude Code permissions (triage bot too)

https://spitfirecowboy.com/workshop/0008-the-receipt-was-lying/
1•Apylon777•16m ago•0 comments

AI Gets Cheaper. Your AI Bill Doesn't

https://kyletsai123.substack.com/p/ai-gets-cheaper-your-ai-bill-doesnt
1•Kyle0939•17m ago•0 comments

MariaDB Completes GridGain Acquisition

https://mariadb.com/newsroom/press-releases/mariadb-completes-gridgain-acquisition-to-power-the-n...
1•Klaster_1•17m ago•0 comments

Show HN: FlowScript – Agent memory where contradictions are features

https://github.com/phillipclapham/flowscript
2•phillipclapham•17m ago•0 comments

Wristband enables wearers to control a robotic hand with their own movements

https://techxplore.com/news/2026-03-wristband-enables-wearers-robotic-movements.html
1•Brajeshwar•18m ago•0 comments

Agentic Yield- Agentic AI News and Intel for Builders and Founders

https://x.com/AgenticYield
1•akacaptain•18m ago•1 comments

Europe's Tech Exodus Drained $1.4T in Value

https://www.bloomberg.com/news/articles/2026-03-25/europe-s-tech-exodus-drained-1-4-trillion-in-v...
3•alephnerd•19m ago•1 comments

A multi-week, multi-ecosystem attack chain spanning GitHub Actions, npm, PyPI

https://ramimac.me/teampcp/
1•dsr12•19m 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".