Talk delivered 2015-07-29 at ICERM workshop on "mathematics and data science"
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
| block variables | |
| doctype html | |
| html(lang="ja") | |
| head(prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#") | |
| meta(charset="UTF-8") | |
| meta(http-equiv="X-UA-Compatible" content="IE=edge") | |
| meta(name="viewport" content="width=device-width, initial-scale=1.0") | |
| title #{pageTitle} | |
| meta(name="description" content=pageDescription) | |
| meta(name="keywords" content=pageKeywords) |
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'), | |
| gutil = require('gulp-util'), | |
| sass = require('gulp-sass'), | |
| rubysass = require('gulp-ruby-sass'), | |
| fileinclude = require('gulp-file-include'), | |
| rename = require('gulp-rename'), | |
| notify = require('gulp-notify'), | |
| livereload = require('gulp-livereload'), | |
| lr = require('tiny-lr'), | |
| connect = require('gulp-connect'), |
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 | |
| /** | |
| * Template Name: Event Details | |
| * | |
| * This is a Genesis-ready template that will display a single event | |
| * | |
| * Event Registration and Management Plugin for WordPress | |
| * | |
| * @ package Event Espresso | |
| * @ author Seth Shoultes |
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 ruby | |
| require 'rubygems' | |
| require 'active_support' | |
| require 'json' | |
| require 'commander/import' | |
| program :name, "xml2json" | |
| program :version, "1.1.0" | |
| program :description, "XML to JSON converter" |