frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Same Query, Three Results: Benchmarking ParadeDB and Postgres FTS

https://www.paradedb.com/blog/benchmarker-iteration
1•jamesgresql•9s ago•0 comments

Reinforcement Learning with Metacognitive Feedback Elicits Uncertainty in LLMs

https://arxiv.org/abs/2606.32032
1•jonnonz•1m ago•0 comments

Show HN: Ex Situ, open-source spatial index of displaced cultural artifacts

https://exsitu.app/map
1•hbyel•1m ago•0 comments

Secure Unix ancestor KSOS did type safety before Rust made it cool

https://www.theregister.com/os-platforms/2026/07/06/secure-unix-ancestor-ksos-did-type-safety-bef...
1•rbanffy•1m ago•0 comments

Bridg.fun – A minimal, zero-knowledge text and file bridge between devices

https://bridg.fun
1•peeposaur•3m ago•0 comments

The Event-Sourced Domain Modeling Language Is Now Open-Source

https://www.esdm.io/
1•goloroden•4m ago•0 comments

Show HN: Disguise any article as VS Code, Excel or Slack – with a boss key

https://sneakread.com/
1•blacktechnology•6m ago•0 comments

World's only skydiving DC-9 jet [video]

https://www.youtube.com/watch?v=I1Gdar72rMU
1•jasoncartwright•7m ago•0 comments

Dear You: Beijing puts on movie night for diplomats

https://www.scmp.com/news/china/diplomacy/article/3359714/dear-you-beijing-puts-movie-night-diplo...
1•Alien1Being•9m ago•0 comments

Microsoft Can Track Users via a Windows Device ID

https://www.pcmag.com/news/a-hackers-arrest-reveals-microsoft-can-track-users-via-a-windows-device
3•ifh-hn•9m ago•0 comments

We're Living Through the AI Utopia and Can't See It

https://twitter.com/christofsalis/status/2073375047939395671
2•evizero•11m ago•0 comments

Show HN: Access-aware text-to-SQL – stop LLM agents overfetching data

https://github.com/sparklingneuronics/access-aware-text-to-sql
1•dimitarst•12m ago•0 comments

Verbalizable Representations Form a Global Workspace in Language Models

https://transformer-circuits.pub/2026/workspace/index.html
2•matthewsinclair•19m ago•1 comments

Show HN: A router that drops costs by roughly 45%

https://www.flexinference.com
1•Aperswal•22m ago•1 comments

YC CEO says he ships 37K LoC/day AI code. A developer looked under the hood

https://www.fastcompany.com/91520702/y-combinator-garry-tan-agentic-ai-social-media
15•theanonymousone•23m ago•1 comments

Show HN: Shadow Web – Cut 64–97% of web page tokens for LLM agents

https://github.com/ulinycoin/shadow-web
1•ulinycoin•25m ago•0 comments

The first AI safety letter was sent in 1949

https://vanuan.github.io/blog/2026-02-28-wiener/
1•indynz•25m ago•0 comments

The Ant Catalog Leak – Inside the NSA's Covert Hacking Program (CC) [video]

https://www.youtube.com/watch?v=FDiIC_NJ2a8
1•ary27x•27m ago•0 comments

GitHub abandons offer to burn repos on CD

https://www.theregister.com/devops/2026/07/06/github-cuts-short-offer-to-burn-repos-on-cd-after-m...
2•Alien1Being•27m ago•0 comments

Collapse of AMOC ocean current may be locked in

https://institutions.newscientist.com/article/2533017-collapse-of-amoc-ocean-current-may-already-...
2•sieste•29m ago•0 comments

Wall Street warms to SpaceX ahead of Nasdaq 100 inclusion

https://www.reuters.com/business/wall-street-warms-spacex-ahead-nasdaq-100-inclusion-2026-07-07/
2•adithyaharish•36m ago•0 comments

Oikoumene: Autonomous Agent Civilization Simulator

https://github.com/GeoLambdaAI/oikoumene/tree/main
2•Gtombri•38m ago•0 comments

CVE-2026-8451: Citrix NetScaler SAML Memory Overread

https://www.lupovis.io/lupovis-insights/
2•noktec•42m ago•0 comments

Posthorn – A self-contained email pen-pal daemon for slow, self-hosted LLMs

https://tangled.org/clee.sh/posthorn
2•circularfoyers•44m ago•0 comments

Why you should not have Managers in your class name

https://karankurani.com/writing/post/170793461763/why-you-should-not-have-managers-in-your-class/
2•BIackSwan•45m ago•1 comments

Ryzen AI Developer Platform: AMD's Own Linux Distribution Built Atop Debian

https://www.phoronix.com/review/ryzen-ai-linux-os
1•rbanffy•46m ago•0 comments

Supreme Court allows Texas to require age verification for mobile apps

https://www.cnn.com/2026/07/06/politics/supreme-court-allows-texas-to-require-age-verification-fo...
1•austin-cheney•46m ago•0 comments

Show HN: Fast, native Mac file manager (filters, fuzzy find, 9 MB, no Electron)

https://whimfiles.com
3•whimbyte•51m ago•0 comments

Microsoft admits a Windows 11 bug is eating up to 500GB of storage

https://www.windowslatest.com/2026/07/06/microsoft-admits-a-windows-11-bug-is-eating-up-to-500gb-...
6•vidyesh•51m ago•0 comments

An open model came within a whisker of Claude Opus, then lied about its own work

https://aarils.com/personal/the-unreliable-narrator
1•bridgettegraham•54m 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•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".