Live data from Hacker News

Ask HN: What's a side project you built to make money that hasn't?

news.ycombinator.com

581–590 of 600 posts

Re: Ask HN: What's a side project you built to make money that hasn't?

#581
post #417

Two years ago we built this tool https://imagetranslate.com to translate and recreate images such as banners, advertisements, brochures etc. It is being used by individuals as of now. (freelance translators, marketers, ecomm resellers) . But we wanted to integrate it with a bigger localisation tool as it would be of much more value for their day to day translation jobs. We couldn't close a deal there.

I like this a lot.

I assume you are using machine translation on the backend?

Re: Ask HN: What's a side project you built to make money that hasn't?

#582
I built a web app that would setup secret Santa groups. You could add friends from Facebook or just manually and it had a neat feature where you could group individuals that you didn't want to "get" eachother, eg you could group couples in larger friend groups so they didn't get eachother.

It used a genetic algorithm to generate the pairings and handled all the messaging so the organiser was also kept in the dark about who got who.

I slapped an Amazon ad on there and it worked great, but I never bothered marketing it so it got very little usage and eventually I took it down when shutting down an old server.

I learnt a lot about mysql and genetic algorithms, both of which I've gone on to use extensively in my job so it was well worth it overall, just sad it didn't generate a bit of passive income :/

Re: Ask HN: What's a side project you built to make money that hasn't?

#583

Late 2019, I launched https://stocks2.com , a financial site that posts a daily updated report for all NASDAQ/NYSE stocks. It started well, increasingly growing audience and Adsense revenues until Google's May 2020 core update. Since then, the site started sliding in the SERPs and finally it now disappeared from Google. Honestly, I still don't understand why Google has penalized the site so much. Any feedback will be…

Searching for a symbol is not pulling any data. There is no audit info on the page like contact, address, team etc How many page views do you have?

Currently, 3.5k pageviews/month. Used to be 60k. Traffic comes from Bing and social media.

Re: Ask HN: What's a side project you built to make money that hasn't?

#584
post #406

I built a really simple way to poll 50 random people in the US. It's called This or That and functionality is currently very simple. You submit a question along with two images via SMS and you get your answer back usually within the hour. I've had a few people use to test new logo ideas, to ask which of two TV shows to watch, or which outfit looks best. So far no one has paid for it, only a few hundred free users, bu…

Make it useable by asking people to answer questions in exchange for getting to ask their own question? Reaching critical mass may be harder, but I think it would be more random than mechanical turk.

Agreed, answering in return for ask credits is a good idea. Maybe 10 answers = 1 question or something like that. If you make the ratio too large then people will just select anything to get their credits. Another option is to only award a credit if their answer was in the majority.

You can also charge people for the ability to ask a follow up question like why they made the decision they did.

Re: Ask HN: What's a side project you built to make money that hasn't?

#585

Earlier quoted context omitted.

Nice! Do you mind elaborating more on how you went about training your models, where do you generate the outputs (web page? spreadsheet?), and the difficulties you encountered or the tedious/repetitive parts?

I downloaded and have curated historical sports data from various sources and figured out the 'simplest' parameters which work.. which at the moment is just the defaults. Model training is not much to be honest. I have a fairly fast processor so it takes about 10 minutes to run every iteration. It has evolved from predicting just one dimension/feature but now, it predicts all of the variables it can train on (all tra…

>Model training is not much to be honest.

Are you using Jupyter notebooks? Are you saving the model and how?

>That part can be optimised via web scraping but not a priority at the moment but is a priority nevertheless.

Are you doing this manually right now instead of a script?

>Outputs are generated into a spreadsheet at the moment but would publish them onto an online platform later once I figure out the 'monetizing' and user-prompted running of the algorithim part.

What decisions do the results in the spreadsheet inform or what actions do they trigger? How would I, as a consumer, use these results?

Re: Ask HN: What's a side project you built to make money that hasn't?

#586
Ever since covid19 started in March 2020, I developed an app aimed at helping people in NYC find small groups of like-minded friends that they can eventually call their inner circles. If you are in NYC, you know how hard it is to find your circle despite how easy it is to meet people.

It's feature complete, but I need more people to beta test it to see if the flow works or not. Check out www.threefiveapp.com and fill in your email if you are interested.

Re: Ask HN: What's a side project you built to make money that hasn't?

#587
Me and my brother made meeba-app.com an application for backpackers. But as soon as we launched it, this Corona thing started and people are not traveling and backpacking as they used too. We don't have many users now. I still think it could have been a great application for backpacking finding others the same state of mind but we couldn't get enough revenue and me and my brother each works on other things now. (https://meeba-app.com)

Re: Ask HN: What's a side project you built to make money that hasn't?

#588

Earlier quoted context omitted.

I downloaded and have curated historical sports data from various sources and figured out the 'simplest' parameters which work.. which at the moment is just the defaults. Model training is not much to be honest. I have a fairly fast processor so it takes about 10 minutes to run every iteration. It has evolved from predicting just one dimension/feature but now, it predicts all of the variables it can train on (all tra…

> Model training is not much to be honest. Are you using Jupyter notebooks? Are you saving the model and how? > That part can be optimised via web scraping but not a priority at the moment but is a priority nevertheless. Are you doing this manually right now instead of a script? > Outputs are generated into a spreadsheet at the moment but would publish them onto an online platform later once I figure out the 'monetiz…

>Are you using Jupyter notebooks? Are you saving the model and how? Nope, its a python script. I dont use Jupyter notebook as it eliminates (somewhat) the randomising of the training and test dataset. The most of the resources (time) is needed for splitting and fitting which is dependent on randomising and the 'freshness' of the run hence, I use a python script which runs every iteration cycle. Also, since the events happen daily, I have to update the training dataset almost daily hence having a Juypter notebook is not my choice of path forward. Yes, if (and when) user prompted results would be needed, I would go with Juypter notebooks as the target market is extremely finicky and will not wait for 10 minutes for the output. >Are you doing this manually right now instead of a script? I cannot cal it a manual process right now.. its copy-paste.. earlier I had to type the predictors.. which was fun at the start as I understood (somewhat) how the predictors affect the output but now, I just copy-paste from websources >What decisions do the results in the spreadsheet inform or what actions do they trigger? How would I, as a consumer, use these results? Guidance on how the event result can look like.. and the user is on their own on what bets they would like to place. e.g. If its a hockey match, what can the scoreline look like, how many fouls, etc. In NFL, what would each quarter look like, etc. I stay away from advising what bets to put. Its safer for me that way. e.g. if 1st quarer of a NFL event would be 6-1, I would present the output as is.. the user can place bets on what they would seem appropriate.

Re: Ask HN: What's a side project you built to make money that hasn't?

#589

Earlier quoted context omitted.

> current Tech giants are need to be replaced There's no reason their replacement will be any more moral. They should be dismantled imho.

Should the tech giants really be punished for being too successful? I don't think so. They got to their size by being better. Nobody thought yahoo would ever be unseated. Yawho?

Antitrust laws have been around for a long time. Competition is essential for a free market to function optimally. You can disagree, but that's why they exist. Its not to punish anyone.

Re: Ask HN: What's a side project you built to make money that hasn't?

#590

Wrote an addin for Excel which offloaded workbook computation to the GPU for about 10-20x speed improvement. Posted a video demo on YouTube and keep getting the few odd messages once a month asking if it’s available for sale but I’m still clueless on how to properly validate whether it’ll sell. To make it a complete product would require a lot of time which I don’t have right now

I can't tell you how many places I've worked that rely heavily on excel scripts and they're so unbearably slow. These are core functions of the companies and even higher ups use them. There's 100% a market for this and it affects the decision makers so they'll definitely shell out for it.
Post reply on HN