Skip to content

Instantly share code, notes, and snippets.

View thehig's full-sized avatar

David Higgins thehig

  • Dublin, Ireland
View GitHub Profile

Header 1

Header 2

Header 3 ### (Hashes on right are optional)

Header 4

Header 5

Markdown plus h2 with a custom ID ## {#id-goes-here}

Link back to H2

This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one

@thehig
thehig / flyout-dropdown-winjs.md
Created October 9, 2017 13:02 — forked from Skymetal/flyout-dropdown-winjs.md
winjs: Flyout/Dropdown

Flyout/Dropdown

HTML

#flyout-control

The flyout element that contains the repeater that will be displayed, populated with options

@thehig
thehig / complexMerge.md
Created October 9, 2017 13:02 — forked from Skymetal/complexMerge.md
git: Complex merge

Performing a very complex merge

The problem

  • We have two servers, one named staging, one named production.
  • We have made changes on the staging branch to:
    • Use an alternate authentication source
    • Display more complex errors
    • Communicate with the staging server
  • We have branched from staging to implement a new feature (feature-easypost)
@thehig
thehig / sublimegit.md
Last active January 7, 2017 13:06 — forked from Skymetal/sublimegit.md
git: sublime & git setup
  • Generate Github SSH keys
  • Configure Git
    • Username & email
      • git config --global user.email "your_email@example.com"
      • git config --global user.name "Billy Everyteen"
    • Default Commit tool (sublime)
      • git config --global core.editor "'C:/Program Files/Sublime Text 3/subl.exe' -w"
    • Set git push strategy
      • git config --global push.default matching
  • Last (-n)/gitconfig
@thehig
thehig / l33t seg.ino
Created August 18, 2016 10:40 — forked from Skymetal/l33t seg.ino
Arduino: 1337 7segment
// CONST's
int DS_pin = 8;
int STCP_pin = 9;
int SHCP_pin = 10;
int C1_pin = 1;
int C2_pin = 2;
int C3_pin = 3;
int C4_pin = 4;
@thehig
thehig / .bash_profile
Last active December 14, 2015 14:52 — forked from gwing33/.bash_profile
My git shortcuts in my ~/.bash_profile
# Git Shortcuts
alias g='git'
alias gs='git status'
alias gst='git status -sb'
alias ga='git add'
alias gau='git add -u' # Removes deleted files
alias gp='git pull'
alias gpu='git push'
alias gc='git commit -v'
alias gca='git commit -v -a' # Does both add and commit in same command, add -m 'blah' for comment