I ctrl-f'd for something else and had to do a double take when I saw that. The worrying part is presumable someone actually does that job - which seems to only involve sticking tubes into people, never mind which hole.
I've thought that inserting IVs is something that nurses struggle with a lot and maybe could be automated. It would be an absolute nightmare to develop that robot though, as you'd have to go through all of the medical device certification on top of dealing with all of the edge cases of human anatomy.
> 4678. Develop transactional Web applications, using Web programming software and knowledge of programming languages, such as hypertext markup language (HTML) and extensible markup language (XML).
Where has this list been all my life? I could have been a zillionaire....
I've heard somewhere the way to find start up ideas is to take something like this list and add AI to it. How do you add AI to a nail salon start-up?
How about: build an augmented reality display for customers who are waiting to get their nails done. It's got a camera, and it will show users what their nails would look like with any of the styles offered by the salon applied.
When I was a child, I really hated having to cut my nails. One of the reasons why I developed an interest in technology, is that I wanted to build a device that cod take care of this horrible job for me. Insert hands, and bam, nails trimmed to the ideal length.
To this day, I've neither seen nor built such a device. Devices to print patterns on your finger nails do exist, however.
I don't really have a point here, but my wife and I recently looked at burial options and there's a beautiful cemetery near us but the only really affordable option is cremation and storage in a wall of tiny notches with little doors with an indoor/outdoor viewing area and garden for visitors.
I have started referring to it as, "Our Cubby" and my wife hates it.
A lot of it is legal, but there is some change happening. WA recently made it legal to compost* human remains, perhaps the first new option outside of burial and cremation?
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 database
optional: rest calls to 3rd parties
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?"
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.
i like the concept (and it's sort of the inversion of another chat app idea i've been tossing around along the lines of cyrano de bergerac) but i don't see what's going to drive adoption
what's the motivation for a user to use this app vs un-moderated chat ? is it driven by the moderator, eg a parent wanting to limit what their kids can say or see ? or is it one of the 2 chatting parties that prefers to have someone else sanitize content before they have to see it, eg to ensure that they don't get d*ck pics ?
in the latter case, what motivates the moderator to participate ?
I think it would have to grow (or die) virally. Like GMail in the early days, moderators would get accounts by being invited.
Although there probably is a way to pitch it as a parental control, I think other demographics could enjoy it too. As you say, the moderation basically ensures no creepers or d*ck picks. That will probably encourage more female users to trust the platform, which would certainly help to boost overall numbers.
It could be a means of chatting to strangers, where the moderator chooses 2 people to pair up. That could get interesting. The idea is still pretty half-baked, but I'd like to explore it more, and maybe use it as a testing ground for decentralised chat technology.
For people who are unsure about social norms of chatting to people, such as those with Aspergers, autism spectrum, or who are just plain shy, I think being a moderator would be a great way to learn how to have an ordinary conversation. I'd also want to make the website fully accessible, with text readers for the blind, and automatic language translation so that people can make friends in other countries.
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<CTRL-A>` 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.
The problem with such a pipeline is that it’s not interactive. Now if you had a REPL that would memoize the steps so that it only ever did one `curl` request, that’d be different and useful.
I know all of this off the top of my head, so less than a minute all up. Well, except the line(".") bit; that didn’t occur to me until I’d done it manually with the help of v_g_CTRL-A, and I had forgotten about the "." argument until I looked up its docs—haven’t used it in a while.
the generated ones look as good as those, example:
5.Evaluate a vehicle's operation and use of the system and record information on the system, such as the number of miles driven, total mileage, speed, and odometer reading.
6.Prepare and administer reports to provide data on vehicle performance, and to support vehicle performance maintenance and repair.
"Splice or solder cables together or to overhead transmission lines, customer service lines, or street light lines, using hand tools, epoxies, or specialized equipment."
No...no no don't do that you will stand a good chance of being electrocuted.
These are not startup ideas, but activities that people do. A startup-idea might be to find a way to make these activities easier.
To make this list more useful, there should be two additional datapoints: 1. How many people does the activity impact 2. How much does the activity impact each person. The product of these would be the total impact. Sorting by the amount of impact would give the most valuable areas for innovation, and there should already be a plenty of businesses focused on these activities.
Actually, if you Google them, you'll find the ONET page for the job descriptions that includes the activity and has more information about the task, e.g. https://www.onetonline.org/link/summary/51-8011.00 (tasks are the 'startup ideas')
183 comments
[ 0.17 ms ] story [ 197 ms ] threadSome are oddly specific
Very specific, and somewhat disturbing.
https://www.youtube.com/watch?v=ejmFSN2qBG0
I've thought that inserting IVs is something that nurses struggle with a lot and maybe could be automated. It would be an absolute nightmare to develop that robot though, as you'd have to go through all of the medical device certification on top of dealing with all of the edge cases of human anatomy.
Succinctly named "Apparatus for facilitating the birth of a child by centrifugal force"
Where has this list been all my life? I could have been a zillionaire....
I wasn't able to find cloudflare in there
Clean, shape, and polish fingernails and toenails, using files and nail polish.
Remove bones, and cut meat into standard cuts in preparation for marketing.
How about: build an augmented reality display for customers who are waiting to get their nails done. It's got a camera, and it will show users what their nails would look like with any of the styles offered by the salon applied.
To this day, I've neither seen nor built such a device. Devices to print patterns on your finger nails do exist, however.
Okay.
> 11031. Transport the deceased to the funeral home.
I think we've found another use for robots.
I have started referring to it as, "Our Cubby" and my wife hates it.
*in a very specific way https://www.cnn.com/2019/05/22/us/washington-human-compostin...
> Apply and release hand brakes.
Literally scale.ai
7024. Collect payment upon job completion.
> 1600. Collect payments from customers.
>51. Conduct raids and order detention of witnesses and suspects for questioning.
Maybe less actually :)
"Maybe less" indeed ;-)
there aren't even 20k ideas...
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 database optional: rest calls to 3rd parties
anyone have an idea they're willing to share ?
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?"
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.
this sounds fun :)
what's the motivation for a user to use this app vs un-moderated chat ? is it driven by the moderator, eg a parent wanting to limit what their kids can say or see ? or is it one of the 2 chatting parties that prefers to have someone else sanitize content before they have to see it, eg to ensure that they don't get d*ck pics ?
in the latter case, what motivates the moderator to participate ?
Although there probably is a way to pitch it as a parental control, I think other demographics could enjoy it too. As you say, the moderation basically ensures no creepers or d*ck picks. That will probably encourage more female users to trust the platform, which would certainly help to boost overall numbers.
It could be a means of chatting to strangers, where the moderator chooses 2 people to pair up. That could get interesting. The idea is still pretty half-baked, but I'd like to explore it more, and maybe use it as a testing ground for decentralised chat technology.
For people who are unsure about social norms of chatting to people, such as those with Aspergers, autism spectrum, or who are just plain shy, I think being a moderator would be a great way to learn how to have an ordinary conversation. I'd also want to make the website fully accessible, with text readers for the blind, and automatic language translation so that people can make friends in other countries.
* Accept uploads.
* Push them to S3 / similar.
* Marvel as you have to filter out nasty images.
* Struggling under the load of hotlinked images.
* Start performing rewrites to serve ads.
* Add chat/comments to try to build a community.
* Get more and more slow and ad-heavy over time.
The process repeats every few years.
Sounds profitable.
> 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
More like Amazon Workplace Services, if Amazon does it.
> 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<CTRL-A>` 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.
My solution:
Updated to remove noise.1. copy the text 2. split by \n 3. sort by length 4. you got sorted list
If you give the start of this list to transformer
https://talktotransformer.com/
the generated ones look as good as those, example:
5.Evaluate a vehicle's operation and use of the system and record information on the system, such as the number of miles driven, total mileage, speed, and odometer reading. 6.Prepare and administer reports to provide data on vehicle performance, and to support vehicle performance maintenance and repair.
The idea is that if a bot can generate patent applications they aren't very novel.
From this we should backtrack and look at existing patents and throw a large percentage of them out : )
No...no no don't do that you will stand a good chance of being electrocuted.
To make this list more useful, there should be two additional datapoints: 1. How many people does the activity impact 2. How much does the activity impact each person. The product of these would be the total impact. Sorting by the amount of impact would give the most valuable areas for innovation, and there should already be a plenty of businesses focused on these activities.
I've cracked the code.