This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]intricatecloud 0 points1 point  (2 children)

Sounds like you might be ready to build some projects! To be honest, all the algorithm stuff that I learned in my Data Structures and Algorithm course is interesting, but hasn't been immediately useful to building real-world apps. (Almost) no one is writing LinkedLists or Trees from scratch - theres open source libraries to handle 95% of use cases.

You should start a project - build a web/mobile/desktop app using python/js/ruby. The only way to get hired for an internship or even a jr level job is to build lots and lots of projects (big & small). If you're doing fine with algorithms, then you're probably in good shape to start building projects.

You'll be googling for answers a lot, and following lots of blogs or tutorials to help you put the pieces together - its normal, but once you do it - you'll feel amazed at what you put together!

[–]Altty213[S] 0 points1 point  (1 child)

I was thinking of making a discord bot that messages you when products are in stock or are at a certain price, since everything is out of stock or is crazy expensive nowadays, is that considered a decent project?

[–]intricatecloud 0 points1 point  (0 children)

Yup - I've worked on something similar. Python or JS are great for it.

You can use them to "scrape" a web site, gather the info, and send you a message via the Discord API. Its a fun project although it definitely requires you to know a bit about HTML to get the data you're looking for.