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
function setu(node, item){ | |
let unique = true | |
let comparison = function (data) { | |
let aProps = Object.getOwnPropertyNames(data); | |
let bProps = Object.getOwnPropertyNames(item); | |
// number of properties | |
if ((aProps.length-1) === bProps.length) { | |
for (let i = 1; i < aProps.length; i++) { | |
let propName = aProps[i]; | |
// values of same property |
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.recall(6 * 60, { // minutes | |
session: true, | |
hook: function(props) { // { iat, exp, remember } | |
console.log("got to hook") | |
var passed = (Time.now() / 1000) - props.iat; // seconds internally | |
return (passed < exp) ? ((props.exp += passed) && props) : props; | |
} | |
}).then(function(ack) { | |
console.log("got to then") | |
if (ack && ack.sea) { |
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
function setu(node, item){ | |
let unique = true | |
node.map().once(function (data) { | |
let aProps = Object.getOwnPropertyNames(data); | |
let bProps = Object.getOwnPropertyNames(item); | |
// number of properties | |
if ((aProps.length-1) === bProps.length) { | |
for (let i = 1; i < aProps.length; i++) { | |
let propName = aProps[i]; | |
// values of same property |
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
function setu(node, item){ | |
let unique = true | |
node.map().once(function (data) { | |
let aProps = Object.getOwnPropertyNames(data); | |
let bProps = Object.getOwnPropertyNames(item); | |
// number of properties | |
if (aProps.length === bProps.length) { | |
console.log("same len") | |
for (let i = 0; i < aProps.length; i++) { | |
let propName = aProps[i]; |
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
function isu(node, item){ | |
node.map().once(function (data) { | |
let aProps = Object.getOwnPropertyNames(data); | |
let bProps = Object.getOwnPropertyNames(item); | |
// number of properties | |
if (aProps.length === bProps.length) { | |
console.log("same len") | |
for (let i = 0; i < aProps.length; i++) { | |
let propName = aProps[i]; | |
// values of same property |
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
#offer was created | |
{"type":"offer","sdp":"v=0\r\no=- 1757076532130201660 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE 0\r\na=msid-semantic: WMS\r\nm=application 9 DTLS/SCTP 5000\r\nc=IN IP4 0.0.0.0\r\na=ice-ufrag:ayhN\r\na=ice-pwd:wSlLKaiyFy9Z3I+YBq0JbDf6\r\na=ice-options:trickle\r\na=fingerprint:sha-256 B2:93:08:8A:C5:49:1D:B4:53:1E:00:B4:ED:48:2A:03:8C:77:6E:BA:A8:52:3D:B1:EB:0D:CA:43:6F:B1:08:0D\r\na=setup:actpass\r\na=mid:0\r\na=sctpmap:5000 webrtc-datachannel 1024\r\n"} | |
#response was sent | |
{"type":"answer","sdp":"v=0\r\no=- 8436459379733692345 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE 0\r\na=msid-semantic: WMS\r\nm=application 9 UDP/DTLS/SCTP webrtc-datachannel\r\nc=IN IP4 0.0.0.0\r\nb=AS:30\r\na=ice-ufrag:aaRr\r\na=ice-pwd:k4O6SwMSygQOf1zTh/W1YG3S\r\na=ice-options:trickle\r\na=fingerprint:sha-256 F6:DE:8C:08:E5:1A:EB:8E:50:16:C4:2C:CC:AD:A8:B3:8A:35:2A:4C:BB:1E:99:19:03:0E:FE:B7:06:88:C9:75\r\na=setup:active\r\na=mid:0\r\na=sctp-port:5000\r\n"} | |
# No public IP in any of that? Some |
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
0 info it worked if it ends with ok | |
1 verbose cli [ '/home/user/.nvm/versions/node/v11.6.0/bin/node', | |
1 verbose cli '/home/user/.nvm/versions/node/v11.6.0/bin/npm', | |
1 verbose cli 'install', | |
1 verbose cli '-g', | |
1 verbose cli 'webcat' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose npm-session 5b5ab164cf613802 | |
5 silly install loadCurrentTree |
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 path = require('path'); | |
const express = require('express'); | |
var fs = require('fs') | |
var https = require('https') | |
var http = require('http') | |
const Gun = require('gun'); | |
const SEA = require("gun/sea"); | |
require("gun/lib/webrtc"); | |
const port = (process.env.PORT || 8080); |
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 path = require('path'); | |
const express = require('express'); | |
var fs = require('fs') | |
var https = require('https') | |
var http = require('http') | |
const Gun = require('gun'); | |
const SEA = require("gun/sea"); | |
require("gun/lib/webrtc"); | |
const port = (process.env.PORT || 8080); |
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
SSL Peers: | |
Peers: | |
in msg:{"put":{"tom":{"_":{"#":"tom",">":{"name":1562445284408,"occupation":1562445284408}},"name":"tom","occupation":"engineer"}},"#":"4vacfvlnv9v","##":-2111997827}......... | |
out msg:{"put":{"tom":{"_":{"#":"tom",">":{"name":1562445284408,"occupation":1562445284408}},"name":"tom","occupation":"engineer"}},"#":"4vacfvlnv9v","##":-2111997827}......... | |
in msg:{"@":"4vacfvlnv9v","err":null,"ok":1,"#":"sswJgBuXP"}......... | |
out msg:{"@":"4vacfvlnv9v","err":null,"ok":1,"#":"sswJgBuXP"}......... | |
SSL Peers: lfvsmsoIa | |
Peers: | |
ERROR: { [Error: ENOTDIR: not a directory, open '/home/site/public_html/test/superPeer/localBase/thedb/%1C'] | |
errno: -20, |