- 15 Minut Projekt - 15 Minut Projekt [2003] [Album]
- J Dilla - Ruff Draft [2003] [Album]
- Thundercat - The Golden Age of Apocalypse [2011] [Album]
- Thundercat - Apocalypse [2013] [Album]
- Thundercat - The Beyond / Where the Giants Roam [2015] [Album]
- Flying Lotus - Cosmogramma [2010] [Album]
- Emancipator - Soon It Will Be Cold Enough [2006] [Album]
- Goldfrapp - Felt Mountain [2000] [Album]
- Goldfrapp - Tales of Us [2013] [Album]
- Goldfrapp - Head First [2010] [Album]
| 10-Bit H.264 | |
| For all those who haven’t heard of it already, here’s a quick rundown about the | |
| newest trend in making our encodes unplayable on even more systems: So-called | |
| high-bit-depth H.264. So, why another format, and what makes this stuff | |
| different from what you know already? | |
| First off: What is bit depth? | |
| In short, bit depth is the level of precision that’s available for storing color | |
| information. The encodes you’re used to have a precision of 8 bits (256 levels) |
| 'use strict'; | |
| // simple express server | |
| var express = require('express'); | |
| var app = express(); | |
| var router = express.Router(); | |
| app.use(express.static('public')); | |
| app.get('/', function(req, res) { | |
| res.sendfile('./public/index.html'); |
| /* ******************************************************************************************* | |
| * THE UPDATED VERSION IS AVAILABLE AT | |
| * https://github.com/LeCoupa/awesome-cheatsheets | |
| * ******************************************************************************************* */ | |
| // 0. Synopsis. | |
| // http://nodejs.org/api/synopsis.html |
Pure SASS-adaption of Lea Verou's contrast-ratio javascript. Can be useful when eg. generating colored buttons from a single supplied color as you can then check which out of a couple of text colors would give the best contrast.
This script currently lacks the support for alpha-transparency that Lea supports in her script though.
In addition to the color-contrast adaption there's also some math methods that were needed to be able to calculate the exponent of a number and especially so when the exponent is a decimal number. A 2.4 exponent is used to calculate the luminance of a color and calculating such a thing is not something that SASS supports out of the box and not something I found a good pure-SASS script for calculating and I much prefer pure-SASS over ruby extensions. The math methods might perhaps be unecessary though if you're running Compass or similar as they may provide compatible math methods themselves.
Normal usage: `color: pick_best_color(#f00
| #!/bin/bash | |
| # Functions ============================================== | |
| # return 1 if global command line program installed, else 0 | |
| # example | |
| # echo "node: $(program_is_installed node)" | |
| function program_is_installed { | |
| # set to 1 initially | |
| local return_=1 |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\monokai] | |
| "Colour21"="255,255,255" | |
| "Colour20"="245,222,179" | |
| "Colour19"="200,240,240" | |
| "Colour18"="0,217,217" | |
| "Colour17"="179,146,239" | |
| "Colour16"="174,129,255" | |
| "Colour15"="122,204,218" |
| // | |
| // Regular Expression for URL validation | |
| // | |
| // Author: Diego Perini | |
| // Created: 2010/12/05 | |
| // Updated: 2018/09/12 | |
| // License: MIT | |
| // | |
| // Copyright (c) 2010-2018 Diego Perini (http://www.iport.it) | |
| // |