frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Jev vs. classical ML. Strong on sentiment: Mixed across tasks

https://quicqdev.github.io/Jev-vs-ML/
1•theanonymousone•5s ago•0 comments

Is Jev the general-purpose classifier we've been waiting for?

https://twitter.com/kris_cvetko/status/2101614168763695308
1•kncvetko•4m ago•1 comments

Dragonfly 2.0: more performance for Redis and Memcached replacement

https://www.phoronix.com/news/Dragonfly-2.0-Released
2•joshcsimmons•5m ago•0 comments

AI and the Destruction of the Creative Commons

https://www.chesterwisniewski.com/post/2026-09-13-ai-is-destroying-the-creative-commons/
1•rakel_rakel•6m ago•0 comments

Show HN: WTF > Auto-check what your coding agent changed

https://github.com/LinusInnovator/wtf
1•Linusinnovator•8m ago•0 comments

Joe Shipman proves marked ruler and compass solves the general quintic

2•jjgreen•16m ago•0 comments

PDF Forgeries Are Surprisingly Rare (2022)

https://gwern.net/blog/2022/pdf-forgery
2•1317•17m ago•0 comments

Hyperbolic Navigation

https://en.wikipedia.org/wiki/Hyperbolic_navigation
1•Eridanus2•21m ago•0 comments

Away Goals Rule

https://en.wikipedia.org/wiki/Away_goals_rule
1•chistev•21m ago•0 comments

Enterprise Cyber Risk Management

https://andersenlab.com/services/cybersecurity-risk-management
1•andersen_lab•27m ago•0 comments

Be Careful with Your Select * Queries

https://notesonsystems.com/articles/why-im-done-with-select-star
1•theanonymousone•32m ago•1 comments

TeaonherChecker

https://teaonher.org
1•thefirstname322•33m ago•0 comments

Leaping Sun Dogs (2016) [video]

https://www.youtube.com/watch?v=KPPaGmtuHCY
1•joebig•36m ago•0 comments

Jev is the fastest-adopted model in AI Gateway history

https://vercel.com/blog/ai-gateway-jev-model-launch
1•flashbrew•36m ago•1 comments

A font that reads what you wrote

https://rohanadwankar.github.io/posts/semfont.html
2•RohanAdwankar•36m ago•1 comments

A deep dive into Jev, TypeSafe's System One model

https://flaviocopes.com/jev/
1•sts153•36m ago•0 comments

CoyoPedal – Full-Size Neural Amp Modeler Captures on an ESP32-S3

https://github.com/dashersw/coyopedal
1•arbayi•36m ago•0 comments

I'm so bad at billiards that I ended up in the hyperbolic plane [video]

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

MIT Just Proved LLMs Will Stop Getting Smarter, and Money Won't Fix It [video]

https://www.youtube.com/watch?v=6xQ8LQfkBg4
1•bArray•40m ago•0 comments

Show HN: Delightful Cells – reliable AI batch processing for spreadsheets

https://delightfulcells.com
1•sumtsui•43m ago•1 comments

Clawptcha: Reverse Captcha

https://clawptcha.com/
1•Kotlopou•47m ago•0 comments

Neutron Radiation, Emission and Scattering (Neutron Chemistry)

https://www.ossila.com/pages/neutron-radiation
1•peter_d_sherman•48m ago•0 comments

Drop-in Django app to serve a decent LLM-ready documentation site

https://mdjango.chesselink.com/
3•fluxmatix•55m ago•1 comments

I built an extension that hides your personal information from AI

https://github.com/arikchakma/opencloak
2•arikchakma•59m ago•0 comments

Show HN: I-server: Hide server using ICMP reflection/Destination Unreachable

https://github.com/hajoon22/i-server
4•hajoon22•1h ago•0 comments

Benchmarking Wild vs. Mold

https://davidlattimore.github.io/posts/2026/09/18/benchmarking-wild-vs-mold.html
6•birdculture•1h ago•0 comments

Microsoft agentically ports Copilot runtime to Rust for $120K

https://www.theregister.com/devops/2026/09/18/microsoft-agentically-ports-copilot-runtime-to-rust...
6•pjmlp•1h ago•0 comments

Why China is pushing back on US warnings over rapid AI development

https://www.theguardian.com/world/2026/sep/20/why-china-is-pushing-back-on-us-warnings-over-rapid...
5•chrisjj•1h ago•1 comments

Boston to Calcutta Ice Trade Began with One Shipment

https://curiowire.com/article/556
3•thunderbong•1h ago•0 comments

Show HN: Book recommendations with live library availability

https://leafle.nanosheep.net
3•kidnoodle•1h ago•4 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".