frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Simple USB Folder Triggered a VBScript Worm: A SoC Case Study

https://medium.com/@omar.k.alsahily/how-a-simple-usb-folder-triggered-a-vbscript-worm-infection-a...
1•CriticalLY•43s ago•1 comments

Why Is Horses Banned from Steam?

https://www.horses.wtf/BannedFromSteam/
1•embedding-shape•54s ago•0 comments

An arcane type of property insurer is surging on the Gulf Coast

https://www.eenews.net/articles/an-arcane-type-of-property-insurer-is-surging-on-the-gulf-coast/
1•geox•1m ago•0 comments

Warner Music Settles Legal War with Suno in Landmark AI Partnership

https://www.hollywoodreporter.com/music/music-industry-news/warner-music-group-settles-ai-infring...
1•marc__1•2m ago•0 comments

S&Box

https://github.com/Facepunch/sbox-public
1•MaximilianEmel•3m ago•0 comments

Migrating from Legacy Networking to systemd-networkd on Ubuntu 24.04

https://www.endpointdev.com/blog/2025/11/legacy-networking-to-systemd-networkd/
1•chmaynard•3m ago•0 comments

Topological Turning Points for the Brain

https://www.nature.com/articles/d41586-025-00649-4
1•JimmyBuckets•3m ago•0 comments

ClipE96: We Left the Clipboard Unguarded for 40 Years

1•DaaaaveATX•7m ago•0 comments

Paul Hegarty's updated CS193p SwiftUI course released by Stanford

https://cs193p.stanford.edu/
1•yehiaabdelm•7m ago•0 comments

What They Don't Tell You About Maintaining an Open Source Project

https://andrej.sh/blog/maintaining-open-source-project/
1•andrejsshell•11m ago•0 comments

Meet Your Heroes

https://www.jenn.site/meet-your-heroes/
2•paulpauper•12m ago•0 comments

LLM Latency Live Ranking

https://metrik-dashboard-git-main-mehdis-projects-f1e86c94.vercel.app/
1•mbouassa•13m ago•0 comments

Show HN: Looking Ref Contact for a Foresight Grant ICT Info-Consciousness-Time

https://www.academia.edu/s/8924eff666
1•DmitriiBaturo•14m ago•0 comments

3 things to know about Ironwood, our latest TPU

https://blog.google/products/google-cloud/ironwood-google-tpu-things-to-know/
2•zdw•14m ago•0 comments

Someone at YouTube Needs Glasses: The Prophecy Has Been Fulfilled

https://jayd.ml/2025/11/10/someone-at-youtube-needs-glasses-prophecy-fulfilled.html
3•jaydenmilne•15m ago•1 comments

Building road signs at home using a Cricut Machine

https://annanay.dev/build-a-signboard/
1•annanay•16m ago•0 comments

Monty – a sensorimotor learning system following the principles of the neocortex

https://github.com/thousandbrainsproject/tbp.monty
1•stefanv•25m ago•0 comments

20x less peak RAM in the new PyTorch memory budget solver

https://jedrzej.maczan.pl/2025_11_21_dp_knapsack_sliding_hirschberg
1•yu3zhou4•27m ago•0 comments

Arabic Loanwords in the Neo-Aramaic Dialect of Ankawa

https://books.openbookpublishers.com/10.11647/obp.0209/ch16.xhtml
1•marysminefnuf•27m ago•0 comments

Mumbai families suffer as datacentres keep the city hooked on coal

https://www.theguardian.com/technology/2025/nov/24/mumbai-datacentres-coal-air-pollution
1•Teever•28m ago•0 comments

An Affordable Voice Assistant That Won't Spy on You (2022)

https://blog.tjll.net/build-your-own-voice-asistant/
1•wonger_•29m ago•0 comments

Ask HN: Is Techmeme getting paid to boost certain articles?

2•dabockster•33m ago•1 comments

Let go of StackOverflow; communities must take ownership

https://ahelwer.ca/post/2025-11-25-stackoverflow/
1•tensegrist•33m ago•0 comments

Google steers Americans looking for health care into "junk insurance"

https://pluralistic.net/2025/11/25/open-season/
4•hn_acker•34m ago•0 comments

The Penicillin Myth

https://www.asimov.press/p/penicillin-myth
1•fanf2•37m ago•0 comments

Mapping the Brain's Sense of What Goes on Inside the Body

https://www.nytimes.com/2025/11/25/science/brain-neuroscience-interoception.html
2•tysone•41m ago•0 comments

OpenStreetMap scales to serve users worldwide with Fastly

https://www.fastly.com/customers/openstreetmap
3•raybb•42m ago•0 comments

New Version of the MCP Specification

https://modelcontextprotocol.io/specification/2025-11-25
1•mooreds•43m ago•0 comments

Show HN: Rs-Utcp, a Rust Implementation of the Universal Tool Calling Protocol

https://github.com/universal-tool-calling-protocol/rs-utcp
1•juanviera23•43m ago•0 comments

NVMe driver for Windows 2000, targeting both x86 and Alpha AXP platforms

https://github.com/techomancer/nvme2k
1•zdw•44m ago•0 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.