frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Sci-Bot: Over 85M paywalled research papers are now in a single AI model

https://sci-bot.ru/
2•CGMthrowaway•1m ago•0 comments

Ask HN: Does Continuous Pen Testing Exist?

1•devstein•2m ago•0 comments

Canada's first sovereign wealth fund

https://www.cbc.ca/news/politics/sovereign-wealth-fund-carney-major-projects-9.7178238
4•geox•4m ago•0 comments

Decoupled DiLoCo: Resilient, Distributed AI Training at Scale

https://deepmind.google/blog/decoupled-diloco/
2•metadat•5m ago•0 comments

Guess-Verify-Refine: Data-Aware Top-K for Sparse-Attention Decoding on Blackwell

https://arxiv.org/abs/2604.22312
2•matt_d•6m ago•0 comments

Why I'll Take "Socialist" Healthcare over the American "Freedom" to Go Bankrupt

https://grumpywelshman.com/why-ill-take-socialist-healthcare-over-the-american-freedom-to-go-bank...
16•cdrnsf•6m ago•0 comments

Gigabit First Nation by 2030

https://om.co/2026/04/27/gigabit-first-nation-by-2030/
1•speckx•7m ago•0 comments

How to Install WordPress on Debian 12 with Nginx

https://linuxserverguides.com/install-wordpress-debian-12.html
1•steelsmiley•7m ago•0 comments

Intel Ends Open Ecosystem Community/Evangelism Projects

https://www.phoronix.com/news/Intel-Ends-OSS-Evangelism-Repos
4•abdelhousni•8m ago•1 comments

Artificial Intelligence: Foundations of Computational Agents

https://artint.info/3e/html/ArtInt3e.html
1•gone35•9m ago•0 comments

Unlimited – Free 360° feedback for teams up to 10 employees

https://ks-agents.com/360-unlimited/
1•egesia•9m ago•0 comments

Sqlite3 WebAssembly and JavaScript

https://sqlite.org/wasm/doc/trunk/index.md
1•firasd•9m ago•0 comments

Reimagining Kernel Generation at the PTX Layer

https://standardkernel.com/blog/reimagining-kernel-generation-at-the-ptx-layer-learning-from-and-...
1•matt_d•9m ago•0 comments

Neo Semiconductor 3D X-DRAM for AI processors passed proof-of-concept validation

https://www.tomshardware.com/tech-industry/artificial-intelligence/neo-semiconductors-revolutiona...
1•rbanffy•10m ago•0 comments

Sperm carry unexpected genetic messages – Science – AAAS

https://www.science.org/content/article/sperm-carry-unexpected-genetic-messages
1•rbanffy•12m ago•0 comments

Sum-Check as an Algebraic Tensor Reduction: Part I

https://blog.zksecurity.xyz/posts/tensor-reductions-1/
2•baby•12m ago•0 comments

I self-host a time-sorted list of STEM, Arts and Design articles

https://limereader.com
1•busymom0•12m ago•0 comments

Good News If You Have a Sony TV and Were Hoping It Would Become Less Useful

https://www.techdirt.com/2026/04/24/good-news-if-you-have-a-sony-tv-and-were-hoping-it-would-beco...
3•cf100clunk•12m ago•0 comments

Show HN: Pylon – Sentry Errors to PRs via Claude Code, with Telegram Approval

https://github.com/pylonto/pylon
2•bojanstef•13m ago•0 comments

With TPU 8, Google Makes GenAI Systems Better, Not Just Bigger

https://www.nextplatform.com/compute/2026/04/24/with-tpu-8-google-makes-genai-systems-much-better...
1•rbanffy•13m ago•0 comments

A Deductive System for (Hardware-Software) Contract Satisfaction Proofs

https://arxiv.org/abs/2604.09165
1•matt_d•13m ago•0 comments

Ask HN: Any examples of useful AI agents?

1•taikon•14m ago•0 comments

GPU Spot Prices Surge 114% in Six Weeks

https://tomtunguz.com/b200-gpu-pricing-spot-market-model-releases/
4•swolpers•14m ago•0 comments

Jack Dorsey's Block launches new Bitcoin hardware wallet, Bitkey

https://bitkey.world
1•obnauticus•15m ago•0 comments

Study Finds a Third of New Websites Are AI-Generated

https://www.404media.co/study-finds-a-third-of-new-websites-are-ai-generated/
3•cdrnsf•15m ago•0 comments

A Third of New Websites Created Since 2022 are AI-Generated

https://ai-on-the-internet.github.io/
4•ilreb•15m ago•0 comments

Agentic World Modeling: Foundations, Capabilities, Laws, and Beyond

https://huggingface.co/papers/2604.22748
1•matrix-agent•16m ago•0 comments

Claude Desktop Buddy

https://github.com/anthropics/claude-desktop-buddy
2•henryaj•19m ago•1 comments

Intentional Inefficiency in Software Design

https://support.cch.com/oss/ml/kb/solution/Why-is-the-CPU-usage-on-my-CCH-ProSystem-fx-Scan-Admin...
1•nohell•20m ago•0 comments

Source code protection in JavaScript desktop apps

https://teamdev.com/mobrowser/blog/how-source-code-protection-works-in-javascript-desktop-apps/
1•Ikryanov•20m 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•12mo ago

Comments

epmatsw•12mo ago
restore and maybe switch are the two missing ones I think. Rebase for me, but that’s preference. Cherry-pick too.
rentonl•12mo 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•12mo ago
In similar fashion, this site has saved me countless hours fixing common git issues https://ohshitgit.com
the__alchemist•12mo ago
I need to alias:

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

to:

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

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

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

Oh and maybe cherry-pick

seba_dos1•11mo ago
Both are essential.
realaleris149•12mo 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".