Establishing the role of the design within a project.
*Designer or Design Team
// --- | |
// Sass (v3.2.9) | |
// --- | |
/*! | |
111000000000000000000111 | |
11000000000000000000000000000000011 | |
100000000000000000000000000000000000000001 | |
100000000000000100001111111000000000000000000001 |
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.7) | |
// ---- | |
@mixin specificity { | |
&#{&} { | |
@content; | |
} | |
} |
Establishing the role of the design within a project.
*Designer or Design Team
// ---- | |
// Sass (v3.3.0.rc.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// http://sassmeister.com/gist/7372729 | |
@mixin specificity { | |
&#{&} { | |
@content; |
// ---- | |
// Sass (v3.3.0.rc.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// &#{&} | |
// http://sassmeister.com/gist/7461027 | |
$primary: bada55; |
Relies on some *nix CLI utilities: mediainfo
; and qt-faststart
(part of ffmpeg
). I used homebrew to install them on OS X.
Pseudo streaming is simply a video that can start playing before it's fully dowmloaded. The videos are not streaming but rather progressively downloaded. What's important is that the file metadata (the Moov Atom) is at the start of the file rather than at the end. Usually this is an option set when encoding the file (called quick start or web start). If the files have not been encoded this way you can either re-encode or use a utility to move the Moov Atom. Re-encoding takes much longer than using a utility to move the Moov Atom so here's how to do it.
First check with mediainfo
to see if video 'is streamable':
Helpful blog post on merging SVN branches
check which branch you're on:
svn info
// ---- | |
// Sass (v3.2.14) | |
// Compass (v0.12.2) | |
// ---- | |
$bodyclass: 'imr'; | |
// http://sassmeister.com/gist/9078434 | |
// Two ways to pass a $bodyclass |
// ---- | |
// Sass (v3.3.0.rc.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@mixin font-face($font-family, $font-file-name: false, $weight: normal, $style: normal, $otf: false) { | |
@font-face { | |
$font: $font-family; | |
$ottf: ttf; | |
$ottf-format: truetype; |