Scott Elcomb

Results 7 comments of Scott Elcomb

- Multi-channel pubsub implemented in global HxBus singleton (window.HxBus or system.bus) - Basic windows implmented as HxPanel (accessible as system.panels or under /mnt/desktop with WASH)

I would like to support localStorage and other engines for persistence (eg server/cloud); this is the primary reason I want to use a VFS. Additional fs drivers can be mounted...

In the same boat, learning HC and seeing the same logs using the `aws-otel-nodejs-arm64-ver-1-0-1:2` layer with lambdas on node runtimes. It doesn't appear to be fatal (ie. I get traces...

[node-jet](https://github.com/lipp/node-jet) - a "Realtime Message Bus for the Web" - may be worth a look for inspiration. It provides Node & [websocket](http://caniuse.com/#feat=websockets) Peers

Haven't tried using multiple renderers on a single scene (or multiple scenes on a page); I'm wondering if a renderer attribute on the scene tag would work? ``` ```

_Edited for clarity_ Hypothetical use-case for multiple renderers: combining glam with [WebRTC](http://www.webrtc.org/) (p2p for the web) may allow peers to act like thin-clients. In addition to the usual renderer (say...

This happens with _node-xml_'s example.js as well: **node v0.5.0-pre** & **node-xml v1.0.0** (via npm install) ``` // ... cb.onStartDocument(function() { sys.puts("DOC-START"); }); cb.onEndDocument(function() { sys.puts("DOC-END"); }); // ... //example read...