Python – Virtual Environment Tutorial

By | Engineering

A virtual environment in Python allows you to setup a folder for dependencies that could be used among a few projects (i.e. data science projects that need base conda libraries) or isolated per project to ensure no conflicts. This prevents conflicting having a project that needs library v1.0 and another project needing v2.0. To create a new virtual environment, invoke…

Read More

Add SCSS support to Angular Project

By | Engineering

Since Angular 13, it’s super easy to change styling support from .css standard files to modern .scss files. If you need to know more about sass/scss files and the benefits they enable, follow this link: https://sass-lang.com/ You could say they are syntactically awesome styles! The script above will kickoff an Angular CLI command to update your css or scss to…

Read More