Posts
Adding Cathage Dependencies into React Native
October 13, 2020•898 words
CocoaPods is a great dependency manager, but some need Carthage still. Let's walk through how to integrate Carthage with React Native!
How Computers Speak: Assembly to AST
August 25, 2020•4,915 words
Have you wondered how programming languages are able to be ran on your hardware? This article explains how your code is processed and ran
What do file extensions do?
July 11, 2020•932 words
A file extension isn't the only way a file is inditified, so what does it do?
Better Angular Form Components with ngModel and formControl Implementation
June 9, 2020•2,340 words
Some components make controlling their state easier with 'formControl' and 'ngModel'. Let's see how we can build our own!
Pointers and References in C/C++
June 2, 2020•1,139 words
An overview of how pointers and references function in C/C++
Write Simpler Tests - 5 Suggestions for Better Tests
May 26, 2020•2,411 words
Writing tests is a big skill for any engineer, but we often over-complicate them. Let's simplify our tests for better testing overall!