Ergonomic Mac Keyboard Setup

TLDR: I've tried to optimize my MacOS setup for my personal & work use. The setup uses Karabiner to setup: 1) split style customized mac keyboard. 2) thumb clusters on mac keyboard. 3) app ...
0 Read More

Python Cheat-Sheet

Intro Happy revenge of the fifth! This week, I've been working with Python as I learn more about Machine Learning. I thought it'd be a good idea to put together a cheat-sheet that summarizes ...
0 Read More

Exceptions in Java

Exceptions in Java are events that disrupt the normal flow of a program's execution. They are used to handle errors and other exceptional events that may occur during runtime. Types of Excepti...
0 Read More

Arrays in Java

Arrays are fundamental data structures in Java that store multiple values of the same type in a single variable. Array Characteristics Fixed size: Once created, the size cannot be changed I...
0 Read More

Scanner Class in Java

The Scanner class in Java is part of the java.util package and is used to read input from various sources like the keyboard, files, or strings. It provides methods to parse primitive types (int, doubl...
0 Read More