Mini-projects by xem, subzey, aemkei, p01, bburky, rlauck, cmoreau, veu, maettig, thiemowmde
https://github.com/codegolf/pac-man (a PAC-MAN clone in less than 350b - WIP)
http://xem.github.io/miniJSperf/ (a JSperf clone in less than 300b)
Mini-projects by xem, subzey, aemkei, p01, bburky, rlauck, cmoreau, veu, maettig, thiemowmde
https://github.com/codegolf/pac-man (a PAC-MAN clone in less than 350b - WIP)
http://xem.github.io/miniJSperf/ (a JSperf clone in less than 300b)
import os, subprocess | |
# Global variables | |
EXCLUDE_FOLDERS = ["node_modules", "bower_components", ".git", "uploads"] | |
PRESENT_DIRECTORY = "." | |
def get_git_repo_path(): | |
git_repo_dir_list = [] |
angular.module('myMdl', []).config(['$httpProvider', function($httpProvider) { | |
$httpProvider.responseInterceptors.push([ | |
'$q', '$templateCache', 'activeProfile', | |
function($q, $templateCache, activeProfile) { | |
// Keep track which HTML templates have already been modified. | |
var modifiedTemplates = {}; | |
// Tests if there are any keep/omit attributes. | |
var HAS_FLAGS_EXP = /data-(keep|omit)/; |
Instructions for setting up Babel to transpile ES6 to a supported format. Part of the activity in the final class of the Girl Develop It Intro to ES6 course.