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
<div class="interaction"> | |
<div>BobSmith:</div> | |
<div class="spoke"> | |
<p><span class="caption">aadfasdfalkja</span> <span class="caption">kjadslk akldf klasj</span></p> | |
<p><span class="caption">aadfasdfalkj</span></p> | |
<p><span class="caption">aadfasdfalkj</span></p> | |
</div> | |
</div> |
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
17-01-30 00:50:19 ERROR (MainThread) [homeassistant.bootstrap] Error during setup of component http | |
Traceback (most recent call last): | |
File "/usr/src/app/homeassistant/util/__init__.py", line 91, in get_local_ip | |
sock.connect(('8.8.8.8', 80)) | |
OSError: [Errno 101] Network is unreachable | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): | |
File "/usr/src/app/homeassistant/bootstrap.py", line 148, in _async_setup_component |
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
FROM node:7.2.1-alpine | |
# Copy application files | |
COPY ./build /usr/src/app | |
WORKDIR /usr/src/app | |
# Install Node.js dependencies | |
RUN npm install --production --silent | |
RUN ls -lR . | |
RUN cat ./assets.js |
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
FROM node:7.2.1-alpine | |
# Copy application files | |
COPY ./build /usr/src/app | |
WORKDIR /usr/src/app | |
# Install Node.js dependencies | |
RUN npm install --production --silent | |
CMD [ "node", "server.js" ] |
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
build | |
database.sqlite | |
node_modules | |
ncp-debug.log | |
npm-debug.log |
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
INFO global: Vagrant version: 1.9.1 | |
INFO global: Ruby version: 2.2.5 | |
INFO global: RubyGems version: 2.4.5.1 | |
INFO global: VAGRANT_OLD_ENV_RBENV_SHELL="bash" | |
INFO global: VAGRANT_OLD_ENV_LOGNAME="dvanbrunt" | |
INFO global: VAGRANT_OLD_ENV__="/usr/local/bin/vagrant" | |
INFO global: VAGRANT_OLD_ENV_SHELL="/bin/bash" | |
INFO global: VAGRANT_OLD_ENV_TERM_SESSION_ID="w0t0p0:7C87EB83-D791-4B13-8D9A-890A7FDD0F96" | |
INFO global: VAGRANT_OLD_ENV_SHLVL="1" | |
INFO global: VAGRANT_OLD_ENV_NVM_IOJS_ORG_MIRROR="https://iojs.org/dist" |
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 host = 'localhost'; | |
var port = parseInt(process.env.PORT) + 1 || 3001; | |
var path = require('path'); | |
var bourbon = require('node-bourbon').includePaths; | |
var ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
var HtmlWebpackPlugin = require('html-webpack-plugin'); | |
var Clean = require('clean-webpack-plugin'); | |
var gitInfo = require('git-repo-info')(); |
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
$puppetVersion = '3.8.1' | |
$MsiUrl = "https://downloads.puppetlabs.com/windows/puppet-$puppetVersion.msi" | |
$MsiUrlx64 = "https://downloads.puppetlabs.com/windows/puppet-$puppetVersion-x64.msi" | |
$PuppetInstallerPath = 'c:\vagrantshared\resources\installers' | |
$PuppetInstallerFile = 'puppet-agent.msi' | |
if ([System.IntPtr]::Size -eq 8) { | |
Write-Host "Going Puppet 64-bit." | |
$MsiUrl = $MsiUrlx64 | |
$PuppetInstallerFile = 'puppet-agent-x64.msi' | |
} |
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
Bringing machine 'default' up with 'virtualbox' provider... | |
==> default: Importing base box 'win2008r2x64'... | |
[KProgress: 10% | |
[KProgress: 90% | |
[K==> default: Matching MAC address for NAT networking... | |
==> default: Setting the name of the VM: win2008r2x64-vagrant_default_1434678115209_76130 | |
==> default: Clearing any previously set network interfaces... | |
==> default: Preparing network interfaces based on configuration... | |
default: Adapter 1: nat | |
default: Adapter 2: hostonly |
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 Scheduler = React.createClass({ | |
getInitialState: function() { | |
//var timers = localStorage.getItem('genomeTimers') === null ? [] : JSON.parse(localStorage.getItem('genomeTimers')); | |
return { | |
recentProjects: [], | |
timers: [] | |
}; | |
}, | |
componentDidMount: function() { |