frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Restartable Sequences, TCMalloc, and Hyrum's Law

https://lwn.net/Articles/1070072/
1•signa11•5m ago•0 comments

Caltrans Explores High-Speed Bus Network to Complement Rail System

https://www.kqed.org/news/12083467/caltrans-explores-high-speed-buses-as-alternative-to-rail-in-c...
1•rawgabbit•7m ago•0 comments

Popular node-ipc NPM Package Infected with Credential Stealer

https://socket.dev/blog/node-ipc-package-compromised
1•csmantle•8m ago•0 comments

Show HN: Latencies and BEIR – Typesense, Meilisearch, Elasticsearch, Amgix Now

https://amgix.io/blog/2026/05/14/release-now-v0.1.1/
2•kvasserman•10m ago•1 comments

Kill Canvas. Now

https://www.chronicle.com/article/kill-canvas-now
2•incomplete•15m ago•0 comments

We Tested DeepSeek V4 Pro and Flash Against Claude Opus 4.7 and Kimi K2.6

https://blog.kilo.ai/p/we-tested-deepseek-v4-pro-and-flash
1•nl•16m ago•0 comments

Temper – A programming language for libraries translated to all the others

https://temperlang.dev/
1•nikolay•24m ago•1 comments

Codex Harness in OpenClaw

https://openclaw.ai/blog/openai-models-in-openclaw-done-right
2•sjf•32m ago•0 comments

AI Slopification and Writing

https://ordinaryintelligence.substack.com/p/ai-slopification
2•mldev_exe•32m ago•0 comments

7 in 10 Americans oppose data centers being built in their communities

https://www.washingtonpost.com/nation/2026/05/13/7-10-americans-oppose-data-centers-being-built-t...
6•1vuio0pswjnm7•34m ago•0 comments

Hey You, Start Communicating

https://kevquirk.com/hey-you-start-communicating
2•Curiositry•37m ago•0 comments

I'm trying to optimize in person recruiting

https://www.get-resume.app
1•JaiJC•42m ago•0 comments

Princeton will supervise exams for first time in 133 years because of AI

https://www.independent.co.uk/news/world/americas/princeton-proctor-exams-ai-b2976111.html
2•smurda•43m ago•0 comments

Cut Off: why access to frontier AI will soon be scarce and selective

https://writing.antonleicht.me/p/cut-off
2•thoughtpeddler•47m ago•0 comments

Savepoint – A CLI for TDD

https://github.com/NamtaoProductions/savepoint
2•rrvsh•47m ago•1 comments

Plain Text. Paper, Less (PTPL)

https://ellanew.com/tagged/ptpl
8•jethronethro•48m ago•0 comments

UFerris a Versatile Learner Board for Rust Embedded Beginners

https://www.theembeddedrustacean.com/uferris
2•stmw•51m ago•0 comments

New Linux LPE, 5.10 and above (ptrace_may_access mm-NULL + pidfd_getfd)

https://github.com/0xdeadbeefnetwork/ssh-keysign-pwn
3•Tiberium•53m ago•1 comments

Velonus – Open-source AppSec scanner that deduplicates SAST noise

https://github.com/AliAmmar15/Velonus
3•AliAmmar15•53m ago•0 comments

OpenAI Considers Legal Action Against Apple in Strained Relationship

https://www.nytimes.com/2026/05/14/technology/openai-apple-legal-action.html
3•donohoe•56m ago•0 comments

XS Programming Language

2•xs-lang•56m ago•0 comments

Show HN: Easy Locality Domain Lookup

https://locality-domains.pages.dev/
2•ronbenton•58m ago•0 comments

15% of AI agent skill files carry hardcoded credentials with DB write access

https://securityboulevard.com/2026/05/capsule-security-analysis-details-scope-of-vulnerable-ai-ag...
4•Armor1AI•1h ago•0 comments

Supply Chain Inheritance

https://www.citriniresearch.com/p/semis-memo-supply-chain-inheritance
2•gmays•1h ago•0 comments

A Private Way to Chat with AI

https://about.fb.com/news/2026/05/incognito-chat-whatsapp-meta-ai/
2•spullara•1h ago•1 comments

Anthropic agrees terms of $30B funding deal at $900B valuation

https://www.ft.com/content/9deae3c6-716d-4f4d-8b09-434d8519f847
4•mmmmmbop•1h ago•0 comments

Claude Code Issue that important facts were forgotten when sessions were reseted

https://github.com/rkceve/Sanma
1•rkceve•1h ago•0 comments

Elevated error rates on Opus 4.7

https://status.claude.com/incidents/8z7l5zcy0v3b
47•rob•1h ago•36 comments

Interactive explorer for Bun's Rust migration

https://bun-to-rust-fanahova.zocomputer.io/
1•FanaHOVA•1h ago•0 comments

Build iterative repair loops with Codex

https://developers.openai.com/cookbook/examples/codex/build_iterative_repair_loops_with_codex
4•gmays•1h ago•1 comments
Open in hackernews

Git Commands That Cover 90% of a Developer's Daily Workflow

https://jsdev.space/15-git-commands/
29•javatuts•1y ago

Comments

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

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

to:

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

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

foobarkey•1y ago
Remove merge and add rebase and we agree :)

Oh and maybe cherry-pick

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