Rivers Cuomo is an active developer on GitHub
21–30 of 137 posts
Re: Rivers Cuomo is an active developer on GitHub
#22Rockstar programmer: Rivers Cuomo finds meaning in coding
Re: Rivers Cuomo is an active developer on GitHub
#23Re: Rivers Cuomo is an active developer on GitHub
#24> I've been learning programming since 2015
So something he’s picked up fairly recently.
Re: Rivers Cuomo is an active developer on GitHub
#25Re: Rivers Cuomo is an active developer on GitHub
#26Related interview from a few years ago: Rockstar programmer: Rivers Cuomo finds meaning in coding https://news.ycombinator.com/item?id=25217819
Re: Rivers Cuomo is an active developer on GitHub
#27Earlier quoted context omitted.
> formerly with Yngwie Malmsteen's Rising Force Which made me remember that Cuomo is also a pretty good guitar shredder, not long ago there was an interview with him shredding along his favorite lines from Malmsteen
Cuomo can play
Re: Rivers Cuomo is an active developer on GitHub
#28Re: Rivers Cuomo is an active developer on GitHub
#29According to his `new-albums` repo [1]: > I've been learning programming since 2015 So something he’s picked up fairly recently. [1] https://github.com/riverscuomo/new-albums
Re: Rivers Cuomo is an active developer on GitHub
#30This is at heavy risk for confirmation bias, but I believe that writing chat bots is one of the best ways for people to get into and enjoy coding, because it's fun and rewarding, and simple enough (with an existing framework to use) that just uses strings. For a large generation it was MySpace and the ability to customize your page heavily with HTML. I know a number of people who learned HTML for that reason.
Chat bots seem like the closest modern day equivalent (despite the main platforms making it harder with stuff like difficult to connect to the real time websocket and force use of webhooks). 10 years ago or so when Slack was new and had a gloriously simple API, I even wrote a framework that made it as easy as implementing one function, and you could receive messages (among other metadata like the username of the sender) as strings and send replies easily as strings. It served as an entry point for a few friends who had some fun with it and learned some ruby in the process.
Anyway, if you're looking to get into coding but want to do a "real" project (or something very rewarding), start by writing simple chat bots! If you need some ideas, these are simple:
1. Start with writing a simple echo bot that just replies to every message with the same message that it received.
1. Write a bot that responds to every message with a random number between 1 and 100. For a slight increased challenge, have it do fizzbuzz where the nth message received is the counter.
2. Write a bot that that will reverse the message of whatever it receives, so it echoes replies but backwards.
3. Write a bot that will lookup a word when the message sent is "define " and reply with the definition from one of the many dictionary APIs out there.
Go from there!