frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pool spare GPU capacity to run LLMs at larger scale

https://github.com/michaelneale/mesh-llm
1•i386•1m ago•0 comments

A-10 Warthogs target Iranian fast-attack craft in Strait of Hormuz

https://www.airforcetimes.com/news/your-air-force/2026/03/19/a-10-warthogs-target-iranian-fast-at...
1•Gaishan•1m ago•0 comments

Ask HN: Safari Safe Browsing false positives persist after Google clears domain

1•Numbness•1m ago•0 comments

Amazon says AWS' Bahrain region 'disrupted' following drone activity

https://www.reuters.com/world/middle-east/amazon-says-awss-bahrain-region-disrupted-following-dro...
2•christhecaribou•2m ago•0 comments

Does the Defense Industry have a profiteering problem? Does it really?

https://eshhan.substack.com/p/the-surgeon-the-locksmith-and-the-shield
1•eshan6•4m ago•0 comments

Zuhn – AI knowledge OS that compresses insights into principles

https://github.com/gorajin/zuhn
1•gorajin•8m ago•0 comments

AI Is Not the Point

https://quillium.bryanhu.com/blog/ai-is-not-the-point
1•thatxliner•11m ago•0 comments

Glances is a cross-platform system monitoring tool written in Python

https://nicolargo.github.io/glances/
1•wiradikusuma•21m ago•0 comments

How deep-sea mining is growing China's influence in the Pacific

https://www.cnn.com/interactive/2026/03/world/china-deep-sea-mining-military-vis-intl/
1•kburman•21m ago•0 comments

Multitail

https://www.vanheusden.com/multitail/
1•wiradikusuma•23m ago•0 comments

Log File Viewer for the Terminal

https://lnav.org/
1•wiradikusuma•25m ago•0 comments

Artemis II: Inside the Moon mission to fly humans further

https://www.bbc.co.uk/news/resources/idt-86aafe5a-17e2-479c-9e12-3a7a41e10e9e
1•nairteashop•30m ago•0 comments

MiniMind: End-to-end GPT-style LLM training pipeline in pure PyTorch

https://github.com/jingyaogong/minimind
1•dmonterocrespo•32m ago•1 comments

Personaplex – voice room where AI personas hear and respond to each other

https://personaplex.aifly.club/en
2•pplex_builder•32m ago•0 comments

The Artifact Paradox

https://intervue.fyi/blog/artifact-paradox
1•dennis3124•34m ago•0 comments

Doom over DNS

https://blog.rice.is/post/doom-over-dns/
2•bouncingbunny•35m ago•0 comments

Uni-1 Is Launched

https://uni1ai.app
1•Jenny249•36m ago•0 comments

GPT from GPT: de novo microgpt

https://github.com/Entrpi/microgpt-denovo
2•easygenes•44m ago•1 comments

I made Aplix, but need honest reviews about it

1•itsmsr•44m ago•0 comments

Model-based linguistic space for transmitting our thoughts from brain to brain

https://pubmed.ncbi.nlm.nih.gov/39096896/
1•Anon84•45m ago•0 comments

Microsoft blocks trick to unlock native NVMe driver, but workarounds still exist

https://www.tomshardware.com/software/windows/microsoft-blocks-the-registry-hack-trick-that-unloc...
3•josephcsible•57m ago•0 comments

Ask HN: AI companies' bots are making my server slow, what do you do?

1•aabbcc1241•59m ago•1 comments

Alibaba Unveils New Chip Design to Meet Surging Demand for AI

https://www.bloomberg.com/news/articles/2026-03-24/alibaba-unveils-new-chip-design-to-meet-surgin...
1•voxadam•1h ago•1 comments

Show HN: ArXiv metadata as Parquet files (2.99M papers, 1.44GB, 417 files)

https://huggingface.co/datasets/open-index/open-arxiv
1•tamnd•1h ago•0 comments

FCC Clearing the Air on Wi-Fi Software Updates (2015)

https://www.fcc.gov/news-events/blog/2015/11/12/clearing-air-wi-fi-software-updates
1•walterbell•1h ago•0 comments

Sovereign AI OS and SAMN Introduction

1•twocats7701•1h ago•0 comments

How Do US Men and Women Spend Their Time?

https://www.pewresearch.org/social-trends/feature/how-do-u-s-men-and-women-spend-their-time/
3•gmays•1h ago•3 comments

Firefox ext: Bkmker · Your bookmarks, encrypted and private

https://addons.mozilla.org/en-US/firefox/addon/bkmker/
2•fullstacking•1h ago•0 comments

OpenTarget Core: Laser Shooting Platform for Raspberry Pi Using OpenCV

https://github.com/JSK-Project/OpenTarget-Core
1•laurieg•1h ago•0 comments

Aspect Ratios with Sinners Director Ryan Coogler (2025)

https://www.youtube.com/watch?v=78Ru62uFM0s
1•hbcondo714•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•10mo ago

Comments

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

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

to:

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

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

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

Oh and maybe cherry-pick

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