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
const webpack = require('webpack'); | |
const path = require('path'); | |
const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
const CopyWebpackPlugin = require('copy-webpack-plugin'); | |
const extractCSS = new ExtractTextPlugin('[name].fonts.css'); | |
const extractSCSS = new ExtractTextPlugin('[name].styles.css'); | |
const BUILD_DIR = path.resolve(__dirname, 'build'); |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
VM_BOX="mwrock/Windows2012R2" | |
# IP address Information | |
STATICIP="x.x.x.x" | |
SUBNETMASK="y.y.y.y" | |
ROUTER="z.z.z.z" |
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 | |
// does not consider &&, ||, XOR, OR, AND operator, ternary operators for now. | |
$var_a = 100; | |
$var_b = 100; | |
$var_c = 110; | |
$var_d = (double) 100; | |
$var_e = "100"; | |
$var_f = false; | |
$symbol_table = compact("var_a", "var_b", "var_c", "var_d", "var_e", "var_f"); |