Skip to content

Instantly share code, notes, and snippets.

View kelly-ann's full-sized avatar

K-A kelly-ann

  • Tampa, FL
View GitHub Profile
@kelly-ann
kelly-ann / README.md
Created December 30, 2016 00:52 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@kelly-ann
kelly-ann / sublime_text_2_useful_shortcuts.md
Created December 29, 2016 06:49 — forked from nuxlli/sublime_text_2_useful_shortcuts.md
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 - Useful Shortcuts

Tested in Mac OS X: super == command

Open/Goto


  • super+t: go to file
  • super+ctrl+p: go to project
  • super+r: go to methods
@kelly-ann
kelly-ann / displaylink-installer.sh.patch
Created December 9, 2016 23:04
Patch displaylink-installer.sh to work with Fedora
@kelly-ann
kelly-ann / yubikey-fedora-udev.md
Created November 18, 2016 14:08 — forked from fntlnz/yubikey-fedora-udev.md
Yubikey U2F Token CentOS/RHEL/Fedora udev rules

To use a yubico U2F token on CentOS/RHEL/Fedora you need to add the specific udev file to your system to recognize them.

Get the udev rules

wget -O /etc/udev/rules.d/70-u2f.rules https://raw.githubusercontent.com/Yubico/libu2f-host/master/70-u2f.rules

Reload device events

@kelly-ann
kelly-ann / default
Created February 7, 2016 06:12 — forked from tsawler/default
nginx configuration if you are *not* using /vagrant/public for document root. This file goes in /etc/nginx/sites-available/default
server {
listen 80;
server_name localhost;
root /vagrant;
index index.php index.html index.htm;
location / {
try_files $uri $uri $uri/ =404;