frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Fuzzing as the basis for effective development a case study of LuaJIT [video]

https://www.youtube.com/watch?v=GwHZaynqh98
1•ligurio•2m ago•0 comments

Can AI write accessibility specs?

https://gerireid.com/blog/can-ai-write-accessibility-specs/
1•speckx•3m ago•0 comments

I used free AIs to build a 100% local investigative platform in days (no coding)

https://github.com/mantisfury/ArkhamMirror
1•ArkhamMirror•3m ago•2 comments

Show HN: Loglast – Track the last time you did X

https://loglast.app
2•oliverkzh•6m ago•0 comments

Evolvable Serialized Filters

https://carlin.blog/posts/serialized_filters/
1•abhiaagarwal•8m ago•0 comments

CNN pulls stories from Apple News feed

https://www.reuters.com/business/media-telecom/cnn-pulls-stories-apple-news-feed-semafor-reports-...
2•giuliomagnifico•8m ago•0 comments

Busy doing nothing: why politicians implement inefficient policies

https://link.springer.com/article/10.1007/s10602-019-09280-8
2•matesz•9m ago•0 comments

Reproducing a computational life experiment, part 1

https://blog.ricky0123.com/blog/complexity_v2/
1•ricky0123•10m ago•0 comments

Teleporting a Public IPv6 Address from Your VPS to Your Home Server

https://weisser-zwerg.dev/posts/teleporting-public-ipv6-from-vps-to-homeserver/
2•auggierose•11m ago•0 comments

Mitigating Application Resource Overload with Targeted Task Cancellation

http://muratbuffalo.blogspot.com/2025/11/mitigating-application-resource.html
1•matt_d•11m ago•0 comments

Exploring, in Detail, Apple's Compliance with the EU's DMA Mandate

https://daringfireball.net/2025/11/apple_eu_dma_iphone_accessories_wi-fi_sync
1•danaris•11m ago•0 comments

PUNKU.AI Generative automation that outputs editable node graphs

https://www.punku.ai
1•Dquiroga•12m ago•1 comments

Lenovo Stockpiling PC Memory Due to 'Unprecedented' AI Squeeze

https://www.bloomberg.com/news/articles/2025-11-24/lenovo-stockpiling-pc-memory-due-to-unpreceden...
1•naves•12m ago•0 comments

Estimating AI productivity gains from Claude conversations

https://www.anthropic.com/research/estimating-productivity-gains
1•meetpateltech•12m ago•1 comments

Show HN: I mapped my portfolio into latent space (code included)

https://laurenci.ch/
1•daylankifky•13m ago•1 comments

Are You Sure You Want to Use MMAP in Your Database Management System? (2022) [pdf]

https://db.cs.cmu.edu/papers/2022/cidr2022-p13-crotty.pdf
1•leo_e•13m ago•0 comments

Spinal cord neuromodulation for BP control with low-intensity focused ultrasound

https://www.nature.com/articles/s41598-025-25330-8
2•bookofjoe•14m ago•0 comments

How the Economy Organizes Itself in Space: A Survey of Economic Geography (1996)

https://www.santafe.edu/research/results/working-papers/how-the-economy-organizes-itself-in-space...
1•fidotron•15m ago•0 comments

Why AI in HR is terrible

https://operationsoptimist.substack.com/p/the-current-state-of-ai-in-recruitment
1•dianalace•16m ago•0 comments

Show HN: Deft-Intruder – Real-time malware detection daemon for Linux

https://github.com/Deftdotcx/deft-intruder
1•539hex•18m ago•0 comments

The Illusion of Accuracy in AI Models

https://paidforarticles.in/top-news-the-illusion-of-accuracy-in-ai-models-905778
2•iamtech•20m ago•0 comments

Why Does Development Slow?

https://tidyfirst.substack.com/p/why-does-development-slow
1•kiyanwang•22m ago•0 comments

Show HN: ChimeraDB – Vector search, graph queries and SQL

https://github.com/codimusmaximus/chimeradb
1•machinewriter•22m ago•0 comments

We eliminated manual regression testing after three years of test automation

https://highimpactengineering.substack.com/p/from-chaos-to-confidence-how-we-dropped
1•romannikolaev•23m ago•0 comments

AI Agents Break Rules Under Everyday Pressure

https://spectrum.ieee.org/ai-agents-safety
1•quapster•23m ago•0 comments

Stop Putting Your Passwords into Random Websites

https://labs.watchtowr.com/stop-putting-your-passwords-into-random-websites-yes-seriously-you-are...
1•darkwater•24m ago•0 comments

Constant-time support lands in LLVM: Protecting cryptographic code

https://blog.trailofbits.com/2025/11/25/constant-time-support-lands-in-llvm-protecting-cryptograp...
2•ahlCVA•24m ago•1 comments

Show HN: BTreePlus – A cache-optimized B+Tree engine for .NET faster than SQLite

https://www.nuget.org/packages/BTreePlus
1•staloriana•24m ago•0 comments

VIP

https://blog.cloudflare.com//developer-week-2025-wrap-up
1•neuraos•26m ago•0 comments

Offline and Free Background Remover Powered by WebGPU

https://bgremovefree.com/
2•robertwt7•27m 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•6mo ago

Comments

epmatsw•6mo ago
restore and maybe switch are the two missing ones I think. Rebase for me, but that’s preference. Cherry-pick too.
rentonl•6mo ago
my co-workers used to think I was an expert in git. In reality, they memorized 7 commands while I memorized 15
hbogert•6mo ago
i memorized that a commit tree is a ordered set of patches. Everything goes from there.
Areibman•6mo ago
In similar fashion, this site has saved me countless hours fixing common git issues https://ohshitgit.com
the__alchemist•6mo ago
I need to alias:

  git add .
  git commit -am "descriptive name"
  git push

to:

  git sync "descriptive name"
horsawlarway•6mo 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•6mo 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•6mo 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•6mo ago
That sounds better but I like the granularity I get from scrutinizing specific files or the patch takes too long to review.
speff•6mo 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•6mo 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•6mo 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•6mo ago
Maybe not essential, but reflog is invaluable.

I also like to separate fetch from pull (fetch + merge).

foobarkey•6mo ago
Remove merge and add rebase and we agree :)

Oh and maybe cherry-pick

seba_dos1•6mo ago
Both are essential.
realaleris149•6mo ago
There are other commands?
incomplete•6mo 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•6mo ago
i can't take this seriously if there's no mention of the '--amend' option and 'rebase' command
OutOfHere•6mo ago
It missed "git switch" and "git restore".