Hacker News
Academicus Otiosus: The Lazy Academic
Article URL: https://thescholarlyletter.scholar-square.com/p/academicus-otiosus-the-lazy-academic
Comments URL: https://news.ycombinator.com/item?id=48185209
Points: 1
# Comments: 0
A Builder's Letter to Anthropic
Article URL: https://unforced.substack.com/p/a-builders-letter-to-anthropic
Comments URL: https://news.ycombinator.com/item?id=48185192
Points: 1
# Comments: 0
No More JetBrains Products for Me
Article URL: https://matthewkosarek.xyz/posts/jetbrains/
Comments URL: https://news.ycombinator.com/item?id=48185188
Points: 2
# Comments: 0
The Enshittification of History
Article URL: https://www.antipope.org/charlie/blog-static/2026/05/the-enshittification-of-histor.html
Comments URL: https://news.ycombinator.com/item?id=48185179
Points: 2
# Comments: 0
UBS: The bank that outgrew a country
Article URL: https://www.ft.com/content/19e68223-1b35-41e7-b1f2-2633f9d618db
Comments URL: https://news.ycombinator.com/item?id=48185165
Points: 1
# Comments: 0
Discogo – Turn any logo or image into a 3D disco ball
Article URL: https://discogo.vercel.app
Comments URL: https://news.ycombinator.com/item?id=48185144
Points: 1
# Comments: 1
'Pro Law Enforcement Bill' Clarity Passed Out of Committee
Article URL: https://www.therage.co/clarity-act-senate-banking/
Comments URL: https://news.ycombinator.com/item?id=48185131
Points: 1
# Comments: 0
The Tech Bros Are Going to Etiquette School
Article URL: https://www.wsj.com/lifestyle/careers/slow-ventures-tech-etiquette-class-20feced9
Comments URL: https://news.ycombinator.com/item?id=48185128
Points: 1
# Comments: 0
Trump drops IRS lawsuit in exchange for DOJ $1.8B 'weaponization' fund
Article URL: https://www.reuters.com/world/trump-dismisses-lawsuit-against-irs-court-filing-shows-2026-05-18/
Comments URL: https://news.ycombinator.com/item?id=48185106
Points: 4
# Comments: 0
Shutterstock to pay $35M over hard-to-cancel subscriptions
Who Reads My RSS Feed?
Article URL: https://george.mand.is/2026/05/who-reads-my-rss-feed/
Comments URL: https://news.ycombinator.com/item?id=48184629
Points: 1
# Comments: 0
Web Push notification suppression bypass (Chrome, Edge, Safari)
Article URL: https://www.bountyy.fi/blog/sleeping-agent-web-push
Comments URL: https://news.ycombinator.com/item?id=48184601
Points: 1
# Comments: 0
We Need a More Serious Discussion About Suicide and AI Chatbots
Article URL: https://www.techdirt.com/2026/05/18/we-need-a-more-serious-discussion-about-suicide-and-ai-chatbots/
Comments URL: https://news.ycombinator.com/item?id=48184596
Points: 1
# Comments: 0
Purchased Digital Content may become unavailable due content provider licensing
Article URL: https://twitter.com/WallStreetApes/status/2056231025731408181
Comments URL: https://news.ycombinator.com/item?id=48184580
Points: 2
# Comments: 0
Show HN: WldBoost: Burn Worldcoin for Better ChatGPT Prompts
Article URL: https://wldboost.com
Comments URL: https://news.ycombinator.com/item?id=48184565
Points: 1
# Comments: 0
How to Have Good Taste
Article URL: https://www.commonreader.co.uk/p/how-to-have-good-taste
Comments URL: https://news.ycombinator.com/item?id=48184560
Points: 1
# Comments: 0
Lemon.li – extension of the charm.li database of car manuals (models thru 2025)
Article URL: https://lemon-manuals.la/nfo.html
Comments URL: https://news.ycombinator.com/item?id=48184556
Points: 1
# Comments: 0
I created a 126K line Android app with AI – the workflow that worked for me
I really wanted to see how far I can go. Can I create a meaningful and complex application, big enough, but without knowing the language.
I have 18+ years of experience as software developer. But I have no experience with Kotlin. And to learn Kotlin, to learn the Android libraries, it is not an easy job. I may need at year of active learning and trying things, before having the confidence to start doing something.
So, I asked myself, how far can I go with AI tools? And I went far!
I created https://howareu.app/
The boring statistics: 126,000 lines of Kotlin across 398 files 45,000 lines of tests across 130 files 3000+ unit tests 50+ production lessons captured 4 months from zero Kotlin experience to production app; 0 lines of Kotlin written manually
Below are the main things that I did and helped me do the product!
Good framework Vibecoding something that big is not an option. You can't write anything in one session. You need a way to keep the context somehow. You need specification. To maintain my specifications I use BMAD framework. It helped me a lot to clear the requirements, prepare the architecture, UI, find any gaps. I used it also a lot for brainstorming session and for marketing. For the latter, it failed
Follow the project rules I use Claude Code with Opus 4.6 (yes, the old version) and keep all my important rules saved in CLAUDE.md file. Every rule in that file exists because I violated it once and something broke. The file grows with the project. This is the key insight: CLAUDE.md turns one-time lessons into permanent constraints. The AI never forgets a rule I put there. I forget constantly.
Keep your documentation up to date I start my session with a custom command that loads all important documents. Enough context, so that when I start prompting, the AI has the basis to make best decisions possible. I end my session with custom command to save all learned, and architectural updates. This way each session is built based on the knowledge from the previous. I have a history, I have an AI that gets smarter with each next session.
Be as descriptive as possible
When you prompt, be as descriptive as possible. I use BMAD to create technical specifications out of my prompts. If the idea is not clear in my head, I do brainstorming session. All possible to minimize the guessing and wrong interpretations during the development phases.
Do you all do code reviews? I do. Usually, with a different LLM. This gives a 'different point of view'. Improves greatly the code quality!
What this is not It is a no-code, but If you know the language, it is worth checking and correcting. With time, the needed small fixes will become less. It is always good to understand and to make the design decisions yourself. It is not effortless. The workflow took months to build. The documentation is extensive. It is not magic. The AI makes mistakes. The difference is that mistakes are caught by the process (tests, reviews, rules, audits) instead of by users;
The takeaway
AI coding tools are not magic code generators. They are force multipliers for engineering process. If your process is "open chat, type prompt, hope for the best," you will be disappointed.
If your process is "document the architecture, define the rules, automate the lifecycle, capture every lesson, review everything critically", the AI becomes unreasonably effective. The investment is not in better prompts. It is in better engineering.
Honesty first
Why am I writing all this?! Because I am desperate! I made this app to help people. Make something good. I want to be sure that I cover as many cases as possible, and that it will really help people. The moment I share in the proper channels that such app exists, I get treated as an intruder, who sells evil!
If somebody would like to help, please, install it, and give me a honest feedback! Thank you!
Comments URL: https://news.ycombinator.com/item?id=48184549
Points: 1
# Comments: 0
The day CSS made me learn algebra again, and I liked it
Article URL: https://schalkneethling.com/posts/the-day-css-made-me-learn-algebra-and-i-liked-it/
Comments URL: https://news.ycombinator.com/item?id=48184530
Points: 1
# Comments: 0
How to Start a Career When AI Is Doing Your Entry-Level Job
Article URL: https://every.to/working-overtime/how-to-start-a-career-when-ai-is-doing-your-entry-level-job
Comments URL: https://news.ycombinator.com/item?id=48184493
Points: 1
# Comments: 0
