frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Caligra c100 Developer Terminal – Industrial design of computer hardware

https://www.pentagram.com/work/caligra-c100-developer-terminal
1•kaizenb•3m ago•0 comments

NREL best research cell (photovoltaic) efficiency chart [pdf]

https://nrel.gov/media/docs/libraries/pv/cell-pv-eff.pdf
1•walrus01•6m ago•1 comments

Lunar Impact Flashes NASA Artemis

https://nbsla.ca/lunar-impact-flashes-nasa-artemis/
1•01-_-•6m ago•0 comments

Intel shares soar on Apple chip deal report

https://www.cnbc.com/2026/05/08/intel-stock-apple-chip-deal.html
2•01-_-•7m ago•0 comments

Rakudo – Raku on MoarVM, JVM, and JavaScript

https://github.com/rakudo/rakudo
2•tosh•16m ago•0 comments

All my clients wanted a carousel, now it's an AI chatbot

https://adele.pages.casa/md/blog/all-my-clients-wanted-a-carousel-now-it-s-an-ai-chatbot.md
2•edent•17m ago•0 comments

What Color Is a Tennis Ball?

https://www.theatlantic.com/science/archive/2018/02/what-color-tennis-ball-green-yellow/523521/
1•thunderbong•18m ago•1 comments

Databricks Apps Tutorial: Scalable Streamlit Modular Template for Production

https://medium.com/towards-data-engineering/databricks-apps-tutorial-scalable-streamlit-modular-t...
1•protmaks•20m ago•0 comments

Mythos 'Discovered' a CVE in Its Training Data and That's Still Worrying

https://rival.security/posts/mythos-discovered-a-cve-already-in-its-training-data---and-thats-sti...
4•speckx•24m ago•0 comments

Chaos erupts as cyberattack disrupts learning platform Canvas amid finals

https://arstechnica.com/security/2026/05/chaos-erupts-as-cyberattack-disrupts-learning-platform-c...
2•joozio•28m ago•0 comments

Hobonichi Digital Planner

https://techoapp.1101.com/
1•skogstokig•31m ago•0 comments

Seedream AI image studio for global creators

https://www.doubao.photos
2•yibaoshan•33m ago•0 comments

Claude's signup workflow is terrible

2•b112•38m ago•0 comments

Sociotechnical Architecture Reviews: Understanding Teams, Not Just Artefacts

https://www.youtube.com/watch?v=Nb3xsZVqxpY
1•RebootStr•43m ago•1 comments

Notes on Incidents

https://www.seangoedecke.com/notes-on-incidents/
1•dondraper36•44m ago•0 comments

Why LLM-as-judge fails for code evaluation. Here's what works.

https://navigara.medium.com/the-story-of-navigara-how-we-built-the-performance-layer-for-modern-e...
2•alienll•55m ago•0 comments

Brightness Issue in Old S3 Graphics Cards

https://hackaday.com/2026/04/21/why-some-s3-videocards-have-a-brightness-issue/
3•networked•1h ago•0 comments

Turn any title into thumbnail, OG image or blogpost cover

https://thumbapi.dev
2•dinall•1h ago•1 comments

PWABuilder

https://pwabuilder.com/
5•Tomte•1h ago•0 comments

The Enemy (Part 4)

https://stephanrewind.itch.io/atlantic-41/devlog/1516937/the-enemy-part-4
2•ndr42•1h ago•1 comments

I Still Like Jenkins

https://til.andrew-quinn.me/posts/i-still-like-jenkins/
3•hiAndrewQuinn•1h ago•2 comments

A YouTube Music player that runs in your terminal

https://github.com/chuzcjoe/musicli
3•chuzcjoe•1h ago•0 comments

LeWorldModel: Stable End-to-End Predictive Architecture from Pixels

https://arxiv.org/abs/2603.19312
5•felineflock•1h ago•0 comments

LUKSbox: Encrypted vaults that survive the next decade

https://github.com/PentHertz/LUKSbox
9•fratellobigio•1h ago•0 comments

Show HN: I made an IPv6 proxy for GitHub

https://githubv6.com/
2•immibis2•1h ago•0 comments

Cherry Kearton – groundbreaking 19th-century nature photographer

https://www.bbc.com/future/article/20260507-cherry-kearton-the-eccentric-influence-on-a-young-sir...
3•jeffwass•1h ago•1 comments

I Will Never Use AI to Code

https://antman-does-software.com/i-will-never-use-ai-to-code-or-write
41•ishanz•1h ago•44 comments

Poka-Yoke

https://en.wikipedia.org/wiki/Poka-yoke
7•the-mitr•1h ago•1 comments

Anthropic weighs fundraising for near $1T valuation, FT reports

https://www.reuters.com/technology/anthropic-weighs-fundraising-near-1-trillion-valuation-ft-repo...
5•giuliomagnifico•1h ago•0 comments

Young people explicitly banned from openSUSE – urgent call for reversal

https://lists.opensuse.org/archives/list/project@lists.opensuse.org/message/6PU6JU2IGKDANYNN3KIXD...
13•robin_reala•1h ago•3 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".