Live data from Hacker News

20,000 Startup Ideas

unawaz.github.io

31–40 of 184 posts

Re: 20,000 Startup Ideas

#31

Earlier quoted context omitted.

My FBI guy: a moderated chat app. Instead of just a 2-way chat program, there is a 3rd participant "the FBI guy" who also joins the chat. Every message sent must get approved by the FBI guy before it goes through to the recipient. It should also be possible to send messages to the FBI guy directly. e.g. "Does she/he like me?"

How much do users pay for the privilege to use this app?

No idea, I'm a programmer not a businessman. I don't think OP actually minds about income: "there doesn't need to be a way to eventually monetize it"

I guess some money could be made by using the chat logs to train AI chat bots, and selling those bots. I have no idea how that would work in practice though.

Re: 20,000 Startup Ideas

#32
The five shortest ones (11, 13, 13, 13 and 13 characters long):

> 874. Carve meat.

> 5221. Dig trenches.

> 8361. Graft plants.

> 10799. Align wheels.

> 16441. Shampoo hair.

And the five longest ones (291, 305, 308, 317 and 332 characters long):

> 6231. Keep abreast of government regulations and emerging Web technology to ensure regulatory compliance by reviewing current literature, talking with colleagues, participating in educational programs, attending meetings or workshops, or participating in professional organizations or conferences.

> 12863. Design, develop, select, test, implement, and evaluate new or modified informatics solutions, data structures, and decision-support mechanisms to support patients, health care professionals, and their information management and human-computer and human-technology interactions within health care contexts.

> 7530. Keep abreast of game design technology and techniques, industry trends, or audience interests, reactions, and needs by reviewing current literature, talking with colleagues, participating in educational programs, attending meetings or workshops, or participating in professional organizations or conferences.

> 4806. Direct environmental programs, such as air or water compliance, aboveground or underground storage tanks, spill prevention or control, hazardous waste or materials management, solid waste recycling, medical waste management, indoor air quality, integrated pest management, employee training, or disaster preparedness.

> 5895. Compute, retrace, or adjust existing surveys of features such as highway alignments, property boundaries, utilities, control and other surveys to match the ground elevation-dependent grids, geodetic grids, or property boundaries and to ensure accuracy and continuity of data used in engineering, surveying, or construction projects.

---

My method for determining these things (which may be of interest to some), using just my favourite text editor, rather than slurping it into a REPL for some programming language and manipulating it thus:

1. Copy the whole document to the clipboard;

2. Paste in Vim (and note at this point that lists lose their markers in favour of just a tab character, so the numbers disappear);

3. Manually remove everything that’s not the list;

4. Manually remove the tab at the start of each line with `:%s/^\t//` or block selection (this could also be done in the next step with slight modification, matching `^\t\(.\+)` and using `submatch(1)`);

5. Prefix each line with its length and the line number using `:%s/.\+/\=len(submatch(0)) . "\t" . line(".") . ". " . submatch(0)` (I actually used asterisk instead of \+, but HN formatting hates unmatched asterisks; see `:help sub-replace-\=`; another approach for the line number part alone would have been to block-insert `1.\t` on every line, then block-select all but the first, and use `g` to increment them, see `:help v_g_CTRL-A`);

6. Sort by line length with `:sort n` (since I had put it at the start of the line for convenience);

7. Optionally strip the character counts out again with `:%s/^\d\+\t//` or similar.

sub-replace-\= and v_g_CTRL-A are among my favourite not-so-well-known Vim features. They’re not useful very often, but when they are, they’re really great.

Re: 20,000 Startup Ideas

#34

I enjoy how some of them run together. 10933 and 10934 as an example: Clean, shape, and polish fingernails and toenails, using files and nail polish. Remove bones, and cut meat into standard cuts in preparation for marketing.

I am wondering if you have read all of the 20k rows in order to spot it

Re: 20,000 Startup Ideas

#35
post #25

REQUEST FOR IDEA: i have a backend tech stack that i believe is scalable and efficient (REST or websockets). i'd like to prove this out with a demo or app. i can do a pure-js SPA frontend (eg fitno.us) but i'm terrible at UI so it's not gonna be pretty is there a free service that i could provide that people would use at high scale ? there doesn't need to be a way to eventually monetize it required: store data to dat…

My FBI guy: a moderated chat app. Instead of just a 2-way chat program, there is a 3rd participant "the FBI guy" who also joins the chat. Every message sent must get approved by the FBI guy before it goes through to the recipient. It should also be possible to send messages to the FBI guy directly. e.g. "Does she/he like me?"

+ the agent can retract words or make edits. retracts are visible, but edits are just counted.

this sounds fun :)

Re: 20,000 Startup Ideas

#36

I enjoy how some of them run together. 10933 and 10934 as an example: Clean, shape, and polish fingernails and toenails, using files and nail polish. Remove bones, and cut meat into standard cuts in preparation for marketing.

I am wondering if you have read all of the 20k rows in order to spot it

I'm wondering the exact same thing!

Re: 20,000 Startup Ideas

#37

I enjoy how some of them run together. 10933 and 10934 as an example: Clean, shape, and polish fingernails and toenails, using files and nail polish. Remove bones, and cut meat into standard cuts in preparation for marketing.

I'm confused about 10933. Isn't that just a regular nails salon?

Re: 20,000 Startup Ideas

#38
post #27

> 12064. Manage leasing of facility space. Sounds profitable.

> Regular Brain - Lease an Office

> Nebula Brain - Virtual Offices like Regus Offices

> Galaxy Brain - Coworking spaces

> Exploding Galaxy Brain - WeWork

> Super Exploding Galaxy Brain - OurWork a per second billed coworking/living space

Post reply on HN