Vue.js is a popular JavaScript framework used for building user interfaces. One of the key features of Vue.js is its computed properties, which allow you to react to data being…
Computer Science
Learn about the essentials of computer science, from data structures to algorithms.
Why Vue.js Is Great
I’m certain that the rise of Vue.js isn’t just a trend. It’s now what I think becoming the norm of what the future of web development may be like. I…
How to Setup Vue.js with Typescript Using the Composition API
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…
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…
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…