frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What Is WebAssembly? (2015)

https://medium.com/javascript-scene/what-is-webassembly-the-dawn-of-a-new-era-61256ec5a8f6
1•downbad_•1m ago•1 comments

I Let Claude Opus Write a Chrome Exploit

https://www.hacktron.ai/blog/i-let-claude-opus-to-write-me-a-chrome-exploit
1•svenfaw•2m ago•0 comments

Building agent skills: Intent, determinism, and stability

https://alexhans.github.io/posts/series/evals/building-agent-skills-incrementally.html
1•pramodbiligiri•3m ago•0 comments

The OSRS Botting Problem Is Architectural

https://nemo.foo/blog/osrs-botting-problem-is-architectural
1•nemofoo•3m ago•0 comments

Modern Games Look on CRT Monitors

https://www.youtube.com/watch?v=U3K_BmIxh_0
1•tiziano88•4m ago•0 comments

Gemini 3.1 Flash TTS

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-1-flash-tts/
1•langitbiru•4m ago•0 comments

Alpine.js X-Data: A Surprisingly Capable State Manager

https://www.budgetflow.cc/blog/alpine-js-x-data-a-surprisingly-capable-state-manager
1•mkrd•6m ago•0 comments

Security.ubuntu.com Is Down

https://status.canonical.com/#/incident/KNms6QK9ewuzz-7xUsPsNylV20jEt5kyKsd8A-3ptQG-0Dp5D6IWR-Dw5...
1•whalesalad•10m ago•0 comments

Dynamicland

https://dynamicland.org/
1•cl3misch•10m ago•0 comments

AI slop has hit the science creators [video]

https://www.youtube.com/watch?v=xcq5XYkFJfY
1•szmarczak•10m ago•0 comments

Zero-Copy Pages in Rust: Or How I Learned to Stop Worrying and Love Lifetimes

https://redixhumayun.github.io/databases/2026/04/14/zero-copy-pages-in-rust.html
1•ingve•10m ago•0 comments

Private Equity Turns Your Favorite [YouTube] Channels into Slop [video]

https://www.youtube.com/watch?v=ZoibAbdQf58
1•burnt-resistor•15m ago•1 comments

Show HN: I made a weekly editorial on what HN was feeling and building

https://menggg.me/vibes/week-15
1•menggg•20m ago•0 comments

What Is Purisaki Berberine Patches and How It Supports Weight Loss? [pdf]

https://www.fd.ulisboa.pt/wp-content/uploads/formidable/2/PurisakiBerberinePatchesReal1-d3baj.pdf
1•JasperFarmer•20m ago•0 comments

Nvidia Ising – Open AI Models for Quantum Computing

https://www.nvidia.com/en-us/solutions/quantum-computing/ising/
1•fuglede_•21m ago•0 comments

Agent SLOs: Grounding autonomous agents in metrics that matter

https://blog.firetiger.com/agent-slos-grounding-autonomous-agents-in-metrics-that-matter/
2•matsur•23m ago•0 comments

Shouldn't we have an agent.lock file for AI coding agents?

https://srajangupta.substack.com/p/where-is-my-agentlock-file
1•srajan_gupta•23m ago•0 comments

DFlash: Block Diffusion for Flash Speculative Decoding

https://z-lab.ai/projects/dflash/
2•oldfuture•24m ago•0 comments

Teaching AI Agents to Speak Hardware

https://quadric.ai/blog/mcp-ai-coding-assistant
1•tkocmathla•25m ago•0 comments

Delete ChatGPT Atlas Spyware

1•niagznculiau•25m ago•0 comments

Nokia Automated Indoor Design and Validation

https://www.nokia.com/blog/revolutionizing-in-building-connectivity-design-nokia-automated-indoor...
1•salkahfi•25m ago•0 comments

Critical Atlantic current significantly more likely to collapse than thought

https://www.theguardian.com/environment/2026/apr/15/critical-atlantic-current-significantly-more-...
1•tempestn•27m ago•0 comments

Who Tried Hermes Agent?

https://github.com/aipoch/medical-research-skills
1•The_resa•31m ago•1 comments

Allbirds shoe company moving to AI infra is the top

https://www.theregister.com/2026/04/15/allbirds_ai_longislandicedtea_blockchain_lolol/
1•abdelhousni•37m ago•2 comments

Radical Pie: Professional Equation Editor for Windows 10/11

https://radicalpie.com/
1•teleforce•38m ago•0 comments

Ben Lerner's Big Feelings

https://www.vulture.com/article/ben-lerner-transcription-interview.html
1•prismatic•39m ago•0 comments

Cirrus CI is shutting down: upgrade to a scalable, AI-ready alternative

https://circleci.com/blog/cirrus-ci-alternative/
1•levlaz•39m ago•0 comments

Agtop: Btop but for Your Agents

https://github.com/ldegio/agtop
1•handfuloflight•40m ago•0 comments

Germany suspends military approval for long stays abroad for men under 45

https://www.bbc.com/news/articles/ckgx103wkl1o
2•timokoesters•42m ago•1 comments

Period property drama as Shakespeare's London house discovered

https://www.thetimes.com/uk/history/article/shakespeare-london-house-discovered-blackfriars-nc7jz...
1•petethomas•43m 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".