Live data from Hacker News

Ask HN: Those making $500/month on side projects in 2022 – Show and tell

news.ycombinator.com

611–620 of 627 posts

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#611

My JavaScript screencast, letscodejavascript.com, made over $10K net profit per month at its peak. It costs $25/month for unlimited access to over 600 videos. I stopped producing videos in April 2018, but the site is still up, and still gets occasional new subscribers. (There's been an influx lately, in fact, and I have no idea why. Maybe because I have a new book out.) It's still netting more than $500/month, althou…

I'd really would like to know how do you go from video idea to a finished video, especially audio part. I tried making tutorials and just ended mumbling 70% correct facts and rest wasn't actually correct.

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#612

My JavaScript screencast, letscodejavascript.com, made over $10K net profit per month at its peak. It costs $25/month for unlimited access to over 600 videos. I stopped producing videos in April 2018, but the site is still up, and still gets occasional new subscribers. (There's been an influx lately, in fact, and I have no idea why. Maybe because I have a new book out.) It's still netting more than $500/month, althou…

do css and golang

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#613
post #28

I created Video Hub App - browse, search, and organize your videos - "like YouTube for videos on your computer". It's a commercial project / charityware that is turning 4 years old next month. I sell it for $5 per copy and give $3.50 to a cost-effective charity. If you go to the blog you'll see the history of sales. As of now I donated almost $13,000 to charity thanks to this project. It's averaging around 100 sales…

one customer segment that can reaaaally benefit from this is people who edit videos, they need to have repository of 1000s of sound effects, memes, and clips from general media. There really needs to be a tool to find gifs, images, videos and audios by typing general word and it even should match synonym tags.

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#614

My JavaScript screencast, letscodejavascript.com, made over $10K net profit per month at its peak. It costs $25/month for unlimited access to over 600 videos. I stopped producing videos in April 2018, but the site is still up, and still gets occasional new subscribers. (There's been an influx lately, in fact, and I have no idea why. Maybe because I have a new book out.) It's still netting more than $500/month, althou…

I'd really would like to know how do you go from video idea to a finished video, especially audio part. I tried making tutorials and just ended mumbling 70% correct facts and rest wasn't actually correct.

The main channel was the “Recorded Live” series, which was basically livecoding with me thinking out loud. That didn’t require any real prep, as I had enough experience with a previous livecoding show that it came out pretty well. The main thing I did was edit out pauses and gaps while I was thinking so that it flowed nicely. I would also announce a pause when I needed to go research something (which was fairly common) and edit a “fade to black” into the video.

The “Lessons Learned” channel was more elaborate. The video at objectplayground.com [1] is my most popular example. For those, I would make slides and animations in Keynote, then record while playing the slides. I had an outline, but not a script, as I felt that made the narration less stilted. Sometimes that resulted in minor mistakes going into the video. For more serious ones, I would record a new line and edit it into the video.

In all cases, I would edit out pauses, and if I misspoke or stumbled over my words, I’d just repeat myself and edit out the mistake. I got pretty good at editing—because there was no video of my face, I could make cuts that were basically invisible. My livecoding videos each had hundreds of cuts, typically just half a second or so. It would take a 20 minute recording down to a 15 minute final video. It took about 4 minutes of editing per minute of final video.

[1] The video on objectplayground.com isn’t showing up on my phone for some reason. You can find it here instead:

http://www.letscodejavascript.com/v3/comments/lessons_learne...

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#615

Earlier quoted context omitted.

I'd really would like to know how do you go from video idea to a finished video, especially audio part. I tried making tutorials and just ended mumbling 70% correct facts and rest wasn't actually correct.

The main channel was the “Recorded Live” series, which was basically livecoding with me thinking out loud. That didn’t require any real prep, as I had enough experience with a previous livecoding show that it came out pretty well. The main thing I did was edit out pauses and gaps while I was thinking so that it flowed nicely. I would also announce a pause when I needed to go research something (which was fairly commo…

thanks, as someone who just started out doing cuts leave feeling like im in the wrong place

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#616
post #2

https://bruzu.com API to generate images on the fly. Sample https://img.bruzu.com/?a.text=HN3

did you built the editor, it must have taken 2 months at least

Yes, using fabricjs for that, we are improving it everyday but yes, it took few days to make the MVP of the editor.

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#617
post #2

https://bruzu.com API to generate images on the fly. Sample https://img.bruzu.com/?a.text=HN3

I have done this before, a bare bones example can be done easily in Lambda with GraphicsMagick and ImageMagick for node https://www.npmjs.com/package/gm see "annotate an image" example. I understand your service does more that this. I map the POST JSON to GM params to allow the caller to do nearly anything GM CLI can do.

Yes its very easy to build.

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#618

I built an email forwarding service - not for your own domains, a lot of those exist already - instead you can choose an email at any of our 150+ domains and we forward it to your existing account, no migration required. You can even send from this address with many providers. https://www.mailbox.my

what do you need to learn to run your email servers, im assuming you run your email servers?

Yes I'm running my own servers.

You should know your way around Linux (if you already know Ubuntu, you can use it on the server as well).

You need some software: - For receiving and routing mails: I use postfix - For authenticating: Dovecot - For serving mails via IMAP: Dovecot is a popular choice

There are some good guides on the net how to set up these on Ubuntu or Debian (which is pretty similar), just google for e.g. "postfix ubuntu".

It's critical that the mail you route arrives at the other end, so you must prevent spammers from abusing your systems. Otherwise you get blacklisted. As a start you need to implement state-of-the-art things like: SPF, DKIM, DMARC. MTA-STS, TLS-RPT are also useful. None of these are hard and there are also good tutorials out there, it's just a bit of work.

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#619
post #616

Earlier quoted context omitted.

did you built the editor, it must have taken 2 months at least

Yes, using fabricjs for that, we are improving it everyday but yes, it took few days to make the MVP of the editor.

thanks didn't know about fabricjs

Re: Ask HN: Those making $500/month on side projects in 2022 – Show and tell

#620

Earlier quoted context omitted.

what do you need to learn to run your email servers, im assuming you run your email servers?

Yes I'm running my own servers. You should know your way around Linux (if you already know Ubuntu, you can use it on the server as well). You need some software: - For receiving and routing mails: I use postfix - For authenticating: Dovecot - For serving mails via IMAP: Dovecot is a popular choice There are some good guides on the net how to set up these on Ubuntu or Debian (which is pretty similar), just google for…

Is there a site like MDN for these things? how did you learn this?
Post reply on HN