Ideas
I come up with ideas all the time. Way more than I could ever pursue. Rather than lock them in a shoebox to be forgotten, I think I'll put them out on the internet. All concepts are fair game. If you find something you like, then try to make it a reality!
If you want to chat about any ideas, drop me a line @tylermaran
Lenny 🤖
An AI friend you can chat with
- Not a Therapist, Not an assistant, Not even a real human
- Work in progress: https://github.com/tylermaran/hacks/tree/master/lenny2
Sojourn 🎧
Video game style background music
- Had this idea when I was walking around NY with my friend Clint and listening to some sweet ambient tracks. The track changed right as we walked out of the subway station and onto the street. It felt exactly like some Zelda style background music swapping as soon as you leave a dungeon.
- App
- Has a map view, and different segments blocked off based on what music is there
- You can check off different zones by traveling to them
- Stretch: local artists can upload music to those zones (if they are physically present)
- Buildout:
- Probably a Flutter app (cross platform)
- Get lat/long, check against geofence on backend
- Associate certain tracks with a geofence
- Basic audio player on front-end
Mr. Roboto 🍲
A robot that makes raman for you
- I'm imagining a roadside raman stand. 6 seats. Humanoid robot (at least the upper half) serving up bowls of Raman 24 hours a day.
- Raman should be easier than most of the food robot attempts out there, it's 90% water after all (cheap raman I mean, not trying to insult the incredible craft of Raman).
- Probably not a great business idea. CafeX (and all it's competitors) failed after all. The world is just not ready for robotic food that isn't vending maching shaped. But it would be fun to build. And I can imagine showing up at 2 am and chatting with Mr. Roboto while serves me some raman.
AuthHawk 🔒
Inserting env vars at runtime
- Most companies do a terrible job at sharing and managing
.env
variables. The idea is annpm
package that pings a service with the server's private key, grabs a list of secret keys, and inserts them into the Nodeprocess.env
- This does a couple things
- No more slacking your env variablies back and forth. You just configure your keypair once, and then all the secrets live on a central server.
- No more having out of date secrets, it gets pulled every few seconds
- Easy to roll keys without impacting your dev team. It will auto pull the new keys when it polls for new keys.
- You don't have to manage a separate set of keys on Heroku, or AWS, or whatever. It'll still pull from the same source, just with a different Public/Private key pair for production vs. dev secrets.
iZac 🍸
Robotic bartender
- I actually built this one! And it was glorious. But he eventually fell into disrepair and was uncermoniously turned into spare parts. Always an idea I meant to come back to. Learned a lot from the previous iteration, and have some good ideas for where to go with a future model.
- Business potential:
- Self serve is cool and all, but raises a lot of potential problems (over consumption, underage, etc.). The real value is back of the bar. Say you're at a busy club and a sorority comes in and orders 15 vodka cranberrys - just hit Vodka-Cran x 15 and watch them all pop out.
- Music festivals / cruises - anything where people are carrying around that RFID wristband and have been ID'd ahead of time. Solves two of the most annoying problems (id & payments)
Pigeon ✉️
Email template tool with built in SQL queries
- MVP up and running!
- Idea came up when I had to send a lot of one off emails to users at Rysolv. The flow always went something like:
SELECT first_name, email FROM users WHERE something = TRUE
- Copy paste the csv into mailchimp
- Template and send the email from mailchimp
- So instead I built an email templating tool that had a built in SQL terminal.