Home
BS Tech Blog
Cancel

Introduction to the Rust Programming Language

Rust Let’s me be transparent. Rust is the latest programming language to catch my eye and solve a problem that I was encountering. As a member of an IT office, it is incredibly helpful to be abl...

Cross Compiling Rust on a MacBook

Rustup The main tool for installing rust tools! With it, we can install new “toolchains”. Basically, the parts of the rust compiler needed for platform specific compilation. Unfortunately, beca...

Getting Started with Vim

How to Quit? Because Vim is a modal editor, the first question to answer is how to close it. It’s kind of a meme at this point. However you can close vim by pressing “:q” followed by the enter k...

Vim All the Things

What is Vim? Vim is a modal text editor. One of the things that makes this complicated user interface great is that it allows the user to capitalize on letting the computer do alot of work for yo...

Break and Continue Keywords in .Net Core

Break Break is a keyword that we've seen already with switch statements previously, but what if I told you that you can use break in any loop? Well the first question that may come to mind is why...

Branching in .Net Core

Branching What is branching? Basically it is the name give to the broad classification of operations that a computer uses to make decisions. Because a computer can really only move where data is...

Functions in .Net Core

What are Functions? Put simply, a function is a collection of instructions under a specified name, but what do I mean by that and why should you care? Well functions serve 2 main purposes in prog...

Variables in .Net Core

What are Variables? Variables are the containers that we use as programmers to store information. That information can be as simple and small as a number or a character to as large as a game engi...

Wifi Register

Problem The internet has become and important part of modern life, and with that comes the persistent question from house guests: “What's the wifi password?” It can be annoying both as the host a...

First Python Program Part 4

Distribution One part of software development that is the hardest is distributing your finished product to your friends, family, and hopefully customers. There are many ways to accomplish this is...