These are some of my personal picks from this year's FOSDEM. Complete video archive is here and the complete conference schedule is here.
This file contains hidden or 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
| /*CSS Browser Selector v0.4.0 (Nov 02, 2010) | |
| Rafael Lima (http://rafael.adm.br) | |
| http://rafael.adm.br/css_browser_selector | |
| License: http://creativecommons.org/licenses/by/2.5/ | |
| Contributors: http://rafael.adm.br/css_browser_selector#contributors | |
| */ | |
| function css_browser_selector(u) { | |
| var ua = u.toLowerCase(), | |
| is = function(t) { | |
| return ua.indexOf(t) > -1 |
Drush make file is a plain-text file, which describes the components of a drupal installation. Drush can use it to create ready-to-use drupal sites, pulling sources from various locations. It does this by parsing a makefile and downloading the sources it describes. In practical terms, this means that it is possible to distribute a complicated Drupal distribution as a single text file.
- Select the version of drupal you want to install
- Select the modules you want
- Select the libaries you want to use
This file contains hidden or 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
| //Place the <div id="player"></div> on your content page | |
| var tag = document.createElement('script'); | |
| // This is a protocol-relative URL as described here: | |
| // http://paulirish.com/2010/the-protocol-relative-url/ | |
| // If you're testing a local page accessed via a file:/// URL, please set tag.src to | |
| // "https://www.youtube.com/iframe_api" instead. | |
| tag.src = "//www.youtube.com/iframe_api"; | |
| var firstScriptTag = document.getElementsByTagName('script')[0]; |