Install Rosetta for x86 instruction support on Mac
$ softwareupdate --install-rosetta
#include <iostream> | |
#include <math.h> | |
using namespace std; | |
template <class T> | |
struct Node { | |
// ##data memebers## | |
T value; | |
Node *left; | |
Node *right; |
"A File Icon", | |
"Asciidoctor", | |
"AutoFileName", | |
"Emmet", | |
"FileIcons", | |
"GitGutter", | |
"Indent XML", | |
"MarkdownLivePreview", | |
"Material Theme", | |
"Package Control", |
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!
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 [email protected]:OpenLiberty/open-liberty.git
#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\]" |