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
| var gulp = require("gulp"), | |
| gulpWebpack = require("gulp-webpack"), | |
| webpack = require("webpack"); | |
| var buildDirectory = "build"; | |
| gulp.task("build-source", function () { | |
| return gulp | |
| .src("src/js/main.jsx") | |
| .pipe(gulpWebpack({ |
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
| #! /usr/bin/env python | |
| import argparse as ap | |
| from bs4 import BeautifulSoup | |
| from datetime import datetime | |
| import urllib2 | |
| current_time = datetime.now().time() | |
| def format_time(time): |
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
| import argparse as ap | |
| import difflib as diff | |
| import os | |
| import os.path as path | |
| import subprocess as sp | |
| import sys | |
| class Settings(object): | |
| CONFIG_FILE_PATH = ".testconfig" | |
| ACTIONS = { "scan": "scanner", "parse": "parser", "inter": "semantics", "assembly": "codegen" } |