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
Verifying that +krisw is my blockchain ID. https://onename.com/krisw |
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
kris git[master] ~/src/oss/sails-docker-boilerplate | |
→ docker-compose run sails npm install | |
Building sails... | |
Step 0 : FROM node:4.0.0 | |
4.0.0: Pulling from library/node | |
8b49fe88b40b: Pull complete | |
20b348f4d568: Pull complete | |
16b189cc8ce6: Pull complete | |
116f2940b0c5: Pull complete | |
1c4c600b16f4: Pull complete |
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
#SingleInstance force | |
^g:: | |
setkeydelay, 10, 10 | |
PlotStar("gliese 58", 1000) | |
exit | |
^h:: | |
setkeydelay, 10, 10 | |
PlotStar("hip 8830", 2100) |
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
FROM mini/base | |
RUN apk-install \ | |
bash \ | |
tar \ | |
curl \ | |
git \ | |
c-ares \ | |
libgcc \ | |
libstdc++ \ |
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
kris ~/src/meetup-demo | |
→ sane up | |
events.js:141 | |
throw er; // Unhandled 'error' event | |
^ | |
Error: spawn ember ENOENT | |
at exports._errnoException (util.js:734:11) | |
at Process.ChildProcess._handle.onexit (child_process.js:1022:32) | |
at child_process.js:1114:20 | |
at process._tickCallback (node.js:337:11) |
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
→ boot2docker up --verbose | |
Boot2Docker-cli version: v1.5.0 | |
Git commit: ccd9032 | |
2015/02/22 17:00:12 executing: VBoxManage showvminfo boot2docker-vm --machinereadable | |
2015/02/22 17:00:12 executing: VBoxManage guestproperty set boot2docker-vm /VirtualBox/GuestAdd/SharedFolders/MountPrefix / | |
2015/02/22 17:00:12 executing: VBoxManage guestproperty set boot2docker-vm /VirtualBox/GuestAdd/SharedFolders/MountDir / | |
2015/02/22 17:00:12 executing: VBoxManage sharedfolder add boot2docker-vm --name Users --hostpath /Users --automount | |
VBoxManage: error: Shared folder named 'Users' already exists | |
VBoxManage: error: Details: code VBOX_E_OBJECT_IN_USE (0x80bb000c), component SessionMachine, interface IMachine, callee nsISupports | |
VBoxManage: error: Context: "CreateSharedFolder(Bstr(name).raw(), Bstr(hostpath).raw(), fWritable, fAutoMount)" at line 1009 of file VBoxManageMisc.cpp |
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
user KRIS has entered room | |
analyst Khareen has entered room | |
Khareen: Hello KRIS_, Thank you for contacting Comcast Live Chat Support. My name is Khareen. Please give me one moment to review your information. | |
Khareen: Hi! I hope you are doing well. I would be more than happy to assist you with your concern today. | |
KRIS_: My Issue: intermittent connection issues to various websites, not all but many. |
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
SET statement_timeout = 0; | |
SET client_encoding = 'UTF8'; | |
SET standard_conforming_strings = on; | |
SET check_function_bodies = false; | |
SET client_min_messages = warning; | |
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; | |
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; | |
CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; |
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
/** | |
* Passport Model | |
* | |
* The Passport model handles associating authenticators with users. An authen- | |
* ticator can be either local (password) or third-party (provider). A single | |
* user can have multiple passports, allowing them to connect and use several | |
* third-party strategies in optional conjunction with a password. | |
*/ | |
var bcrypt = require('bcrypt') |
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 jwt = require('jsonwebtoken') | |
module.exports = { | |
issue: function(payload) { | |
sails.log.silly(__filename + ':' + __line + ' [Service.Passport.deserializeUser() called]') | |
return jwt.sign(payload, sails.config.jwt.secret) | |
}, | |
verify: function(token, next) { |