.tinted-image {
width: 300px;
height: 200px;
background:
/* top, transparent red */
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
| /* | |
| Change proposed values as necessary... | |
| Proposed Table Name: `region` | |
| Proposed Columns: ID(primary,), Name(char64), CountryCode(char2) | |
| ID - varchar(6), primary key, not null | |
| Name - varchar(64), not null | |
| Country - char(2), not null | |
| */ | |
| INSERT INTO `region` VALUES | |
| ('AD-02', 'Canillo', 'AD'), |
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
| @media print { | |
| h1{ page-break-before: always !important; } | |
| #likes-and-labels-container{ display: none; } | |
| } | |
| #likes-and-labels-container{ display: none; } | |
| h3{ |
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
| {"C-Class Sedan":{"vehicles":[{"name":"C250 Sport","id":"C250WZ","label":"C250 Sport Sedan","image":"http://www.mbusa.com/vcm/MB/DigitalAssets/images/contactus/models/2014_C250WZ_BASE_158_164.png","brand":"MERCEDES"},{"name":"C250 Luxury","id":"C250W","label":"C250 Luxury Sedan","image":"http://www.mbusa.com/vcm/MB/DigitalAssets/images/contactus/models/2014_C250W_BASE_158_164.png","brand":"MERCEDES"},{"name":"C300 4MATIC Sport","id":"C300WZ4","label":"C300 4MATIC Sport","image":"http://www.mbusa.com/vcm/MB/DigitalAssets/images/contactus/models/2014_C300WZ4_BASE_158_164.png","brand":"MERCEDES"},{"name":"C300 4MATIC Luxury","id":"C300W4","label":"C300 4MATIC Luxury","image":"http://www.mbusa.com/vcm/MB/DigitalAssets/images/contactus/models/2014_C300W4_BASE_158_164.png","brand":"MERCEDES"},{"name":"C350 Sport","id":"C350W","label":"C350 Sport Sedan","image":"http://www.mbusa.com/vcm/MB/DigitalAssets/images/contactus/models/2014_C350W_BASE_158_164.png","brand":"MERCEDES"},{"name":"C63","id":"C63","label":"C63 AMG |
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
| /** | |
| * Dubiously created by Adrian Cooney | |
| * http://dunxrion.github.io | |
| */ | |
| (function(console) { | |
| "use strict"; | |
| //Bootlegged of imgur.com/memegen | |
| var memes = {"10 Guy":"http://i.imgur.com/LaENqOV.jpg","3rd World Success Kid":"http://i.imgur.com/WA5duA1.jpg","90's Problems":"http://i.imgur.com/tL47qtp.jpg","Aaand It's Gone":"http://i.imgur.com/yf12saq.jpg","Actual Advice Mallard":"http://i.imgur.com/WymFmVy.jpg","Advice Dog":"http://i.imgur.com/Qk0VO6D.jpg","Advice God":"http://i.imgur.com/xH2fSFg.jpg","Almost Politically Correct Redneck":"http://i.imgur.com/YqLgINf.jpg","Am I The Only One":"http://i.imgur.com/gS9YL5U.jpg","Ancient Aliens":"http://i.imgur.com/NfCknz0.jpg","Annoyed Picard":"http://i.imgur.com/s9GmfSS.jpg","Annoying Childhood Friend":"http://i.imgur.com/27VCyQw.jpg","Annoying Facebook Girl":"http://i.imgur.com/ccczyGt.jpg","Anti-Joke Chicken (Rooster)":"http://i.imgur.com/KOsW0jh.jpg","Awkward Penguin":"http://i.imgur.com/ez1tQrq.jpg","Back In My Day Grandpa":"http://i.imgur.com/zuJSZp8.jpg", |
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
| /** | |
| * http://cdnjs.com/ | |
| * Extract, save as window.cdnjs and output as JSON string. | |
| */ | |
| window.cdnjs = {}; | |
| $('#example').find('tr').each(function(){ | |
| var name = $(this).attr('data-library-name'), | |
| url = $(this).find('p[itemprop="downloadUrl"]').text(), |
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
| <?php | |
| /** | |
| * SplClassLoader implementation that implements the technical interoperability | |
| * standards for PHP 5.3 namespaces and class names. | |
| * | |
| * http://groups.google.com/group/php-standards/web/final-proposal | |
| * | |
| * // Example which loads classes for the Doctrine Common package in the | |
| * // Doctrine\Common namespace. |