Give developers more knowledge about how the classes behave in a non-relative sense: BEM + ITCSS = BEMIT
BEM:
Give developers more knowledge about how the classes behave in a non-relative sense: BEM + ITCSS = BEMIT
BEM:
{ | |
"name": "reload/drupal-composer-project", | |
"description": "Composer template for Drupal projects", | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://gist.githubusercontent.com/webflo/5ebd4103f374779882e6/raw/07c263f83194448bd13503cc62fcca554e05f955/composer.json" | |
}, | |
{ | |
"type": "composer", |
{ | |
"name": "fweber/foo.dev", | |
"authors": [ | |
{ | |
"name": "Florian Weber", | |
"email": "[email protected]" | |
} | |
], | |
"minimum-stability": "dev", | |
"prefer-stable": true, |
Native HTML controls are a challenge to style. You can style any element in the web platform that uses Shadow DOM with a pseudo element ::pseudo-element
or the /deep/
path selector.
video::webkit-media-controls-timeline {
background-color: lime;
}
video /deep/ input[type=range] {
## | |
# Ruby script to find top-level empty directories in a working SVN directory tree | |
# | |
# A directory is considered empty, if there are zero files reachable through this directory (excluding | |
# files under .svn directories). That means that a directory containing other empty directories is | |
# also empty (recursively). The algorithm will consolidate the output so that it only contains | |
# top-level empty directories, but not their sub-directories. | |
# | |
# The output of this script can be used, for example to remove non-used parts of a SVN repository: | |
# ruby empty_dirs.rb | xargs svn del |
{ | |
"name": "your-app-name", | |
"version": "0.0.1", | |
"private": true, | |
"dependencies": { | |
"http-proxy": "0.8.x", | |
"connect": "2.3.x" | |
} | |
} |
// | |
// injection-proxy.js | |
// Emil Stenqvist <[email protected]> | |
// | |
// Free for all! | |
// | |
// A content-replacing proxy in node.js. | |
// | |
// I made this for debugging JavaScript on a live website. | |
// |
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible). | |
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export. | |
var FORMAT_ONELINE = 'One-line'; | |
var FORMAT_MULTILINE = 'Multi-line'; | |
var FORMAT_PRETTY = 'Pretty'; | |
var LANGUAGE_JS = 'JavaScript'; | |
var LANGUAGE_PYTHON = 'Python'; |