frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Historical of Reflected Vulnerabilities: Evolution of Windows Defender Defenses

https://substack.com/home/post/p-167963207
1•vinhatson•3m ago•1 comments

Programming Well: Abstraction and Design in Computation

https://book.cs51.io/
1•swatson741•5m ago•0 comments

A Bigger Database

https://blog.glyph.im/2025/03/a-bigger-database.html
1•pabs3•8m ago•0 comments

Classic Connect 2

https://moonlit.market/
1•strange-poster•12m ago•0 comments

Enchanting, but Not Magical: A Statement on the Tokenization of Securities

https://www.sec.gov/newsroom/speeches-statements/peirce-statement-tokenized-securities-070925
1•yoyoJosh•14m ago•0 comments

Show HN: Shortly – A privacy-focused URL shortener with analytics

https://shortly.streamlab.in
1•parthomal•15m ago•0 comments

A pseudo-infinite realtime canvas with 416M individually-drawn pixels

https://everyonedraw.com/canvas
1•seangransee•16m ago•0 comments

RoboMonkey: Test Time Compute for Robotics

https://robomonkey-vla.github.io/
1•rsehrlich•16m ago•0 comments

Spacetime Emerges from Observer-Relative Information

https://www.lesswrong.com/posts/t8bKrJ9tKoPzi6PrK/how-spacetime-emerges-from-observer-relative-information-an
1•vmstabile•17m ago•0 comments

Variadic Generics ideas that won't work for Rust

https://poignardazur.github.io//2025/07/09/variadic-generics-dead-ends/
1•EvgeniyZh•18m ago•0 comments

Superbus (Transport)

https://en.wikipedia.org/wiki/Superbus_(transport)
1•michaefe•22m ago•0 comments

Grok 4 Demo Livestream

https://x.com/i/broadcasts/1lDGLzplWnyxm
6•keepamovin•30m ago•1 comments

A2A Protocol site adds tag filtering with fresh Python examples

https://a2aprotocol.ai/blog/tag/python
1•zhangchengzc•32m ago•1 comments

Bitcoin soars to all-time peak just shy of $112,000

https://www.reuters.com/world/africa/dollar-gains-against-yen-trumps-trade-war-intensifies-2025-07-09/
2•olalonde•34m ago•0 comments

OpenAI's open language model is imminent

https://www.theverge.com/notepad-microsoft-newsletter/702848/openai-open-language-model-o3-mini-notepad
4•gabrielbirnbaum•35m ago•0 comments

Grok 4 Launch [video]

https://twitter.com/xai/status/1943158495588815072
25•meetpateltech•38m ago•16 comments

Why ChatGPT writes like that

https://www.deadlanguagesociety.com/p/rhetorical-analysis-ai
1•rahmaniacc•39m ago•0 comments

Federal court in Colorado fines lawyers for errors caused by use of "AI"

https://archive.org/download/gov.uscourts.cod.215068/gov.uscourts.cod.215068.383.0.pdf
1•1vuio0pswjnm7•42m ago•0 comments

Systemd has been a complete, utter, unmitigated success

https://www.osnews.com/story/142741/systemd-has-been-a-complete-utter-unmitigated-success/
2•sertsa•48m ago•1 comments

World Spider Catalog Version 26

https://wsc.nmbe.ch/
1•noleary•50m ago•0 comments

Show HN: I built Envilo.app to automate editable Stripe invoicing

1•envilo•54m ago•0 comments

Seedance.ai

https://www.seedance.ai/
1•wangava•55m ago•1 comments

Why is Elon Musk always late for its livestream?

1•feizhuzheng•56m ago•1 comments

Bash-5.3

https://lwn.net/Articles/1029079/
3•thunderbong•1h ago•0 comments

Searching for family history as told by a storied WWII telegram

https://mklyons.com/blog/searching-family-history-telegram
1•mklyons•1h ago•0 comments

Can we believe anything about markups anymore?

https://nicholasdecker.substack.com/p/can-we-believe-anything-about-markups
1•OgsyedIE•1h ago•0 comments

Show HN: Still coding in VC++ 6.0 after losing everything, living in a trailer

10•CodeAndExile•1h ago•4 comments

Discovery of ancient riverbeds suggests Mars once wetter than thought

https://www.theguardian.com/science/2025/jul/10/mars-once-wetter-than-thought-surprise-discovery-10000-miles-ancient-riverbeds
2•pseudolus•1h ago•0 comments

Design Considerations for an Anthropophilic Computer (1979)

https://web.stanford.edu/dept/SUL/sites/mac/primary/docs/bom/anthrophilic.html
1•akkartik•1h ago•0 comments

Offpolicy: Generating offline policy data for RL agent environments

https://github.com/arthurcolle/offpolicy
1•arthurcolle•1h ago•0 comments
Open in hackernews

Ask HN: What's Your Experience with Vibe Coding?

2•techlust•8h ago
I’m doing this myself to a pretty far extent while building two agents for my workflow automation. It’s been fun and surprisingly productive, but I’m also worried I might be stacking up technical debt.

Comments

jamsey•7h ago
you probably are stacking up technical debt. However every project has some, it comes down to, weather or not you understand what you are doing. If something goes wrong, would you know where and how to fix it? if the answer is yes, then you are fine IMO, if you don't feel confident with what you have built technically, then it might be worth investing more time into some code harding. but my 5 cents is, vibe coding is meant to be fun, so have fun and learn :)
yen223•3h ago
I'm using Cursor agents + Claude to build a new Android app.

I'm building an app that uses WebRTC, which is not something I am deeply familiar with. I have found Claude to be useful at working through boilerplate (android apps are full of boilerplate) and building a working prototype.

Technical debt can be a problem. You have to be aggressive about either refactoring the code yourself, or getting Claude to refactor it to your style.

fallinditch•30m ago
Agreed that refactoring is often needed - my go-to refactoring LLM is Gemini 2.5 Pro, but Claude and o3 also do well for me.

I find that the context engineering, planning and documenting is crucial, but sometimes I like to let the vibes lead the way.

muzani•56m ago
There's two types of code, based off The Pragmatic Programmer. One is the prototype, you build it and discard it. You absolutely have to discard it, burn it. It's a search algorithm - you're searching for a business problem and surveying different spots.

Second is tracer-bullet - ready, fire, aim. This is just faster than writing up and iterating on specs; the process of coding it determines the spec. Tracer bullets work because they operate in the same environment and under the same constraints as the real bullets. They get to the target fast, so the gunner gets immediate feedback. This forms the skeleton of your code.

Vibe coding is great for both, but people get into arguments because they're talking about different things. Inexperienced people usually use tracer code when they should be making prototypes.

If you're doing prototypes, then technical debt is absolutely not a problem. You should go in there with the mindset of burning it all. A popular myth is prototypes should never be in production - this is simply untrue; most major startups have pushed their prototypes to production then rebuilt it later on. If a prototype isn't in production, then how do you know that customers would pay for it? Just make sure people get what they paid for.

If you're doing tracer code, then you want to be laying down tracks like tests etc. You should probably be doing TDD. TDD plays well with non-deterministic stuff. The big argument against TDD then was that you'd have to code everything twice or you'd have to put in the architectural effort to handle tests. Well, AI gives us the capacity for this.