Timestamp Message
21 Sep 2018
16:46:59@munprix:fabric.pubmoonprix invited @three-dog-night:fabric.pubthree-dog-night.
3 Oct 2018
18:38:02@colemaibara:verse.imcolemaibara changed their profile picture.
12 Oct 2018
23:57:37@eric:ericmartindale.com@martindale

@room gearing up for 0.3 launch; looking for 15-20 developers to spend ~1 hour of time installing, configuring, and building something with Maki. Our objective is 15 minutes, start to finish, per idea into implementation as a deployable app.

If you, or someone you know, wants to participate in our beta, please join #beta:fabric.pub (or use the "invite to this room" feature in Grove) and await further instructions.

15 Oct 2018
22:33:47@colemaibara:verse.imcolemaibara left the room.
24 Oct 2018
03:28:16@eric:ericmartindale.com@martindale invited @colemaibara:verse.imcolemaibara.
03:28:31@eric:ericmartindale.com@martindale invited @internetfriend:fabric.pubinternetfriend.
03:31:52@eric:ericmartindale.com@martindale invited @notmartindale:fabric.pubnotmartindale.
03:32:08@eric:ericmartindale.com@martindale@room now that work on Fabric 0.1 is nearing completion, we should take another pass on the documentation site: https://docs.maki.io/ — if you've built something with Maki, or would like to in the immediate future, please chime in over the next few days so we can take inventory of available examples. Effective immediately, we're looking for copywriters, designers, and developers to focus on docs.maki.io as the primary entry point for new developers into our ecosystem. Send them our way (via chat.fabric.pub) or speak up if you're available for work over the next month or two!
04:02:07@notmartindale:fabric.pubnotmartindale joined the room.
04:06:16@internetfriend:fabric.pubinternetfriend joined the room.
25 Oct 2018
09:15:21@colemaibara:verse.imcolemaibara joined the room.
7 Nov 2018
00:39:25@eric:ericmartindale.com@martindale invited @robles:fabric.pubKing Robles III.
00:39:25@eric:ericmartindale.com@martindale invited @varda:fabric.pubvarda.
00:39:25@eric:ericmartindale.com@martindale invited @annihilation:matrix.organnihilation.
01:08:20@varda:fabric.pubvarda joined the room.
02:50:35@robles:fabric.pubKing Robles III joined the room.
23:24:11@annihilation:matrix.organnihilation joined the room.
13 Nov 2018
16:35:21@eric:ericmartindale.com@martindale invited @dieguito:fabric.pubdieguito.
16:35:42@dieguito:fabric.pubdieguito joined the room.
16:38:11@eric:ericmartindale.com@martindale

@dieguito:fabric.pub: for Maki, you'll need a configuration file... something like this should work:

const config = {
  service: {
    name: 'RSKChat'
  }
}

const Maki = require('maki');
const app = new Maki(config);

app.define('Person', {
  attributes: {
    name: { type: String }
  }
});

app.start();
16:39:02@eric:ericmartindale.com@martindale Off the top of my head, I cannot specifically recall the required elements of config, but that should be it — any errors you get should be self-explanatory (and if they aren't, yell at me here)
16:39:06@dieguito:fabric.pubdieguitoRoger that!
16:39:42@eric:ericmartindale.com@martindaleThe resource guide is here: https://docs.maki.io/docs/resources.html — you can think of Resources as "Network Types"
16:39:57@eric:ericmartindale.com@martindaleor just "Types" in traditional CS
16:41:10@dieguito:fabric.pubdieguitoNow I get this error: xxxx/node_modules/pem/lib/pem.js:9 const { promisify } = require('es6-promisify') ^
16:45:15@eric:ericmartindale.com@martindale nvm ls or node -v ?
16:48:30@dieguito:fabric.pubdieguitov4.2.6
16:49:08@dieguito:fabric.pubdieguitoI switched to that because it was on the Maki docs but let me know what environment works
16:49:31@dieguito:fabric.pubdieguitoI'm running MacOSX and using brew for the setup
16:50:02@eric:ericmartindale.com@martindale Oh, wow, then we need to update those docs 😂 — nvm use 8 should get you going