frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Build a self-scaling OCR pipeline with Qwen 3.5 and Kubernetes

https://github.com/neural-maze/production-ocr-course
1•mtrofficus•6m ago•0 comments

Claude Code has a hardcoded instruction telling Opus 5 not to use subagents

https://old.reddit.com/r/ClaudeCode/comments/1v6y5q2/claude_code_has_a_hardcoded_instruction_tell...
1•bredren•9m ago•0 comments

The most capable resume editor I could build, as a solo dev

https://www.roleframe.ai/product/ai-resume-builder
1•larbisahli•11m ago•0 comments

The diminishing returns of productivity culture (2021)

https://annehelen.substack.com/p/the-diminishing-returns-of-productivity
3•downbad_•23m ago•0 comments

Show HN: Reproducibility Benchmark a Risk Quantitative Model

https://github.com/Fluxara-GOD/fluxara1-audit-verification-pack
2•mingshi_tz•25m ago•0 comments

What will more intelligence do for us?

https://www.noahpinion.blog/p/what-will-more-intelligence-actually
1•jinjin2•25m ago•0 comments

HomeLab #2: Immutable GitOps homelab and MikroTik hardening

https://justsomebody.dev/blog/gitops-k3s-flux
1•rafal_opilowski•26m ago•1 comments

If you feel the need to tell me your answer is AI-based, work it more

https://cephalosec.com/blog/the-hidden-cost-of-ai-is-someone-elses-time/
1•Versipelle•31m ago•0 comments

The Context Bootloader

https://adlrocha.substack.com/p/adlrocha-the-context-bootloader
1•adlrocha•32m ago•0 comments

House AI 'kill switch' bill unveiled as OpenAI hack raises alarms

https://www.politico.com/news/2026/07/23/house-ai-kill-switch-bill-unveiled-as-openai-hack-raises...
1•reasonableklout•35m ago•0 comments

Modeling Facts and Reactions with Domain Events

https://deniskyashif.com/2026/07/25/modeling-facts-and-reactions-with-domain-events/
1•deniskyashif•36m ago•1 comments

Anthropic secures its AI-native software development lifecycle

https://claude.com/blog/how-anthropic-secures-its-ai-native-software-development-lifecycle
3•_tk_•41m ago•0 comments

Visaism (Part 1): India as a Waiting Room

https://twitter.com/samyak128/status/2079837839798260154
1•barry-cotter•43m ago•0 comments

Fallback Font

https://en.wikipedia.org/wiki/Fallback_font
1•pndy•46m ago•0 comments

Yann LeCun's Bet That Intelligence Starts in the World

https://aryeian.blog/articles/jepa-world-models.html
1•plun9•46m ago•0 comments

Teach Yourself Programming in Ten Years (1998)

https://www.norvig.com/21-days.html
2•vinhnx•47m ago•0 comments

YouTube Comments in .csv

1•cristyg0101•48m ago•0 comments

A protocol for AI agent workspace state and effect management

https://github.com/eouzoe/reel
1•eouzoe•52m ago•0 comments

Reth ExEx spawn_critical_task terminates node on any plugin panic

https://github.com/paradigmxyz/reth/security/advisories/GHSA-whc8-8pf6-5ch6
1•eouzoe•53m ago•0 comments

Claude Code Cut Their System Prompt by 80%. Does That Work for Small Models Too?

https://antigma.ai/blog/2026/07/25/short-prompt-small-models
2•ubermon•1h ago•1 comments

Janet Lustgarten: An Oral History of the Founding of Kx Systems

https://medium.com/@Abby.Gruen/janet-lustgarten-an-oral-history-founding-kx-systems-c11d2ccfed24
1•tosh•1h ago•0 comments

French beekeepers' fury at lifting of pesticides ban

https://www.theguardian.com/world/2026/jul/26/french-beekeepers-fury-lifting-of-pesticides-ban
5•geox•1h ago•0 comments

Chat, we've made a terrible mistake

https://sgnt.ai/p/terrible-mistake/
2•petesergeant•1h ago•2 comments

Supervised Fire-and-Forget in Go

https://rednafi.com/go/supervised-fire-and-forget/
2•olexsmir•1h ago•0 comments

Teachers decry plan for humanoid robot in New York high school

https://www.theguardian.com/us-news/2026/jul/25/new-york-humanoid-robot-teachers-school
3•thomascountz•1h ago•0 comments

Let Local LLMs Search the Web Without Burning 100k+ Tokens

https://medium.com/@marcbuilds/tinysearch-let-your-small-local-llm-search-the-web-without-burning...
2•MarcBuilds01•1h ago•0 comments

If another civilisation lived on Earth before us, would we know?

https://www.rnz.co.nz/news/world/801858/if-another-civilisation-lived-on-earth-before-us-would-we...
5•billybuckwheat•1h ago•1 comments

Show HN: OpenSlides – Open-source desktop app for animated code presentations

https://github.com/codewiththiha/OpenSlides
7•codewiththiha•1h ago•0 comments

An agent with write access to my files, and no way to send them anywhere

https://manazir.dev/work/mnzrbrain-secondbrain-part-two
2•mnzrdev•1h ago•0 comments

Tokenflation: When "Hi" triggers 33 tool calls

https://quesma.com/blog/tokenflation-when-hi-triggers-33-tool-calls/
3•jakozaur•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".