frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Air pollution may reduce health benefits of excercise

https://medicalxpress.com/news/2025-11-air-pollution-health-benefits.html
1•fuzzythinker•7m ago•0 comments

Show HN: Swatchify – CLI to get a color palette from an image

https://james-see.github.io/swatchify/
1•jamescampbell•8m ago•0 comments

One-fifth of the jobs at your company could disappear as AI automation takes off

https://www.theregister.com/2025/11/27/ai_employee_overcapacity_report/
1•pjmlp•10m ago•0 comments

slbounce: DRTM Secure-Launch implementation for Qualcomm devices

https://github.com/TravMurav/slbounce
1•transpute•11m ago•0 comments

How a Data Model Dependency Nearly Derailed My Project

https://medium.com/@HobokenDays/the-fate-of-shared-data-model-cf8a3dc88ac9
1•steven-123•14m ago•0 comments

Show HN: Codex Swarm – Local ChatGPT swarm for coding with Git-tracked agents

https://github.com/basilisk-labs/codex-swarm
1•densmirnov•18m ago•0 comments

Show HN: I made a shell with AI suggestions – Caroushell

https://github.com/ubershmekel/caroushell
2•ubershmekel•20m ago•0 comments

Brendan Gregg on being copied as an 'AI Brendan'

https://www.brendangregg.com/blog//2025-11-28/ai-virtual-brendans.html
2•anitil•20m ago•1 comments

Show HN: Ray-BANNED, Glasses to detect smart-glasses that have cameras

https://github.com/NullPxl/banrays
1•nullpxl•23m ago•0 comments

Git-reabsorb: Reorganize Git commits with new structure using an LLM

https://github.com/AllyMarthaJ/git-reabsorb
1•benno128•24m ago•0 comments

Mission Critical Advanced Scheduling (ALAP/ASAP) System

https://github.com/rodmena-limited/scriptplan
1•rodmena•26m ago•0 comments

The China That the World Sees Is Not the One I Live In

https://www.nytimes.com/2025/11/13/opinion/china-politics-social-public-mood.html
1•kaycebasques•27m ago•1 comments

Generator Website

1•generatorsite•28m ago•0 comments

CSS inspiration is on the rise These are awesome tbh

https://twitter.com/BalintFerenczy/status/1946198804694245486
1•iamA_Austin•28m ago•0 comments

What's cooking on Sourcehut? Q4 2025

https://sourcehut.org/blog/2025-11-20-whats-cooking-q4-2025/
1•Kerrick•35m ago•0 comments

Around 500M PCs are holding off upgrading to Windows 11, says Dell

https://www.theverge.com/news/831364/dell-windows-11-upgrade-numbers-earnings-call-q3-2025
4•Fiveplus•37m ago•1 comments

More than 93% discount for Free Software on Black Friday;)

https://mastodon.social/@fsfe/115625326159147544
2•kirschner•39m ago•0 comments

The tech-debt death spiral

https://lindbakk.com/blog/the-tech-debt-death-spiral
3•Seb-C•40m ago•0 comments

Awesome Version Managers

https://github.com/bernardoduarte/awesome-version-managers
1•saikatsg•50m ago•0 comments

How to use Linux vsock for fast VM communication

https://popovicu.com/posts/how-to-use-linux-vsock-for-fast-vm-communication/
1•mfrw•56m ago•0 comments

Black Friday Deals for Developers and Tech Teams

https://github.com/Pimjo/black-friday-deals
1•vinishbhaskar•1h ago•1 comments

WhisperThunder – A New Fast, High-Quality Text-to-Video Model

https://www.whisperthunder.top/
2•RyanMu•1h ago•1 comments

Show HN: AI Agents for Customer Support

https://www.sparrowdesk.com/ref=hn
1•jgm22•1h ago•0 comments

Ask HN: As CTO, do you pick JavaScript/TS as the default stack?

2•sawirricardo•1h ago•5 comments

World War AI

https://www.epsilontheory.com/world-war-ai/
3•koolhead17•1h ago•1 comments

Are We Becoming Distilled Versions of AI?

2•3chinproblem•1h ago•2 comments

Show HN: I Am Building an Intuitive Database GUI for ClickHouse and Postgres

https://www.datacia.app
3•rwiteshbera•1h ago•1 comments

Lot Is Back

https://lot-systems.com
1•vadikmarmeladov•1h ago•0 comments

Billiard Fractals: The Infinite Patterns Hidden in a Rectangle

https://xcontcom.github.io/billiard-fractals/docs/article.html
3•grandpanda•1h ago•2 comments

TigerStyle: Coding philosophy focused on safety, performance, dev experience

https://tigerstyle.dev/
17•nateb2022•1h ago•3 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•7mo ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•7mo ago
Whenever it gets in a cycle of fucking up, I ask it to break the code down into smaller functions and write a test suite for each individually.

Tell it what language or packages to use or it might make selections that add dependencies or require installing stuff on your computer.

Tell it how you want your code written or it will be an extra chore to accommodate linting requirements.

Basically just being very explicit.

GianFabien•7mo ago
I mostly write low-level code in Python and JS. When working with a new API, I would sometimes find it difficult to locate information to fix problems. With ChatGPT I simply rubber duck my problem. It usually only takes a couple of iterations to zoom into the core solution.
Flundstrom2•7mo ago
Copilot in visual studio to fix compiler errors and let it type all the boilerplate code by TAB-ing. Sometimes it even manages to spit out an entire - and correct - function.

Mistral Le Chat for more advanced questions and figuring out things that copilot can't.