Skip to content

Instantly share code, notes, and snippets.

View KyleAure's full-sized avatar
🏳️‍🌈
Proud

Kyle Aure KyleAure

🏳️‍🌈
Proud
  • Rochester, MN
View GitHub Profile

Setup colima on ARM Mac to Run x86 Docker Images

Prerequisites

Install Rosetta for x86 instruction support on Mac

$ softwareupdate --install-rosetta
@KyleAure
KyleAure / bst.cpp
Last active September 27, 2019 21:32
#include <iostream>
#include <math.h>
using namespace std;
template <class T>
struct Node {
// ##data memebers##
T value;
Node *left;
Node *right;
@KyleAure
KyleAure / Sublime Packages
Last active May 22, 2019 05:33
Packages for Sublime
"A File Icon",
"Asciidoctor",
"AutoFileName",
"Emmet",
"FileIcons",
"GitGutter",
"Indent XML",
"MarkdownLivePreview",
"Material Theme",
"Package Control",

Naviate to directory

Open terminal and navigate to the directory you want to use.

cd desktop

Check git version

Check that you have git installed.

@KyleAure
KyleAure / 2018-websphere-internship.md
Last active August 22, 2018 20:31
Summer 2018 IBM Websphere Internship
@KyleAure
KyleAure / github-notes.md
Last active August 20, 2019 22:08
Github Command Notes

Github Notes

Notes for some of the common but complicated things I do in git. All in one place so that I can copy and paste them!

Commit Triangle

When setting up a new local repo follow these steps to create a triangle that makes pull requests and other 'GitHub' specfic tasks easier to handle.

# This is the main repo such as git@github.com:OpenLiberty/open-liberty.git
@KyleAure
KyleAure / .bash-profile
Last active January 9, 2020 15:57
Personal bash profile and supporting files
#Source and export of git-promt.sh
source ~/git/git-prompt.sh
#Colors
RESET="\[\033[0m\]"
RED="\[\033[01;31m\]"
GREEN="\[\033[01;32m\]"
BLUE="\[\033[01;34m\]"
YELLOW="\[\033[01;33m\]"
CYAN="\[\033[01;36m\]"