Vue is a web framework, similar to React with its special blend. Vue takes the work of managing multiple states, and boilerplate to make it easier for the developer to…
Category
Computer Science
Learn about the essentials of computer science, from data structures to algorithms.
My Experience as a Software Engineer at a Large Company
I’m deciding to write this post, to help those going into the industry fresh and with no name made for them yet. I come from humble beginnings and I hope…
How to Install Sass On Macs with ARM Processors
I spent some time looking for articles on how to set up Sass, the CSS preprocessor on my Macbook Pro. It had been a while since my last use of…
Learn How to Deploy A Flask Application Using Heroku
Note: this tutorial assumes you’ve used SQLAlchemy, a very common flask/python package to help you manage your database. You’ve probably been working on your application offline for some time, working…
Implementing a Linked List Using Python
We will be implementing a Linked List data structure using python and we will be implementing methods to add, delete, search, and a way to get the size of the…
Computer Science
What’s A Bubble Sort and How to Use It
Students and interested readers are probably dabbling in writing algorithms right now and have heard of the Bubble sort. A simple sorting algorithm that your program can run that will…
What is a Linked List and Why Use One?
You’re studying to become an excellent Software Engineer, you understand data structures are important in your day-to-day, but where do you start? Most likely, with a Linked List. Linked Lists…