Glowing Tatooine sun, stars fading in out, parallax background layers, BB-8 animated rolling (still working on BB-8)
A Pen by Laura Sage on CodePen.
# Install tmux on Centos release 6.5 | |
# http://superuser.com/questions/738829/attempting-to-install-tmux-on-centos-6-4-or-centos-6-5-fails-with-error-evbuff | |
# | |
# READ THIS FIRST!!! | |
# MAKE SURE YOU HAVE BUILD TOOLS/COMPILERS TO BUILD STUFF FROM SOURCES | |
# yum groupinstall "Development Tools" | |
# CD TO TEMPORARY DIRECTORY |
defaults write com.apple.finder QLEnableTextSelection -bool TRUE; killall Finder |
#!/bin/sh | |
# GENERAL COMMANDS | |
alias l='ls -AHhlp' | |
alias c='clear' | |
alias cx='chmod +x' | |
alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'" | |
alias reload='source ~/.bash_profile' | |
alias release='xattr -d com.apple.quarantine' | |
alias flushdns='sudo discoveryutil udnsflushcaches' |
Glowing Tatooine sun, stars fading in out, parallax background layers, BB-8 animated rolling (still working on BB-8)
A Pen by Laura Sage on CodePen.
class Todos | |
attr_accessor :priority, :urgency, :title, :description, :quadrant | |
def initialize(priority = 1, urgency = 1) | |
@priority, @urgency = priority, urgency | |
end | |
def quadrant | |
# case (@priority, @urgency) | |
# puts "is_imp ==> #{is_imp}" | |
if is_imp == "Imp" && is_urgent == "Urgent" |
{ | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 2, | |
"caret_extra_top": 2, | |
"caret_extra_width": 2, | |
"caret_style": "solid", | |
"wide_caret": false, | |
"color_scheme": "Packages/Colorcoder/cobalt2 (Colorcoded).tmTheme", | |
"font_size": 12, | |
"highlight_line": true, |
alias accio=wget | |
alias avadaKedavra='rm -f' | |
alias imperio=sudo | |
alias priorIncantato='echo `history |tail -n2 |head -n1` | sed "s/[0-9]* //"' | |
alias stupefy='sleep 5' | |
alias wingardiumLeviosa=mv | |
alias sonorus='set -v' | |
alias quietus='set +v' |
Install HomeBrew first
brew update
brew tap caskroom/cask
brew install brew-cask
If you get the error "already installed", follow the instructions to unlink it, then install again:
ember cdv:build --environment=production --release --codeSignIdentity="iPhone Developer" | |
ember cdv:build --platform=android --environment=production --release |