frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: What's the data model for a multi-skill AI system?

1•neobobkrause•34s ago•0 comments

Kitaru: Agent Loop Management

https://github.com/zenml-io/kitaru
1•handfuloflight•2m ago•0 comments

Mathematicians found out why waiting for the elevator takes forever

https://www.scientificamerican.com/article/mathematicians-found-out-why-waiting-for-the-elevator-...
1•sohkamyung•2m ago•0 comments

Show HN: Tmuxx – simpler tmux, fewer keystrokes, no duplicate groups

https://github.com/timsayshey/tmuxx
2•good8675309•3m ago•0 comments

Nearly half of US children are breathing dangerous levels of air pollution

https://www.theguardian.com/us-news/2026/apr/22/air-pollution-report-dangerous-levels-children
1•mitchbob•4m ago•0 comments

Software Engineering Handbook for Modern Teams

https://www.softwareengineeringhandbook.com/
10•bayburtlu•4m ago•0 comments

Time-series forecasting MCP for Claude Desktop

https://pypi.org/project/geneva-mcp/
1•codebydom•5m ago•0 comments

Advanced DNS Protection: mitigating sophisticated DNS DDoS attacks

https://blog.cloudflare.com/advanced-dns-protection/
1•theorchid•5m ago•0 comments

Ask HN: Realtime Gcloud Spend Cap?

1•julienreszka•7m ago•0 comments

Qwen/Qwen3.6-27B · Hugging Face

https://huggingface.co/Qwen/Qwen3.6-27B
2•cgeier•7m ago•0 comments

Show HN: We built a <60ms, open-source alternative to E2B using RustVMM and KVM

https://github.com/TencentCloud/CubeSandbox
1•yukunqiu•7m ago•0 comments

Show HN: BigBlueBam, MIT-licensed Work OS where agents are first-class coworkers

https://github.com/eoffermann/BigBlueBam
1•eoffermann•8m ago•0 comments

As a non-eng agency owner, here are things that have changed how we work

https://read.earlystagegrowth.com/p/14-claude-skills-and-workflows-that
1•joshlachkovic•9m ago•0 comments

Who Knew? 1 in 5 Americans Are Convinced They're Psychic

https://studyfinds.com/1-in-5-americans-convinced-theyre-psychic/
1•t-3•10m ago•0 comments

Esp-Claw: Chat Coding Edge AI Agent Framework for IoT

https://esp-claw.com/en/
1•hasheddan•10m ago•1 comments

AI Agents Are Selfish and Biology Solved It

https://eversole.dev/blog/signaling-is-the-intelligence/
2•kennethops•11m ago•0 comments

I ran a Hormuz Crisis emergent SIM: AIs started lying to hide a stalemate

3•vinserello•11m ago•1 comments

Artemis 2's Heat Shield Performed as Expected: First Results Are In

https://gizmodo.com/so-how-did-artemis-2s-heat-shield-hold-up-the-first-results-are-in-2000749198
1•bookofjoe•11m ago•1 comments

Gemini Enterprise Agent Platform, powering the next wave of agents

https://cloud.google.com/blog/products/ai-machine-learning/introducing-gemini-enterprise-agent-pl...
1•xnx•13m ago•0 comments

I refuse to play the imitation game

https://einarwh.no/blog/2026/04/15/i-refuse-to-play-the-imitation-game/
1•speckx•13m ago•0 comments

We discovered the speed limit of arithmetic – and broke it

https://www.newscientist.com/article/2521354-how-we-discovered-the-speed-limit-of-arithmetic-and-...
1•Brajeshwar•14m ago•0 comments

Kazam – my answer to static sites in the age of Claude being my main author

https://tdiderich.github.io/kazam/index.html
1•tylerdiderich•14m ago•1 comments

GPT Image 2 is here in Samsar T2V agent

https://www.samsar.one/blog/gpt-image-2-is-here-we-tried-giving-it-some-of-the-hardest-battles/
2•proy24•14m ago•1 comments

Is Claude Code going to cost $100/month? Probably not–it's all confusing

https://simonwillison.net/2026/Apr/22/claude-code-confusion/
1•gmays•14m ago•0 comments

Scaling Sameness

https://www.gradientinstitute.org/research-publications/scaling-sameness
1•dbaupp•15m ago•0 comments

Non-engineers don't know how to work with agents

https://mrprompty.com/features
1•ViktorPetrov•15m ago•1 comments

Brooks' Surgical Team Model and AI

https://jschof.dev/posts/2026/4/brooks-surgical-team-model-and-ai/
1•babybjornborg•15m ago•0 comments

Treetops glowing during storms captured on film for first time

https://www.psu.edu/news/earth-and-mineral-sciences/story/treetops-glowing-during-storms-captured...
2•t-3•15m ago•0 comments

Geometry Nodes in WebGPU

https://whoisryosuke.com/blog/2026/webgpu-node-graph/
1•juretriglav•16m ago•0 comments

Switching from Uv to PDM

https://stuartm.nz/2026/04/pdm-rocks/
1•birdculture•18m 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•11mo ago

Comments

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

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

to:

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

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

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

Oh and maybe cherry-pick

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