This file contains 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 class="no-js" lang="en"> | |
<head> | |
<title>Project</title> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge;chrome=1"> | |
<meta name="viewport" content="width=device-width"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<script> | |
(function() { |
This file contains 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
# ------------------------- | |
# Aiases & Functions | |
# ------------------------- | |
# locations | |
alias desktop="cd ~/Desktop/" | |
alias dev="cd ~/Development/" | |
alias ..="cd ../" | |
# hosts related |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- Generated by: TmTheme-Editor --> | |
<!-- ============================================ --> | |
<!-- app: http://tmtheme-editor.herokuapp.com --> | |
<!-- code: https://github.com/aziz/tmTheme-Editor --> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Summerfruit</string> |
This file contains 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
.wysiwyg li { | |
margin: 0 0 5px; | |
} | |
.wysiwyg ul, | |
.wysiwyg ol { | |
margin: 0 0 15px; | |
padding: 0 0 0 20px; | |
list-style-position: outside; | |
list-style-image: none; |
This file contains 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
(function() { | |
setTimeout(function(){ | |
window.onerror = function() { return true; }; | |
$('a, :input').click(function(){ return false; }); | |
$('body').keydown(function(){ return false; }); | |
var o = $ || jQuery; | |
o.add = o.addBack = o.addClass = o.after = o.ajax = o.ajaxPrefilter = | |
o.ajaxTransport = o.ajaxComplete = o.ajaxError = o.ajaxSend = o.ajaxStart = | |
o.ajaxStop = o.ajaxSuccess = o.andSelf = o.animate = o.append = o.appendTo = | |
o.attr = o.before = o.bind = o.blur = o.change = o.children = o.clearQueue = |
This file contains 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
<style>body { font-family: sans-serif; max-width: 760px; margin: 0 auto; padding: 10px 30px 20px; line-height: 1.4;} em {color: #888; }</style> |
This file contains 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
# source the users bashrc if it exists | |
if [ -f "${HOME}/.bashrc" ] ; then | |
source "${HOME}/.bashrc" | |
fi | |
# colour | |
export PS1="\[\e[36;1m\]\u\[\e[0m\]\[\e[36m\]@\h\[\e[36;1m\]\w \[\e[1;37m\]\$ \[\e[0m\]" | |
# cd and then ls - Source: http://alias.sh/cd-and-then-ls | |
function cd () { |
This file contains 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
<IfModule mod_rewrite.c> | |
# Enable Rewrite Engine | |
RewriteEngine On | |
RewriteBase / | |
# Redirect *.domain.co.uk* to *.domain.io* | |
RewriteCond %{HTTP_HOST} ^(.*)domain\.co\.uk$ [NC] | |
RewriteRule ^(.*)$ http\://%1domain\.io/$1 [R=301,L] |
This file contains 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
.box, | |
.sector, | |
.section, | |
.quadrant, | |
.crate, | |
.container, | |
.page, | |
.content, | |
.body, | |
.head, |
This file contains 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
@import "compass/utilities/sprites"; | |
$icon: sprite-map("icon/*.png", $layout: smart); | |
i, .i { | |
display: inline-block; | |
vertical-align: middle; | |
background-repeat: no-repeat; | |
background-position: top left; | |
background-image: $icon; |
OlderNewer