This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Debian LAMP Stack (Zsh script) | |
# Author: Christopher Riding | |
sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get install -y wajig && wajig install -y vim && wajig install apache2 mysql-server && mysql_secure_installation && wajig install php5 php-pear php5-curl php5-mysql | |
echo "ServerName localhost" >> /etc/apache2/conf.d/name | |
sudo a2enmod rewrite | |
sudo service apache2 restart | |
# Add vhosts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The Stocks: http://thestocks.im/ | |
Jay Mantri: http://jaymantri.com/ | |
New Old Stock: http://nos.twnsnd.co/ | |
Unsplash: http://unsplash.com/ | |
Splashbox: http://splashboxapp.com/ | |
Little Visuals: http://littlevisuals.co/ | |
Death to the Stock Photo: http://join.deathtothestockphoto.com/ | |
Gratisography: http://www.gratisography.com/ | |
Free Refe Mobile Photos: http://getrefe.tumblr.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"color_scheme": "Packages/Base16/base16-eighties.dark.tmTheme", | |
"theme": "Flatland Dark.sublime-theme", | |
"trim_trailing_white_space_on_save": true, | |
"ensure_newline_at_eof_on_save": true, | |
"trailing_spaces_include_current_line": false, | |
"font_size": 13, | |
"ignored_packages": [], | |
"highlight_line": true, | |
"highlight_modified_tabs": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://learn.ustwo.com/sketch-resources | |
http://weekplan.net/wp-content/uploads/2014/08/Getting-First-Things-Done.pdf | |
https://github.com/sindresorhus/pageres | |
http://blogs.atlassian.com/2014/08/jira-6-3-untangle-development/ | |
http://www.timeful.com/ | |
http://flexible.gs/ | |
http://zurb.com/university | |
https://cdnify.com/blog/top-10-gulp-tasks-for-optimising-front-end-performance/ | |
http://csswizardry.com/2014/08/advice-to-budding-front-end-developers/ | |
https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Generate a new SSH key | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
Add your SSH key to the ssh-agent: | |
ssh-add ~/.ssh/id_rsa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set from = "xxxxxxx" | |
set realname = "xxxxxxxx" | |
# Quick Settings | |
set my_server = mail.messagingengine.com | |
set my_user = xxxxxxxx | |
set my_pass = xxxxxxxx | |
# Account Information | |
set smtp_url = "smtp://$my_user:$my_pass@$my_server:587" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How to reset the root password for mysql: | |
Stop mysql: | |
1. service mysql stop | |
Run mysql with skip grants to be able to login without any password | |
2. mysqld_safe --skip-grant-tables & | |
Login as root | |
3. mysql -u root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $ = function (selector) { | |
return document.querySelector(selector); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
<title> | |
</title> | |
<meta name="author" content=""> | |
<meta name="description" content=""> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, | |
body { | |
min-height: 100%; | |
} | |
html { | |
box-sizing: border-box; | |
font-size: 16px; | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100%; |
OlderNewer