frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Lang5 – a stack oriented APL-like language

https://github.com/bernd-ulmann/lang5
1•tosh•2m ago•0 comments

Static Analysis for GitHub Actions

https://github.com/zizmorcore/zizmor
1•mooreds•6m ago•0 comments

Soon We Can Banish JavaScript to the ShadowRealm

https://css-tricks.com/soon-we-can-finally-banish-javascript-to-the-shadowrealm/
1•speckx•8m ago•0 comments

The price of power – why batteries are starting to look obvious

https://blog.stromflix.com/price-of-power
1•StromFLIX•9m ago•0 comments

In a trial pitting him against Elon Musk, nobody has more to lose than Altman

https://www.latimes.com/business/story/2026-05-12/in-trial-pitting-him-against-elon-musk-nobody-h...
1•1vuio0pswjnm7•9m ago•0 comments

Sovereign Tech Fund invests over €1M in KDE software development

https://kde.org/announcements/sovereign-tech-fund-invests-kde/
2•spiros•9m ago•0 comments

The First Cleaner Ant? A Novel Partnership in the Arizona Desert

https://onlinelibrary.wiley.com/doi/10.1002/ece3.73308
1•sohkamyung•12m ago•0 comments

Prioritizing Vulnerability Findings

https://monkeynoodle.org/2025/07/26/prioritizing-vulnerability-findings/
1•mooreds•15m ago•0 comments

Show HN: Interactive fluid simulation in Jax using Brinkman penalization

https://github.com/arriemeijer-creator/AeroJAX
1•arriemeijer•15m ago•0 comments

Ask HN: Which discontinued internet product/service do you still miss?

1•kamscruz•16m ago•0 comments

Accountants in Stratford

https://skzee.co.uk/accountants-in-stratford/
1•syedsherazahmed•17m ago•0 comments

What if AI systems weren't chatbots?

https://arxiv.org/abs/2605.07896
1•jrepinc•19m ago•0 comments

AI agents that need real social context

https://www.socialcrawl.dev/developers
1•vaaselene•21m ago•0 comments

Exploring the "Banality" of Deception in Generative AI

https://arxiv.org/abs/2605.07012
1•jrepinc•24m ago•0 comments

China is going dark to develop its own Mythos

https://www.politico.eu/article/china-is-going-dark-to-develop-its-own-mythos-german-cyber-chief-...
1•jonbaer•24m ago•1 comments

Show HN: FasterFixes – Open-source feedback widget with MCP for coding agents

https://github.com/manucoffin/faster-fixes
1•manuelcoffin•31m ago•1 comments

How Elon Musk turned an online nobody into his biggest promoter

https://www.washingtonpost.com/technology/2026/05/13/elon-musk-engages-with-anonymous-x-acount-xf...
1•1vuio0pswjnm7•32m ago•0 comments

AMD DGF SuperCompression

https://gpuopen.com/learn/introducing-amd-dgf-supercompression/
1•ibobev•34m ago•0 comments

Precomputed Lens Transport Maps

https://arxiv.org/abs/2605.04017
1•ibobev•34m ago•0 comments

More is different in real-world multilayer networks

https://www.nature.com/articles/s41567-023-02132-1
1•hamburgererror•35m ago•0 comments

Denise: C64/Amiga emulator with shader and runAhead

https://sourceforge.net/projects/deniseemu/files/v2.8/
1•doener•37m ago•0 comments

Review: A House of Dynamite

https://medium.com/luminasticity/review-a-house-of-dynamite-b1170fbe1bcb
1•bryanrasmussen•40m ago•0 comments

AI-Assistance in Character Posing: How It Works in Cascadeur

https://cascadeur.com/blog/general/ai-assistance-in-3d-character-posing-how-it-works-in-cascadeur
1•embedding-shape•41m ago•0 comments

Mainline Linux 6.12 on Annapurna Labs Alpine V2 (Ubiquiti UNVR, UDM-Pro)

https://github.com/bcyangkmluohmars/linux-alpine-v2
1•kabelkevin•41m ago•0 comments

The Chinese whiz kids of Silicon Valley

https://restofworld.org/2026/chinese-ai-researchers-silicon-valley/
1•thm•41m ago•0 comments

Show HN: Dart Live – compiler, VM, analyzer and hot reload on the web via WASM

https://modulovalue.com/dart-live/
2•modulovalue•43m ago•0 comments

D3D12 LinAlg Matrix Preview

https://devblogs.microsoft.com/directx/d3d12-linalg-preview/
1•ibobev•43m ago•0 comments

Security Baseline

https://securitybaseline.eu/
1•TechTechTech•44m ago•0 comments

Childhood and Education: Do the Math

https://thezvi.substack.com/p/childhood-and-education-18-do-the
1•FergusArgyll•44m ago•0 comments

Show HN: HYPD – AI co-pilot for marketers running Google Ads

https://www.hypd.ai/
2•cionut•49m ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•1y ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•1y 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•1y 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•1y 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.