- HTML and CSS: Design and Build Websites
- Learning Web Design: A Beginner's Guide to HTML, CSS, JavaScript, and Web Graphics
- Bulletproof Web Design: Improving flexibility and protecting against worst-case scenarios with HTML5 and CSS3
- Handcrafted CSS: More Bulletproof Web Design
- CSS Mastery: Advanced Web Standards Solutions
- Selectors, Specificity, and the Cascade
- Values, Units, and Colors
- [CSS Fonts](http://www.amazon.com/CSS-Fonts-Eric-A-Meyer/dp
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
/* | |
* @fileoverview Program to free the content in kindle books as plain HTML. | |
* | |
* This is largely based on reverse engineering kindle cloud app | |
* (https://read.amazon.com) to read book data from webSQL. | |
* | |
* Access to kindle library is required to download this book. | |
*/ | |
// The Kindle Compression Module copied from http://read.amazon.com application |
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
upstream phpfpm { | |
server unix:/var/run/php5-fpm.sock; | |
} | |
upstream hhvm { | |
server unix:/var/run/hhvm/hhvm.sock; | |
} | |
# SSL | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; |
Open PowerShell: Start > All Programs > Accessories > Windows PowerShell > Windows PowerShell
To get Date Created, run commands:
$file = Get-Item "D:\My folder\my-file.md"
$file.CreationTime
The output will look like this (in system's local time):
Wednesday, July 16, 2014 16:24:00
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
{ | |
"vars": { | |
"@gray-darker": "lighten(#000, 13.5%)", | |
"@gray-dark": "lighten(#000, 20%)", | |
"@gray": "lighten(#000, 33.5%)", | |
"@gray-light": "lighten(#000, 46.7%)", | |
"@gray-lighter": "lighten(#000, 93.5%)", | |
"@brand-primary": "#359", | |
"@brand-success": "#5cb85c", | |
"@brand-info": "#5bc0de", |
-
PhoneGap by Adobe (PhoneGap Build)
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
/* | |
* Crop image using CSS | |
*/ | |
#top-stories figure, | |
#latest-stories figure { | |
display: block; | |
overflow: hidden; | |
width: 81px; | |
} |
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
<?php | |
// Remove Canonical Link Added By Yoast WordPress SEO Plugin | |
function at_remove_dup_canonical_link() { | |
return false; | |
} | |
add_filter( 'wpseo_canonical', 'at_remove_dup_canonical_link' ); | |
function wpseo_attachment_canonical_parent( $canonical ) { |
First create global variables (in functions.php or as a mu-plugin):
<?php
/*
* CUSTOM GLOBAL VARIABLES
*/
function wtnerd_global_vars() {
NewerOlder