Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Lakera – Test your AI hacking skills(lakera.ai ↗)
    discuss
  2. From Operations to a Robot Arm(huggingface.co ↗)
    discuss
  3. GrapheneOS accuses Google of gatekeeping Android 17 features and security fixes(androidauthority.com ↗)
    discuss
  4. Apprentice: A Slim, Extensible Coding Harness (Written in Common Lisp)(github.com/skarnati20 ↗)
    1comments
  5. Getting Outbound Email to Work on DigitalOcean(mailfully.com ↗)
    discuss
  6. Anthropic says Claude now leads a quarter of work building its next AI models(businesstimes.com.sg ↗)
    1comments
  7. Mini-Jev – typesafe's Jev implemented on top of an LLM locally(github.com/r-ms ↗)
    discuss
  8. Inside Microsoft and OpenAI, Worry About Damaging the Publishing Industry(nytimes.com ↗)
    discuss
  9. Richard Feynman – The World from another point of view [video](youtube.com ↗)
    discuss
  10. Talk to JEV(chatgpt.site ↗)
    1comments
  11. Muse for macOS(meta.com ↗)
    discuss
  12. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    discuss
  13. Where Awareness Is Not the Problem(medium.com/gurvinder372 ↗)
    discuss
  14. Microsoft exec called AI scraping 'the largest theft of labor in human(techcrunch.com ↗)
    1comments
  15. NASA satellite discovers a new crater on the moon bigger than the Colosseum(cbc.ca ↗)
    1comments
  16. Forget doomsday: The AI hacking crisis is here(axios.com ↗)
    1comments
  17. Base's B20 Bet Is Growing – Could the Next Billion-Dollar Project Be Built Here?(fika.bar ↗)
    discuss
  18. The FAA's plan to fix air traffic? $875M worth of AI(techcrunch.com ↗)
    discuss
  19. Red and Blue America Have Found Something to Agree On: Flock Cameras Must Go(wsj.com ↗)
    discuss
  20. LawConnect(lawconnect.com ↗)
    1comments
  21. Email marketing from Grok Bot official integration(twitter.com/migma_ai ↗)
    discuss
  22. OSU's Bag Man - What was his bag, man?(oregonstater.org ↗)
    discuss
  23. Mistral Hacked(frenchbreaches.com ↗)
    discuss
  24. Dear developers, we are open‑sourcing our dictation app, Blurt(assemblyai.com ↗)
    discuss
  25. Can an AI chatbot save lives by answering texts about pregnancy?(npr.org ↗)
    discuss
  26. Publishers block the robots.txt path their own affiliate redirects live on(disclosed.info ↗)
    discuss
  27. Productivity Effects Across Generations of AI Coding Tools(ssrn.com ↗)
    1comments
  28. Talk to JEV(github.com/mkotlikov ↗)
    discuss
  29. Typing Python, Gradually [video](youtube.com ↗)
    discuss
  30. PPPlayer – An open-source music player built with Flutter(ppplayer.com ↗)
    discuss

The most important product decision is what you don't build

32 pointsby 3h agoliamnugent.me
14 comments
3h agoHN ↗

Yes. Don't succumb to featuritis. Destroy the barnacles.

3h agoHN ↗

The one I get constantly is we want "custom reporting". Well what the hell is that really? Why, why, why do you need that? Then I just build a new feature they will actually use and defer "custom reporting" for another month.

2h agoHN ↗

I see this all the time... custom reporting, reports... I have seen this so many times in so many places and I wonder why the fuck are people asking about it. Most of the time they have little clue of what they want reported, or how they want the data to look like. Nearly 100% of the time what they mean by reporting is "join all the tables that have a foreign key, force join all the ones that do not have a foreign key by using a union against some arbitrary value picked at most-likely-to-be-the-right-one and dump everything on an "excel spreadsheet". This is the golden standard most people go by.

1h agoHN ↗

I worked with a guy who specialized in custom reporting tools and pipelines. He said that a majority of the time people are asking for custom reporting tools, it’s because the app’s built-in tools for sorting/filtering/aggregating data aren’t answering the questions they are asking.

Now whenever someone brings that up, I ask “What question are they wanting the answer to?”. It usually leads to either a new feature or just clarifying where that question can be answered. Looks like you’ve caught onto that same school of thought.

Sometimes people just want to feed data into their own warehouse so they can query data across different pieces of software, or they are too stubborn to get to the bottom of what question they’re trying to answer.

26m agoHN ↗

Sometimes "reporting" / "monitoring" is how someone does an end-run around normal product and engineering, and we skip adding what ought to be a feature or domain concept.

For example, suppose someone wants special logging whenever a certain field is edited... And then you find out their real goal is to be able to copy-paste old values back in when someone calls up support and says "oops something went wrong." Now the reporting tool is an intermittent part of our customer support.

In contrast, imagine if there was a real "settings events" table that recorded changes in the app and users could go see them. Or a new concept of "revisions", instead of single mutable field.

1h agoHN ↗

Give them an API with the data so they can get create their own reports. Maybe even charge them per hour to create the custom reports.

53m agoHN ↗

I thought "custom reporting" was code for "our in-house dev team is slow".

3h agoHN ↗

It’s hard decision, but it has to be made.

I’m not building space elevator.

1h agoHN ↗

Or as I like to say “the best way to launch is to cut features”.

As an engineering leader you’ve got to advocate for it against product/design all the time.

55m agoHN ↗

The better way is to never have those features in your pipeline already.

52m agoHN ↗

Part of the question may be how do you change the users expectations.

If you are building a product the user already knows, that might not be difficult.

We work in the sleep space, where everyone expects a hypnogram and a sleep score. Even though these things don't actually tell you anything real. They are of little value to most people, but that is the expectation.

51m agoHN ↗

I would say that 'what not to build' is the second most important decision.

The most important decision is what limitations and constraints you are prepared to accept. There are always limitations and constraints but they are rarely identified up-front.

The most difficult, hard-to-revert decisions are those related to hard constraints imposed by the systems and/or data you have to rely on. Maybe it's not physically possible to obtain the data you need to solve the problem you need to solve for the price you need for it to be viable. Maybe you need to be able to process large files which may take many hours to complete. Or your input data grows father than you can process on a single CPU core. Or the security requirements of a particular piece of data means that you can't efficiently connect it to some external piece of data as you need.

19m agoHN ↗

I see posts pop up with this sentiment often and I'm of two minds:

- llms let us build exactly what we want fairly quickly nowadays, or at least a prototype and

- being able to build these features (or separate products) quickly is exactly the trap

It’s the same test I keep applying when picking the right problems to solve — does it make the boat go faster?

Who knows this though? It's rarely engineers. Product often has a good sense within their lane. Leadership usually (at good companies) is mostly aligned, with some nuance depending on who's speaking.

It's a good sentiment but rarely a single person's decision.

As I said, I see these pop up and I'm usually annoyed because what new take could someone bring at this point, but I read them every single time :p

16m agoHN ↗

I would go one step further. Instead of 5 low impact features, build the one high impact one. Instead of a cheap notifications hub, fix the need for why you need one.