- Awesome product
- Responsive, mobile first. performance
- Work with a world class journalism team
- 100s of millions of users
- Everyone in the world will know your product (watch people use your code on the train/bus while commuting into work)
- The role
- Skillset
- World class front end HTML5 / CSS3
This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB"> | |
<head profile="http://dublincore.org/documents/dcq-html/"> | |
<title></title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<meta name="description" content="" /> | |
<meta name="keywords" content="" /> | |
<link rel="schema.dcterms" href="http://purl.org/dc/terms/" /> | |
<meta name="DCTERMS.created" content="2006-09-15T12:00:00Z" /> |
This file contains 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
function ctm() { var u = 'undefined'; return ((typeof document.querySelector !== u) && (typeof localStorage !== u) && (typeof window.addEventListener !== u)) ? true : false;} | |
function ctm() {var u='undefined';return typeof document.querySelector!==u && typeof localStorage!==u && typeof window.addEventListener!==u ? true:false;} | |
function ctm(){return 'querySelector' in document && 'localStorage' in window && 'addEventListener' in window ? true:false} | |
function ctm(){try{return 'querySelector' in document && 'localStorage' in window && 'addEventListener' in window ? true:false;}catch(){return false}} | |
function ctm(){return 'querySelector' in document && 'localStorage' in window && 'addEventListener' in window} |
This file contains 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
function aboveFold(obj) { | |
var curtop = 0; | |
if (obj.offsetParent) { | |
do { | |
curtop += obj.offsetTop; | |
} while (obj = obj.offsetParent); | |
} | |
else { | |
curtop = obj.offsetTop; | |
} |
This file contains 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 | |
class BBC_News_Core_Controller_BaseController extends BBC_Controller_Action | |
{ | |
protected $container; | |
/** | |
* Primarily intended for extending the constructor. | |
* Initializing resources used in the controller |
This file contains 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
TomMaslenXXL:workspace maslet02$ rake tools:concat_js | |
rake aborted! | |
No such file or directory - tabloid/webapp/static/js/js_to_concat.js | |
Tasks: TOP => tools:concat_js | |
(See full trace by running task with --trace) |
This file contains 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
# ProxyPass / http://pal.sandbox.dev.bbc.co.uk/ | |
# ProxyPass / http://static.sandbox.dev.bbc.co.uk/ | |
# ProxyPreserveHost on |
This file contains 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
// How I have to do it | |
@mixin image { | |
background: #ccc; | |
margin: 0 0 1.5em; | |
padding-top: 4px; | |
p { | |
color: #666; |
This file contains 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
import BBC.AWS.CloudFormation | |
from BBC.AWS.CloudFormation import SQS, IAM | |
from BBC.AWS.CloudFormation.Common.ResourcePermissions import SQSActions | |
try: import json | |
except ImportError: import simplejson as json | |
template = BBC.AWS.CloudFormation.Template() | |
template.description = ( |