frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: AnyCreature. making 3D creature by agent. harness by 3D assets pipeline

https://github.com/Ariescar/anyCreature
1•Ariescar•2m ago•0 comments

Google buys crashed airline Spirit's data at auction, because AI

https://www.theregister.com/ai-and-ml/2026/08/18/google-buys-crashed-airline-spirits-data-at-auct...
1•pseudolus•2m ago•0 comments

Native vLLM and ROCm 7.15 for RX 6000 (RDNA2) on Windows 11 – 26 Tflops FP16

https://github.com/sebastianmechno-sys/vllm-rocm-windows-rdna2
1•esseba-dev•4m ago•0 comments

MacBook Is Now an AI Workstation: Run Qwen 3.8 Locally

https://suyash-joshi.medium.com/your-macbook-is-now-an-ai-workstation-run-qwen-3-8-locally-d1e103...
1•suyash•5m ago•0 comments

Show HN: MeetMoves – video/GIF backgrounds for Google Meet, no OBS needed

https://chromewebstore.google.com/detail/meetmoves/pcihfjkbfcfademdaplkhmgngdlkfepg
1•amu4biz•9m ago•0 comments

KTransformers 0.7 Expands AVX-512 Support to Benefit AMD EPYC Servers

https://www.phoronix.com/news/KTransformers-0.7
1•rbanffy•20m ago•0 comments

Global collaboration group for people worldwide

3•jonahSong•32m ago•0 comments

An X Live Show for Indie Founders

https://x.com/jaimememb
1•Jaime_MB•33m ago•0 comments

Lisp Used in Nanotechnology [video]

https://www.youtube.com/watch?v=fytGL8vzGeQ
1•dipanshuhappy•37m ago•0 comments

The Case for Tri-State Dark Mode Toggles

https://www.bram.us/2026/08/18/the-case-for-tri-state-dark-mode-toggles/
1•cheeaun•39m ago•0 comments

How the Dutch Police Clung to Predictive Policing for a Decade Without Evidence

https://algorithmwatch.org/en/dutch-police-cas-predictive-policing/
4•giuliomagnifico•39m ago•0 comments

Learning always pays dividends someday

https://ad4mou.com/posts/learning-pays-dividends
1•adamrjk•42m ago•0 comments

Minimo: Voice Translate and Note

https://apps.apple.com/us/app/minimo-voice-translate-note/id6783599378
1•minimoai•43m ago•0 comments

I built a way to let ChatGPT Web review your local repo

https://github.com/Lukie-81/RepoRelay
1•Lukie-81•43m ago•0 comments

Show HN: Self University – Interactive puzzles to learn programming

https://selfuniversity.site/en/welcome
2•dima853•44m ago•0 comments

DeepSeek-V4-Pro-0813 outperforming Fable

https://github.com/Tiger3807861189/DeepSeek-V4-J-Space-Capability-Realization-Report
1•ed_mercer•45m ago•0 comments

Show HN: Reproof – A non-linear writing app for perfectionists

https://reproof.app
2•maguay•45m ago•1 comments

Lucille Ball Is the Reason We Have 'Star Trek' – Here's What Happened (2016)

https://www.businessinsider.com/lucille-ball-is-the-reason-we-have-star-trek-heres-what-happened-...
5•thunderbong•47m ago•0 comments

PkgDiet – Find unused, bloated, and unmaintained NPM packages and alternatives

https://www.npmjs.com/package/pkgdiet
2•omtajne•49m ago•0 comments

Kraubex AI

https://www.kraubex.de/product
1•venu1807•50m ago•0 comments

PromptQuorum, optimize locally prompts and analyze results of multiple AIs

https://www.promptquorum.com/waitlist
1•PromptQuorum•52m ago•1 comments

A self-hosted, database-less note taking web app

https://github.com/dullage/flatnotes
2•saikatsg•52m ago•0 comments

Funding internet freedom together: results of first participatory funding round

https://blog.torproject.org/funding-internet-freedom-together/
2•raybb•53m ago•0 comments

Proposed Architecture for Next Generation Payment Infrastructure

https://zenodo.org/records/21991408
1•sangamdas•1h ago•0 comments

OpenAI and Anthropic in price war as Chinese AI rivals gain ground

https://www.ft.com/content/32a70a3c-7d28-40b4-808e-36edb58c7d01
2•mgh2•1h ago•1 comments

Arctype – An AI workspace that builds documents, apps, and handles email

https://arctype.org/
1•AdamNeto•1h ago•1 comments

Show HN: Roadmark – roadmaps that branch instead of overwriting the plan

https://yourroadmark.com
1•alekstret•1h ago•0 comments

When I worked at Apple, I remember seeing code that was 15 years old

https://twitter.com/sean_geiger/status/2089487682305216534
15•tosh•1h ago•10 comments

GenOffice fork that works with any local LLM instead of a cloud account

https://github.com/douglas168/open-genoffice
2•douglas168•1h ago•0 comments

I'm done coding with AI [video]

https://www.youtube.com/watch?v=2ZU3j4GQ4K8
1•mike-the-brain•1h 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".