frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Background Jobs in Go with Asynq and Valkey

https://josephgoksu.com/blog/background-jobs-in-go-asynq-valkey/
1•josephgoksu•4m ago•0 comments

Onpush – free tool to create and maintain docs from repos using CLI Agents

https://onpush.dev
1•GNK_Kawba•5m ago•0 comments

OpenAI investor says AI requires an income tax overhaul

https://www.ft.com/content/7de1d3c5-0d0c-46b1-b2b7-dbf6f5226069
3•ciconia•7m ago•1 comments

Vector Meson Dominance

https://johncarlosbaez.wordpress.com/2026/03/29/vector-meson-dominance/
1•chmaynard•10m ago•0 comments

Millions Are Hooked on This Show Where Sexy Fruits Cheat

https://www.wsj.com/arts-culture/television/fruit-love-island-tiktok-ai-dating-show-45219f6a
1•newusertoday•15m ago•1 comments

Two Bots Walk into a Bar

https://www.raymondcamden.com/2026/03/25/two-bots-walk-into-a-bar
1•ColinWright•20m ago•0 comments

Voxtral TTS – Text to Speech Generator

https://voxtral-tts.net
2•MintNow•21m ago•0 comments

Miasma: A tool to trap AI web scrapers in an endless poison pit

https://github.com/austin-weeks/miasma
2•LucidLynx•28m ago•0 comments

Alpaca: Cross-Border Balancing Capacity Cooperation for aFRR

https://www.entsoe.eu/network_codes/eb/alpaca/
1•doener•36m ago•0 comments

IAMPerformance Issue 001 – Physics-based quantum hardware intelligence report [pdf]

https://iamperformance.online/IAMPerformance_Issue001.pdf
1•hmahaffeyges•37m ago•1 comments

Show HN: WhatToBuy – Describe your situation, get AI-curated shopping carts

2•crackeddude•39m ago•0 comments

Hledger AI Policy

https://hledger.org/AI.html
2•yehoshuapw•39m ago•0 comments

Beasts of the Southern Wild

https://medium.com/luminasticity/on-beasts-of-the-southern-wild-40fc0ea39a2b
1•bryanrasmussen•46m ago•0 comments

Native Jellyfin Client for macOS

https://github.com/CustomIcon/Lume
1•CustomIcon•47m ago•1 comments

New Infinity Stealer malware grabs macOS data via ClickFix lures

https://www.bleepingcomputer.com/news/security/new-infinity-stealer-malware-grabs-macos-data-via-...
2•01-_-•49m ago•0 comments

Overestimation of microplastics potentially caused by scientists' gloves

https://news.umich.edu/nitrile-and-latex-gloves-may-cause-overestimation-of-microplastics-u-m-stu...
2•giuliomagnifico•51m ago•0 comments

Cicada Variant 2026: The New Covid Threat Emerging in Silence

https://comuniq.xyz/post?t=891
1•01-_-•52m ago•0 comments

Scion: Running Concurrent LLM Agents with Isolated Identities and Workspaces

https://googlecloudplatform.github.io/scion/overview/
2•smartius•58m ago•0 comments

ESP32-S31: 320MHz 2C RV32IMAFCP+CLIC, 512KB SRAM, GbE, 802.11ax, 61 GPIO

https://www.espressif.com/en/news/ESP32_S31_Release
2•topspin•58m ago•0 comments

What fork() Actually Copies

https://tech.daniellbastos.com.br/posts/what-fork-actually-copies/
3•thunderbong•1h ago•0 comments

Are LLMs a Dead End? [video]

https://www.youtube.com/watch?v=9IMV80GvBpU
4•pullshark91•1h ago•0 comments

How Developers use AI

https://vibecodingstats.com/
2•krenerd•1h ago•0 comments

Lithuanian Legislation as a Git Repo

https://github.com/Yiin/lt-teises-aktai
1•debesyla•1h ago•0 comments

Should you do a PhD? (2025)

https://neurofrontiers.blog/should-you-do-a-phd/
1•lentoutcry•1h ago•0 comments

DaVinci-MagiHuman: Open-source AI model for realistic video generation

https://firethering.com/davinci-magihuman-open-source-ai-video-model/
1•steveharing1•1h ago•0 comments

Working on Products People Hate

https://www.seangoedecke.com/working-on-products-people-hate/
2•herbertl•1h ago•0 comments

Vibe physics: The AI grad student

https://www.anthropic.com/research/vibe-physics
1•cl3misch•1h ago•0 comments

A minimal React shopping list app structured for Capacitor/iOS packaging

https://github.com/sangress/shopping-list
1•sangress_dev•1h ago•0 comments

From Agent to Domain Intelligence: A Self-Evolving Knowledge Engine

https://simaxiaoqian.substack.com/p/from-agent-to-domain-intelligence
1•qingant•1h ago•1 comments

City Skylines II: Office Evolution and City Stations Available Now

https://www.paradoxinteractive.com/games/cities-skylines-ii/news/office-evolution-and-city-statio...
1•doener•1h ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

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

Comments

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