frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cognitive effects greater than network effects

https://www.forerunnerventures.com/perspectives/from-network-effects-to-cognitive-effects-the-new...
1•chrisgd•1m ago•0 comments

The Trump Administration's Order on AI Is Deeply Misguided

https://www.eff.org/deeplinks/2025/11/trump-administrations-order-ai-deeply-misguided
2•gslin•4m ago•0 comments

Larry Ellison discussed axing CNN hosts with White House in takeover bid talks

https://www.theguardian.com/us-news/2025/nov/20/warner-bros-discovery-takeover-paramount-skydance...
3•perihelions•9m ago•1 comments

1 in 8 freshman at UCSD don't have middle school math skills

https://www.10news.com/news/local-news/1-in-8-freshmen-at-uc-san-diego-dont-meet-middle-school-st...
2•dr_dshiv•14m ago•0 comments

The console age is ending – even PlayStation's former CEO says so

https://www.polygon.com/shawn-layden-interview-console-era-ending/
1•ilamont•15m ago•0 comments

A robust implementation of the Bulkhead Pattern for Python

https://github.com/rodmena-limited/bulkman
1•rodmena•17m ago•0 comments

Grok 4.1 Fast Is Now Available in Puter.js

https://developer.puter.com/blog/grok-4-1-fast-in-puter-js/
1•ent101•23m ago•0 comments

TikTok Zombie Brain Rot Confirmed by Major Study – Modernity

https://modernity.news/2025/11/17/tiktok-zombie-brain-rot-confirmed-by-major-study/
2•pkaeding•26m ago•1 comments

Psychedelics, neuroplasticity, and intracellular 5HT2A receptors

https://alieninsect.substack.com/p/a-new-mechanism-of-psychedelic-action
2•eatitraw•37m ago•0 comments

Cloudflare Outage Disrupts Internet Services Worldwide

https://www.steaktek.com/news/major-cloudflare-outage-disrupts-internet-services-worldwide/
1•genuser•38m ago•1 comments

NTSB DC-10-10 Aircraft Accident Report (1979) [pdf]

https://www.ntsb.gov/investigations/AccidentReports/Reports/AAR7917.pdf
3•dboreham•42m ago•1 comments

Whitehorse residents baffled by 'annoying hum' that no one seems able to explain

https://www.cbc.ca/news/canada/north/whitehorse-residents-baffled-by-annoying-hum-that-no-one-see...
1•neom•45m ago•2 comments

Outlaws Remaster Review: LucasArts' "Forgotten" FPS Gets the Nightdive Treatment [video]

https://www.youtube.com/watch?v=7RLwUSbYxP8
1•CharlesW•51m ago•0 comments

Color Synthesizer

https://colorpalette.pro
1•_kush•57m ago•0 comments

Black Friday Game Plan: How We Target Annual Subscriptions (Steal This Strategy)

https://www.indiehackers.com/post/black-friday-game-plan-how-we-target-annual-subscriptions-steal...
1•arkyu•57m ago•0 comments

Just a pinch of DSG for curl-able sites and confused AI crawlers

https://iris.coralcmd.net/curlblog/
1•oliverkwebb•1h ago•0 comments

The Hidden Story of Nazi Drug Abuse – Blitzed: Nazis on Drugs [video]

https://www.youtube.com/watch?v=7DtR-CNZN44
3•1659447091•1h ago•0 comments

Breaking the Million-Token Barrier: Azure ND GB300 v6

https://techcommunity.microsoft.com/blog/azurehighperformancecomputingblog/breaking-the-million-t...
1•gmays•1h ago•0 comments

The Microdose

https://themicrodose.substack.com/
2•bookofjoe•1h ago•0 comments

GPU depreciation could be the next big crisis for hyperscalers

https://www.tomshardware.com/tech-industry/gpu-depreciation-could-be-the-next-big-crisis-coming-f...
5•gmays•1h ago•0 comments

ChatGPT group chats now available

https://openai.com/index/group-chats-in-chatgpt/
2•Jotalea•1h ago•1 comments

TypeScript is Like C# – A Backend Guide

https://typescript-is-like-csharp.chrlschn.dev/
1•ivm•1h ago•0 comments

An IT school's internal infrastructure

https://gitlab.cri.epita.fr/forge/infra/infrastructure/-/tree/renovate/quay.io-hedgedoc-hedgedoc-1.x
1•LelouBil•1h ago•0 comments

Algorithm Accountability bill introduce, would let one sue for harmful algorithm

https://www.sltrib.com/news/politics/2025/11/20/social-media-why-utah-sen-john/
2•1659447091•1h ago•0 comments

Why more social interactions lead to more polarization in societies

https://www.pnas.org/doi/10.1073/pnas.2517530122
5•PaulHoule•1h ago•1 comments

What's going on here, with this human?

https://grahamduncan.blog/whats-going-on-here/
2•signa11•1h ago•0 comments

New .env file support in 1Password environments

https://1password.com/blog/1password-environments-env-files-public-beta
3•nreece•1h ago•0 comments

Ask HN: Feedback on my discrete substrate transport preprint?

1•FlipSpace•1h ago•0 comments

Hey

https://github.com/c0ndu17/hey
3•c0ndu17•1h ago•1 comments

Capacitor Plague

https://en.wikipedia.org/wiki/Capacitor_plague
4•burglins•1h ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

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

Comments

benoau•6mo 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•6mo 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•6mo 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.