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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Place Autocomplete</title> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"> | |
<meta charset="utf-8"> | |
<style> | |
.map, #map-canvas { | |
height: 200px; | |
width:100%; |
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
#Open Terminal & move to where you want to install | |
#Install git: sudo apt-get install git-core | |
#git clone https://gist.github.com/6214690.git | |
#cd 6214690/ | |
#sh energyplus.sh | |
#Download EnergyPlus | |
sudo wget http://developer.nrel.gov/downloads/buildings/energyplus/builds/EnergyPlus-7.2.0.006-Linux-64.tar.gz | |
sudo tar xzf EnergyPlus-7.2.0.006-Linux-64.tar.gz | |
find EnergyPlus-7-2-0-006/bin/ -type f -perm -o+rx; |
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
#Open Terminal & move to where you want to install | |
#Install git: sudo apt-get install git-core | |
#git clone https://gist.github.com/6214690.git | |
#cd 7227035/ | |
#sh energyplus8.sh | |
#Download EnergyPlus | |
sudo wget http://developer.nrel.gov/downloads/buildings/energyplus/builds/EPlusV800008-lin-64.tar.gz | |
sudo tar xzf EPlusV800008-lin-64.tar.gz | |
find EnergyPlus-8-0-0 -type f -perm -o+rx; |
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
<html ng-app="modal"> | |
<head> | |
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet"> | |
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.js"></script> | |
<script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.7.0.js"></script> | |
<script> | |
angular.module('modal', ['ui.bootstrap']); | |
var ModalDemoCtrl = function($scope, $modal, $log) { | |
$scope.open = function() { |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>EEB Hub Simulation Platform Accomplishments</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="shortcut icon" href="http://tools.eebhub.org/img/favicon.ico" type="image/x-icon"> | |
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> |
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
var fs = require('fs'); | |
var fork = require('child_process').fork; | |
var async = require('async'); | |
async.series([ | |
function(callback){ | |
var command = fork("./command.js", [], {silent: true }); | |
command.stdout.pipe(process.stdout); | |
command.stderr.pipe(process.stderr); | |