Know it all
A big list of all the props, values, methods, functions, interfaces, modules, constants, constructors, events, attributes, parameters, return values, variables, elements, statements, operators, declarations, types, primatives, selectors and units of all the APIs related to web development.
Source: Know it all
SASS tips and tricks
watch and build:
sass --watch scss:styles
@if
p {
@if 1 + 1 == 2 { border: 1px solid; }
@if 5 < 3 { border: 2px dotted; }
@if null { border: 3px double; }
}
@for
@for $i from 1 through 3 {
.item-#{$i} { width: 2em * $i; }
}
@each
@each $animal in puma, sea-slug, egret, salamander {
.#{$animal}-icon {
background-image: url('/images/#{$animal}.png');
}
}
@each $animal, $color, $cursor in (puma, black, default),
(sea-slug, blue, pointer),
(egret, white, move) {
.#{$animal}-icon {
background-image: url('/images/#{$animal}.png');
border: 2px solid $color;
cursor: $cursor;
}
}
@each $header, $size in (h1: 2em, h2: 1.5em, h3: 1.2em) {
#{$header} {
font-size: $size;
}
}
@while
$i: 6;
@while $i > 0 {
.item-#{$i} { width: 2em * $i; }
$i: $i - 2;
}
Mixins
Variable Arguments
@mixin box-shadow($shadows...) {
-moz-box-shadow: $shadows;
-webkit-box-shadow: $shadows;
box-shadow: $shadows;
}
.shadows {
@include box-shadow(0px 4px 5px #666, 2px 6px 10px #999);
}
Install Windows 7 from a USB drive the very easy way – Bootable USB
The fastest way to install windows 7 is from a bootable …
Source: Install Windows 7 from a USB drive the very easy way – Bootable USB
Download YouTube
- youtube-dl
http://rg3.github.io/youtube-dl/
download via command line:
youtube-dl URL
Just audio:
youtube-dl -f bestaudio URL - Or the youtube-dl GUI for windows: https://github.com/MrS0m30n3/youtube-dl-gui/releases
- Via a website e.g. http://youtubeinmp4.com/
With YouTube In MP4 You can easily download any YouTube video in MP4 format to your computer
Programming from the ground up – free book
I love programming. I enjoy the challenge to not only make a working program,but to do so with style. Programming is like poetry. It conveys a message, not only to the computer, but to those who modify and use your program. With a program, you build your own world with your own rules. You create your world according to your conception of both the problem and the solution. Masterful programmers create worlds with programs that are clear and succinct, much like a poem or essay.
Jonathan Bartlet