- I joined BBC News (thanks @tmaslen for seeing it through my embarrassingly bad Skype interview test)
- Learnt lots from the team at BBC (specifically @danscotton) about object-oriented design
- Helped introduce Node/Grunt as build tools
- Shifted the team off of QUnit and onto Jasmine (as an intermediary step towards something better)
- Attended the NET Magazine awards as Mrs Cleveley
- Worked on a new pattern library
- Joined the W3C Responsive Images group and also am now part of BBC GEL.
- Did a lot of refactoring/simplifying of over-engineered code
- Got the chance to write a lot more Ruby and experiment more with Node (and things like PhantomJS)
- Co-Authored the BBC News new photo gallery
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
source ~/.git-completion.sh | |
alias gco='git co' | |
alias gci='git ci' | |
alias grb='git rb' | |
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
#!/usr/local/bin/bash | |
# Add or remove keywords here | |
KEYWORDS_REGEX="var_dump\(|die\(|Zend_Debug::|print_r\(|console\.(debug|info|log|warn)\(" | |
# Add extensions to check here | |
EXTENSIONS_REGEX="(.php$|.phtml$|.js$|.html$)" | |
ERRORS_BUFFER="" | |
TEXT_DEFAULT="\\033[0;39m" | |
TEXT_INFO="\\033[1;32m" | |
TEXT_ERROR="\\033[1;31m" |