Here is a list of the Sublime Text packages I use:
- HTML-CSS-JS Prettify
- Sass
- SideBarEnhancements
- Theme - Soda
- Emmet
- Base16 Color Schemes
Header add "disablevcache" "true" |
.element:after { | |
content: "."; | |
display: block; | |
height: 0; | |
visibility: hidden; | |
clear: both; | |
} |
// Get screen dimensions | |
// http://stackoverflow.com/questions/18546067/why-is-the-window-width-smaller-than-the-viewport-width-set-in-media-queries | |
var screenDimensions = function() { | |
var e = window, a = 'inner'; | |
if (!('innerWidth' in window )) { | |
a = 'client'; | |
e = document.documentElement || document.body; | |
} | |
return { width : e[ a+'Width' ] , height : e[ a+'Height' ] }; | |
} |
/*! | |
Theme Name: | |
Theme URI: | |
Description: Custom responsive WordPress theme | |
Author: Hayona BV | |
Author URI: http://www.hayona.nl/ | |
Version: 1.0 | |
Tags: |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page title - site title</title> | |
<meta charset="utf-8"> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta name="format-detection" content="telephone=no" /> | |
<link rel="stylesheet" href="#" media="screen"> |
/* | |
* | |
* Got this from https://css-tricks.com/styling-texty-inputs-only/ | |
*/ | |
input:not([type=submit]):not([type=file]) { | |
/* omg so much cleaner */ | |
} |
Small but incredibly useful guide from wiak, posted on http://superuser.com/questions/40281/how-do-i-get-an-entire-directory-in-sftp
well this little guide should help, mirror a remote server to local folder with lftp
lftp sftp://user:[email protected]:22 -e 'mirror --verbose --use-pget-n=8 -c /remote/path /local/path'
on_sent_ok: "location.replace('/path/to/thankyou');" | |
flamingo_email: "[email]" | |
flamingo_name: "[lastname]" | |
flamingo_subject: "[subject]" |