Hacker News new | ask | show | jobs
by TeMPOraL 2450 days ago
Here you go:

  (function () {
    var els = document.getElementsByTagName("li");
    var startups = ["A web-based platform", "An AI-powered platform", "Uber for",
                    "Subscription-based service", "Blockchain", "A folder that syncs"]
    for(var i = 4 ; i < els.length ; ++i) {
      els[i].innerText = startups[Math.floor(Math.random() * startups.length)] + " for people who " + els[i].innerText;
    }})()
Paste it into dev console on that page to receive an instant list of proper startup ideas.

The code is GPLv3, and can be trivially modified to generate further interesting startup ideas.

EDIT: Modified to add a greater variety of instant startup ideas!

1 comments

Cool. But it should be in React Native and AI to raise some money.
Don't know about React Native, but updated the app to generate AI-related ideas (and some others).