frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tcl Note A1 Nxtpaper Review (2026): A Hybrid Tablet for Taking Notes and Watchi

https://www.wired.com/review/tcl-note-a1-nxtpaper-tablet/
1•joozio•47s ago•0 comments

One Japanese village defied the tsunami (2011)

https://www.nbcnews.com/id/wbna43018489
1•mpweiher•4m ago•0 comments

We are witnessing the death of the games console

https://mattcasmith.net/2026/08/09/death-of-the-games-console
1•mattcasmith•7m ago•0 comments

The Aaronson Oracle: an interactive lesson in human predictability

https://aaronsonoracle.com/
1•Tomte•8m ago•0 comments

Ask HN: Should AI's tell you they're AI?

1•logicallee•8m ago•0 comments

Show HN: Argonix – One AI-powered platform for SRE and cloud operations

https://argonix.io/
1•pydavid•12m ago•0 comments

Show HN: Free QR Code Generator – URL, Text, WiFi and VCard – Free, No Signup

https://at-use.com/tools/qr-code-generator
1•atuse•13m ago•1 comments

Angel Investor Simulator

https://store.steampowered.com/app/4771830/Angel_Investor_Simulator/
1•babuskov•13m ago•0 comments

Ask HN: What you using local models for?

1•kandros•14m ago•0 comments

Solitude as a new aspirational lifestyle: 'We are not lonely'

https://www.bbc.com/news/articles/c5y63dw2x3wo
2•paulpauper•16m ago•0 comments

Softlanding Linux System – ArchiveOS

https://archiveos.org/sls/
1•rbanffy•16m ago•0 comments

The economics professor who keeps running office hours

https://current.fas.harvard.edu/stories/meet-economics-professor-who-keeps-running-office-hours
1•paulpauper•17m ago•0 comments

Show HN: Restoredrill proves your Postgres backups restore

https://github.com/ahmadpiran/restoredrill
2•ahmadpiran•17m ago•0 comments

Taco Bell fans won't let cyclospora come between them and food

https://www.yahoo.com/entertainment/articles/taco-bell-fans-wont-let-100001989.html
2•paulpauper•19m ago•0 comments

Reducing Hallucinations in LLM-Gen. Code via Semantic Triangulation (OOPSLA 26)

https://github.com/msv-lab/just-tri-it
2•mechtaev•20m ago•0 comments

Ask HN: Do you use LLMs for non-coding related work?

1•muddi900•20m ago•1 comments

Forecasting the AI Bubble

https://siliconangle.com/2026/08/08/forecasting-ai-bubble-scarcity-turns-surplus/
1•trilogic•21m ago•0 comments

Supersonic Trebuchet [video]

https://www.youtube.com/watch?v=Co57SfcT-h0
1•walterbell•22m ago•0 comments

The West's Demographic Math No Longer Adds Up

https://www.politico.com/news/magazine/2026/08/08/europe-us-fertility-immigration-01029122
3•pseudolus•24m ago•0 comments

Stone Soup AI (2024)

https://simons.berkeley.edu/news/stone-soup-ai
1•mpweiher•31m ago•0 comments

Climate Change and Tariffs Help China Raise More Cattle

https://www.nytimes.com/2026/07/30/business/china-beef-imports-tariffs.html
2•xnhbx•32m ago•0 comments

Show HN: Greenbatch – a batching dependency update skill

https://github.com/josipmusa/greenbatch
1•anaq42•33m ago•0 comments

AI Writes the Code, but Humans Can't Review It All. Now What?

https://www.sylvainkalache.com/blog/ai-writes-the-code-but-humans-cant-review-it-all
4•sylvainkalache•37m ago•0 comments

CSS: The bomb inside your inbox

https://portswigger.net/research/css-the-bomb-inside-your-inbox
7•ashurandi•45m ago•0 comments

Enough with all the world-historic milestones

https://scottaaronson.blog/?p=9979
1•mellosouls•46m ago•0 comments

Everest Fallacy

https://www.livius.org/articles/theory/everest-fallacy
2•jruohonen•47m ago•0 comments

Multiplayer Game Networking with Python

https://github.com/feberts/python-game-server
2•tio-fabi•51m ago•0 comments

The attacker can prove what they took. You can only prove what you logged

https://stillig.net/posts/prove-what-they-took/
1•johtidebreak•55m ago•0 comments

The Alpha 21264 CPU: NT's Greatest RISC (1998)

https://halfhill.com/byte/1998-12_alpha.html
5•Lammy•56m ago•2 comments

Aswath Damodaran: Big Tech Has No Idea How AI Pays Off

https://www.youtube.com/watch?v=vE_FR0O-Jhk
3•tcp_handshaker•1h ago•1 comments
Open in hackernews

Ask HN: What part of modern Git hosting system is the most crucial one for you

1•melezhik•1h ago
Hey, I am writing gitlab/gitea alternative , what part of modern git hosting system is the most crucial one for you ? I use #dsci #rakulang #golang #bulma

1) CICD

2) Merge requests

3) Collaboration ( tickets, discussions )

4) Code highlighting

5) Something else

Comments

melezhik•1h ago
Or just vote here - https://fosstodon.org/@melezhik/117064923185870206
kingkongjaffa•41m ago
When you merge request and then need to make changes, at least they way i do it is git push --force to push to overwrite the branch state on remote (gitlab/github etc.)

I like that is keeps track of the diffs and changes for code review comment threads so you can see what changed inbetween multiple git push --forces to fix stuff.

That struck me the other day as not a native git feature but an actual novel thing github/gitlab do.

melezhik•10m ago
Usually once MR is merged , no need to change existing branch and people usually just create a new one to push more changes or I miss something ?