Team Contributor at:
He took my website from crawling like a turtle - to - cheetah speed in less than 24 hours"
NFL Football player Ben williams
Interested in a professional website?
Learn how web development with freelancers should be!
What are your marketing goals?
These are just some of the many questions we will discuss
Do you need a copywriter?
Have a logo already?
What are you waiting for?
Schedule an appointment today!
Hiring [Drew] was one of the best decisions of my life
Elizabeth M. of lizzybee's tax and accounting
Join my 100 Days Of Code Slack Community
Potential clients, fellow developers welcome!
Articles
Learn more about Javascript, Dart, Flutter, React, and so much more - I frequently write long form technical articles on how to reproduce a project or in depth explainers on things I struggle(d) with.
Drew Learns Kubernetes – An Introduction to Devops
This is an exhaustive guide that should take you from zero to hero with Kubernetes. Objectives Learn Devops as a practiceUnderstand, deploy, and use KubernetesGet started with containerization and run those containers on KubernetesDeploy Kubernetes locally, on-prem, and on AWSRun stateless and stateful applications on KubernetesAdminister KubernetesPackage and deploy applications using Helm Is this for…
Continue Reading Drew Learns Kubernetes – An Introduction to Devops
My notes for AWS Cloud Certified Solutions Architect Associate
According to Payscale.com, someone with the skillsets proven by the Amazon Web Services Cloud Certified Solutions architect associate makes on average $130,883 in the US and Canada. Getting certified isn’t too hard but will require an AWS free tier account and some effort to study the materials because nothing AWS is intuitive, in my humble…
Continue Reading My notes for AWS Cloud Certified Solutions Architect Associate
Hashicorp Terraform Introduction
I took a course on Terraform from udemy (Link to course). As usual, I wrote some notes for it and thought I’ll need them later and share them for posterity. Enjoy ๐ — DrewLearns Useful Commands You’ll need to be familiar with $ terraform init : This installs the hashicorp plugins in the appropriate directories.…
Deck Of Cards Project Part 2
This Guide is builds upon the previous four articles over at https://drewlearns.com/category/golang/ – if you haven’t already, I recommend you start there and work your way here. Overview: We will create a package that will simulate playing cards you’d use for poker or the like. We are going to create a number of functions that…
Deck Of Cards Project Part 1
If you haven’t already, head over to https://drewlearns.com/category/golang/ and follow some of the prerequisite articles on how to use GoLang and set up your environment. Overview: We will create a package that will simulate playing cards you’d use for poker or the like. Through the course of this project, we are going to create a…
Hello Go World
In my last article, we discussed how to set up your local machine to run and code in GoLang. Today, we will actually start building in GoLang! Input the following into a main.go file: package main import “fmt” func main() { fmt.Println(“Hello World!”) } Let’s break down what all the bits and pieces are! How…