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
*** Panic Report *** | |
panic(cpu 0 caller 0xffffff8029e17cc2): Kernel trap at 0xffffff8029b0e27e, type 14=page fault, registers: | |
CR0: 0x0000000080010033, CR2: 0xffffff8546c7fa74, CR3: 0x0000000255e360bd, CR4: 0x00000000001606e0 | |
RAX: 0x000000009a8f997b, RBX: 0xffffff80faed5400, RCX: 0xffffff80faed5800, RDX: 0x0000000000000000 | |
RSP: 0xffffff81333f3bc0, RBP: 0xffffff81333f3c30, RSI: 0xffffff80faed5000, RDI: 0x0000000008000000 | |
R8: 0xffffff8642a4f294, R9: 0xffffff8546c7fa74, R10: 0xffffff82e4899594, R11: 0xffffff80faed5800 | |
R12: 0xfffffea1700af000, R13: 0xffffff80faed5ffe, R14: 0xffffff8054df8490, R15: 0x000000000c0017b1 | |
RFL: 0x0000000000010206, RIP: 0xffffff8029b0e27e, CS: 0x0000000000000008, SS: 0x0000000000000000 | |
Fault CR2: 0xffffff8546c7fa74, Error code: 0x0000000000000000, Fault CPU: 0x0 |
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
vagrant@doorbot-test /var/www/ring-site (frontend-chime) $ bundle install | |
Fetching source index from https://rubygems.org/ | |
Fetching [email protected]:EdisonJunior/ring-oauth.git | |
Warning: Permanently added the RSA host key for IP address '192.30.252.131' to the list of known hosts. | |
Permission denied (publickey). | |
fatal: Could not read from remote repository. | |
Please make sure you have the correct access rights | |
and the repository exists. | |
Retrying git clone '[email protected]:EdisonJunior/ring-oauth.git' "/usr/local/rvm/gems/ruby-2.1.3@ring-site/cache/bundler/git/ring-oauth-f57b25d8cf66c58 |
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
cap aborted! | |
SSHKit::Runner::ExecuteError: Exception while executing as [email protected]: bundle exit status: 16 | |
bundle stdout: Warning, new version of rvm available '1.26.11', you are using older version '1.25.34'. | |
You can disable this warning with: echo rvm_autoupdate_flag=0 >> ~/.rvmrc | |
You can enable auto-update with: echo rvm_autoupdate_flag=2 >> ~/.rvmrc | |
You are trying to install in deployment mode after changing | |
your Gemfile. Run `bundle install` elsewhere and add the | |
updated Gemfile.lock to version control. | |
You have added to the Gemfile: |
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
// Testing dynamic content | |
var bookdata = [ | |
{ id: 1, author: "Andy Weir", title: "The Martian", pages: "432", date: "05/23/2016"}, | |
{ id: 2, author: "Ernest Cline", title: "Ready Player One", pages: "531", date: "05/12/2016"}, | |
]; | |
console.log(bookdata); | |
// Setup all the elements | |
var Container = React.createClass({ |
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
// Testing dynamic content | |
var bookdata = [ | |
{ id: 1, author: "Andy Weir", title: "The Martian", pages: "432", date: "05/23/2016"}, | |
{ id: 2, author: "Ernest Cline", title: "Ready Player One", pages: "531", date: "05/12/2016"}, | |
]; | |
console.log(bookdata); | |
// Setup all the elements | |
var Container = React.createClass({ |
OlderNewer