frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Which AI tools have you used every day for the past year?

1•fazlerocks•2m ago•0 comments

Income, PTO, schedule → actual trips. Meet Roamie

https://www.roamie.gg
1•Brianwongjh•4m ago•1 comments

CISA warns spyware crews are breaking into Signal and WhatsApp accounts

https://www.theregister.com/2025/11/25/cisa_spyware_gangs/
1•Brajeshwar•8m ago•0 comments

Tokyo Overtaken as World's Biggest City

https://news.sky.com/story/jakarta-and-dhaka-topple-tokyo-to-become-worlds-biggest-megacities-134...
2•austinallegro•8m ago•0 comments

'Enshittification': how we got the internet no one asked for [audio]

https://www.theguardian.com/news/audio/2025/nov/24/enshittification-how-we-got-the-internet-no-on...
1•Brajeshwar•9m ago•0 comments

Show HN: Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
1•gregsadetsky•10m ago•0 comments

Weather Modification and Geoengineering Patents 1880-2024

https://weathermodificationhistory.com/patents/
2•msuniverse2026•13m ago•0 comments

Show HN: Catch App Store rejection issues before Apple does

https://tryrubberduck.com/
1•Sayuj01•13m ago•0 comments

'Once in 300 years' rain hits Thai city as floods ravage South East Asia

https://www.bbc.com/news/articles/ckg97wx144jo
3•Brajeshwar•17m ago•0 comments

Show HN: InterviewFlowAI – AI phone and Meet interviews for fast screening

https://interviewflowai.com/
1•mukulmunjal•18m ago•0 comments

Unihertz Titan 2

https://www.unihertz.com/products/titan-2
2•harryday•23m ago•0 comments

Show HN: Aithings.dev – a directory for AI tools, resources, and communities

https://www.aithings.dev/
1•rutagandasalim•29m ago•0 comments

New wearable device lets you touch fabric online, read Braille, and more

https://www.popsci.com/technology/touch-websites-wearable-device/
1•velvet_thunderr•30m ago•0 comments

I bought a tiny Chrome extension 3 months ago and it's now my best acquisition

1•mddanishyusuf•30m ago•0 comments

Stride Game Engine 4.3 with .NET 10 Support

https://www.stride3d.net/blog/announcing-stride-4-3-in-dotnet-10/
1•bj-rn•30m ago•0 comments

Scientists capture real-time images of DNA damage and repair

https://www.sciencedaily.com/releases/2025/11/251123085554.htm
2•ashishgupta2209•42m ago•0 comments

Issue Tracker for Claude Code

https://issue-queue.readthedocs.io/en/latest/llm_agents.html#example-claude-code-integration
1•rodmena•46m ago•0 comments

ICE Arrests the Press

https://petapixel.com/2025/11/24/photojournalist-arrested-covering-ice-protest-as-authorities-imp...
8•cypherpunk666•46m ago•1 comments

The lifespan of the Öresund Bridge can be doubled

https://www.lunduniversity.lu.se/article/new-research-lifespan-oresund-bridge-can-be-doubled
2•gnabgib•47m ago•0 comments

Create your own AI version and scale yourself

https://www.myclone.is/blog/ai-digital-personas-revolutionizing-services/
1•rishikksh20•56m ago•0 comments

Rock Paper Scissors Is a Game of Skill

https://collisteru.substack.com/p/rock-paper-scissors-is-a-game-of
1•Collisteru•59m ago•0 comments

Comparing xeus-Haskell and ihaskell kernels

https://www.datahaskell.org/blog/2025/11/25/a-tale-of-two-kernels.html
1•mchav•1h ago•1 comments

The Protocol Labs Vision for Neurotech and Neuro AI [video]

https://www.youtube.com/watch?v=LKYSzA9scns
1•surprisetalk•1h ago•0 comments

Steel composites integrating diamonds and carbon nanotubes

https://akshatjiwannotes.blogspot.com/2025/10/steel-composites-integrating-diamonds.html
2•akshatjiwan•1h ago•0 comments

Wispcraft

https://kaverennedy.substack.com/p/wispcraft
1•surprisetalk•1h ago•0 comments

So Long Firefox, Hello Vivaldi

https://hackaday.com/2025/11/25/so-long-firefox-part-two/
3•thunderbong•1h ago•0 comments

E-cigs during pregnancy impairs uterine artery blood flow and placental function

https://academic.oup.com/toxsci/advance-article-abstract/doi/10.1093/toxsci/kfaf161/8325239?redir...
3•XzetaU8•1h ago•0 comments

Cartesia TTS Partner with Tencent RTC – Demo

https://sc-rp.tencentcloud.com:8106/t/pA
1•shuoxin-wang•1h ago•0 comments

Show HN: Cloakly – Hide notes and apps during coding interview screen-share

https://www.getcloakly.com
1•jaygood•1h ago•1 comments

Oxycodone Uses, Dosage, Side Effects, and Safety Warnings

https://sites.google.com/view/medixway-pharmacy/medixway-trusted-source-for-every-prescription/
1•fffssdsd•1h ago•1 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".