frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cara Menghubungi CS AirAsia

1•RainCodes•7s ago•0 comments

A first look at Django's new background tasks

https://roam.be/notes/2025/a-first-look-at-djangos-new-background-tasks/
1•roam•3m ago•0 comments

New Linux Patches Enhance Single-Threaded Performance on Many-Core CPUs

https://www.phoronix.com/news/Better-ST-Perf-Many-Core-CPUs
1•nateb2022•3m ago•0 comments

Personal finance burn rate tracker

https://paperright.xyz/
1•polalavik•3m ago•0 comments

Ulam-Like Spiral Experiments

https://alganet.github.io/spiral/
1•gaigalas•4m ago•0 comments

Poetiq: SOTA Reasoning on ARC-AGI

https://github.com/poetiq-ai/poetiq-arc-agi-solver
1•gfortaine•5m ago•0 comments

Google Shenanigans

https://huijzer.xyz/posts/128/google-shenanigans
3•huijzer•7m ago•0 comments

Optimizations in C++ compilers: a practical journey

https://queue.acm.org/detail.cfm?id=3372264
2•fanf2•7m ago•0 comments

Airbus A320 – intense solar radiation may corrupt data critical for flight

https://www.airbus.com/en/newsroom/press-releases/2025-11-airbus-update-on-a320-family-precaution...
2•pyrophoenix•9m ago•2 comments

Natural Language OS (NL-OS): An OS written and executed in natural language

https://zenodo.org/records/17755098
1•takeshi_sakamo•11m ago•0 comments

The quadratic knapsack problem (2025)

https://www.sciencedirect.com/science/article/pii/S0377221724009743
1•ahsillyme•12m ago•0 comments

Show HN: Convert Your Docs to Beauty

https://www.doc2q.com
1•rokontech•15m ago•0 comments

Why Study History? (1988)

https://www.theatlantic.com/magazine/archive/1988/11/why-study-history/670027/
2•breve•15m ago•0 comments

Africa's forests are now emitting more CO2 than they absorb

https://www.newscientist.com/article/2506287-africas-forests-are-now-emitting-more-co2-than-they-...
2•hackernj•16m ago•1 comments

Langjam Gamejam: Build a programming language and then use it to make a game

https://austinhenley.com/blog/langjamgamejam.html
2•azhenley•17m ago•0 comments

VMware isn't budging in its pursuit of Siemens for alleged unpaid licenses

https://www.theregister.com/2025/11/28/vmware_vs_siemens_fresh_filings/
1•ipeev•18m ago•1 comments

Open Source Pledge: Posit contributed $493K to OSS in 12 months ($750K to date)

https://posit.co/blog/posit-open-source-pledge-2025
1•ionychal•20m ago•0 comments

Show HN: Browser Calendar: Track Safari, Chrome, Firefox, Edge & Opera Releases

https://browsercalendar.com/
1•grosmar•21m ago•1 comments

Show HN: Minimalistic hex/binary text visualizer for educational UTF-8 demo

https://chessnawk.vercel.app/tools/hex
2•vitaly-pavlenko•28m ago•0 comments

Jedi Blue

https://en.wikipedia.org/wiki/Jedi_Blue
6•redbell•29m ago•0 comments

Common database for Chat Applications

https://progressdb.dev
1•hasante•31m ago•1 comments

Flight disruption warning as Airbus requests modifications to 6k planes

https://www.bbc.com/news/live/cvg4y6g74ert
16•nrhrjrjrjtntbt•32m ago•2 comments

The Secret Superfood of Thanksgiving

https://www.twopct.com/p/the-secret-superfood-of-thanksgiving
4•bilsbie•33m ago•0 comments

A Deep Dive into the Qualcomm Snapdragon X2 Elite SoC Details

https://www.semiaccurate.com/2025/11/27/a-deep-dive-into-the-qualcomm-snapdragon-x2-elite-soc-det...
2•walterbell•35m ago•0 comments

Own a Graph

https://staysaasy.com/strategy/2025/11/25/own-a-graph.html
2•RyeCombinator•35m ago•0 comments

Indoor Dog Park Directory – Find Climate-Controlled Dog Play Spaces California

https://www.indoordogpark.org
1•mabalal•45m ago•1 comments

The Art of KPop Demon Hunters

https://theartofkpopdemonhunters.com/
1•lehi•46m ago•0 comments

MetaFun: Compile Haskell-like code to C++ template metaprograms

https://gergo.erdi.hu/projects/metafun/
1•todsacerdoti•47m ago•0 comments

Strategic Fabrication in AI Self-Governance: An Empirical Audit of 9 Major LLMs

https://zenodo.org/records/17754943
2•mikeup91•50m ago•1 comments

Ask HN: What is the purpose of all these AI spam comments?

19•GaryBluto•51m ago•6 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.