frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

New Business Formation Is Surging–Again

https://marginalrevolution.com/marginalrevolution/2026/06/more-firms-more-dynamism.html
1•surprisetalk•36s ago•0 comments

3DO's New Owner working to Return to the Hardware Arena

https://www.timeextension.com/news/2026/06/3dos-new-owner-working-carefully-through-complexities-...
1•markus_zhang•37s ago•0 comments

Show HN: CiteReady – check if your site can be cited by AI search engines

https://citeready.sprytools.com/
1•grenzfrei•55s ago•0 comments

Show HN: TOTP generator – SHA1/256/512 30/60/ 6-9 not via SubtleCrypto

https://h1yapp.com/en/scripting/pwa/totpgenerator/
1•h1yapp•57s ago•0 comments

SocialPlod vs. SocialPilot: Why Google Thinks SocialPlod Is a Typo

https://socialplod.com/blog/socialplod-vs-socialpilot-why-google-thinks-socialplod-is-a-typo
1•dexterwura•2m ago•0 comments

Show HN: CmdBox – A CLI tool for saving and running parameterized commands

https://github.com/PhantomLambSoft/CmdBox
1•MalloyDelacroix•2m ago•0 comments

How much better is Strix 1.0? Results from a small rerun

https://theaq.blog/2026/04/28/how-much-better-is-strix-1-0-results-from-a-small-rerun.html
1•TheArtificialQ•2m ago•0 comments

EDDI – sovereign AI orchestrator, now OpenSSF Gold and a UN (UNIDO) partner

https://eddi.labs.ai/
1•ginccc•5m ago•0 comments

Show HN: I Made an SDK to work with Vapi and Retell without vendor lock in

https://voice-ai.dev
1•marchypolite•6m ago•0 comments

Knoppix

https://www.knopper.net/knoppix/index-en.html
1•hoangvmpc•6m ago•0 comments

Show HN: OpenATP: A platform for automated theorem proving in Lean

https://github.com/henryrobbins/open-atp
1•henryrobbins00•7m ago•0 comments

Pong game recompiles its own source code every frame

https://www.tomshardware.com/tech-industry/pong-game-that-recompiles-itself-every-frame-wins-the-...
1•GavinAnderegg•9m ago•0 comments

Plur1bus

https://en.wikipedia.org/wiki/Pluribus_(TV_series)
2•hosteur•10m ago•0 comments

AI agents finish a third of the job, and the math says why

https://okaneland.com/study/do-ai-agents-work-yet/
2•ermantrout•10m ago•1 comments

Show HN: PulseDB – Unified Redis and Pinecone Alternative in Python

https://github.com/gkavinrajanCodes/pulseDB
1•gkavinrajan•10m ago•0 comments

MS reveals why Windows 11 says a file is in use after closing app, plus the fix

https://www.windowslatest.com/2026/06/30/microsoft-reveals-why-windows-11-keeps-saying-a-file-is-...
3•thunderbong•11m ago•0 comments

Burn less, ship more: the case for token optimization

https://www.multiplayer.app/blog/burn-less-ship-more-the-case-for-token-optimization/
1•argoeris•11m ago•0 comments

China's humanoid robots captivated the world, a rental market shows their limits

https://www.cnn.com/2026/06/30/tech/china-humanoid-robot-ai-rental-intl-hnk-dst
1•breve•12m ago•0 comments

Show HN: NodePad – AI agent on a canvas instead of a linear chat

https://node-pad.com/
2•palazski•13m ago•0 comments

Memoirs of Extraordinary Popular Delusions and the Madness of Crowds

https://www.gutenberg.org/ebooks/24518
3•lstodd•13m ago•0 comments

Much ado about zone 2

https://pubmed.ncbi.nlm.nih.gov/40560504/
2•iamacyborg•13m ago•0 comments

Running a coding agent locally with MLX for when you hit your token cap

https://bart.degoe.de/running-a-coding-agent-locally/
1•bartdegoede•13m ago•0 comments

EYG: A Programming Language for Humans

https://crowdhailer.me/2026-06-08/a-programming-language-for-humans/
2•surprisetalk•15m ago•0 comments

Offduty – hold your Gmail and deliver it in batches on your schedule

https://offduty.me/
2•fynngentle•15m ago•1 comments

Claudeshoring

https://everythingengineer.substack.com/p/claudeshoring-enterprise-offshore-ai-projects
1•mikecarroll•15m ago•0 comments

Show HN: GSV – a personal AI computer that unifies your machines

https://github.com/deathbyknowledge/gsv
3•deathbyknowledg•16m ago•0 comments

Techno History: Archive of 475 shows with over 9000 documented tracks (German)

https://stevemasonexperience.info/
2•nor0x•18m ago•0 comments

Benchmark agent configs with a simple CLI tool

https://github.com/emiliolugo/clawmark
1•emiliolugo•19m ago•0 comments

Architecture as an executable constraint instead of documentation

https://github.com/arman-jalili/guardian-framework
3•arman-w-jalili•19m ago•0 comments

WhatsApp to let people chat with usernames

https://www.bbc.co.uk/news/articles/c1dykk3135xo
2•edward•19m 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".