[nodejs] Re: [ANN] webkitgtk

2014-09-10 Thread mscdex
On Wednesday, September 10, 2014 4:47:49 PM UTC-4, Egor Egorov wrote: > > > Yeah if you could provide a link that would be great. > > > https://github.com/kapouer/node-webkitgtk -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-poli

[nodejs] [ANN] Tilez

2014-09-10 Thread Luca Morandini
Tilez is a Node.js application serving vector tiles in GeoJSON or TopoJSON according to the TMS specification https://github.com/AURIN/tilez Vector tiles are used to display geo-spatial data in the browser as JSON geometries, not as images, leading to richer user experience and better performa

Re: [nodejs] Re: [ANN] webkitgtk

2014-09-10 Thread Scott Elcomb
On Wed, Sep 10, 2014 at 4:47 PM, Egor Egorov wrote: > On Monday, September 8, 2014 6:33:42 PM UTC+3, kapouer wrote: >> >> Hi, >> >> this module is developed only for linux, and provides a nice >> API to drive webkit2gtk3: >> >> var View = require('webkitgtk'); >> > > Yeah if you could provide a l

[nodejs] Re: [ANN] webkitgtk

2014-09-10 Thread Dhi Aurrahman
You can follow the repository from here: https://github.com/kapouer/node-webkitgtk Cheers, diorahman On Thursday, September 11, 2014 3:47:49 AM UTC+7, Egor Egorov wrote: > > > Yeah if you could provide a link that would be great. > > On Monday, September 8, 2014 6:33:42 PM UTC+3, kapouer wrote

[nodejs] Re: Native Module - Code review request, and some doubts

2014-09-10 Thread Jonathan Cardoso
Ok, I found out why 2 was happening, it was because I was calling the function directly, without checking if any exceptions were throw, I'm using node::MakeCallback() now. Em quarta-feira, 10 de setembro de 2014 16h29min04s UTC-3, Jonathan Cardoso escreveu: > > Currently I'm building a libcur

[nodejs] Re: worry.... of ES6 and Node & errors

2014-09-10 Thread Ep Ga
I'm more so speaking on syntax style... are we going to have to be force to use the enw syntax style or will there be a choice in the programming style we prefer? like callback function and so on. dark days ahead I see... dark days... -- Job board: http://jobs.nodejs.org/ New group rule

[nodejs] Intro to Node.js

2014-09-10 Thread John Wang
Hello fellow Node users, I just started learning node.js and some of the tutorials are not too complete. Do any of you have great tutorials for learning node and hopefully more advanced ones as well? Thanks, John Wang -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.gi

Re: [nodejs] worry.... of ES6 and Node & errors

2014-09-10 Thread Rick Waldron
On Tue, Sep 9, 2014 at 6:57 PM, Jeremy Darling wrote: > I'm not on the Node team but I would assume that it would depend on what > the V8 team decides to do since Node is basically a wrapper around V8 at > the end of the day. If the V8 team decides to enforce ES6 only (unlikely) > V8 implemento

[nodejs] Re: [ANN] webkitgtk

2014-09-10 Thread Egor Egorov
Yeah if you could provide a link that would be great. On Monday, September 8, 2014 6:33:42 PM UTC+3, kapouer wrote: > > Hi, > > this module is developed only for linux, and provides a nice > API to drive webkit2gtk3: > > var View = require('webkitgtk'); > > View('http://wikipedia.fr').png().

[nodejs] Re: Using Async waterfall in node.js

2014-09-10 Thread Tom Boutell
Have you read this? https://github.com/caolan/async#waterfall There's a simple example. i don't really see what more you could ask for there. On Saturday, September 6, 2014 5:52:26 PM UTC-4, Alex Brodov wrote: > > I have 2 function that i'm running asynchronously, i'd like to write them > usin

[nodejs] Native Module - Code review request, and some doubts

2014-09-10 Thread Jonathan Cardoso
Currently I'm building a libcurl bindings for nodejs, mostly for learning purposes, as I'm really new to C++ (like, this is my first time programming something in C++), so you can find it here: https://github.com/JCMais/node-libcurl If anyone is willing to take

[nodejs] A fair test between bcryptjs and twin-bcrypt

2014-09-10 Thread Adrian Lynch
I'm seeing bcryptjs beat twin every time with the following code: var bcryptJS = require('bcryptjs'); var twinBcrypt = require('twin-bcrypt'); var password = "password"; var rounds = 12; var hash, start, end; // twin-bcrypt start = new Date(); hash = twinBcrypt.hashSync(password, twinBcrypt.genS

[nodejs] Re: Folder permissions get mixed up...

2014-09-10 Thread Jimb Esser
The correct value for rwx/r-x/r-x, as an integer, is 493. That's the decimal number representation of the octal number 755. You can pass the string '755' which node kindly, if confusingly, interprets as octal instead of decimal when you pass a string to chmod, or 0755, the C-language-and-desc

Re: [nodejs] Folder permissions get mixed up...

2014-09-10 Thread Ryan Schmidt
On Sep 8, 2014, at 10:13 PM, Ingwie Phoenix wrote: > > I am trying to use the following function for a matter of security in my app: > > function doDirs(uid, gid) { >var dirs = [ >config.base+"/cache", >config.base+"/cdn/assets", >config.base+"/config" >]; >fo

Re: [nodejs] worry.... of ES6 and Node & errors

2014-09-10 Thread Rick Waldron
On Tuesday, September 9, 2014, Ep Ga wrote: > Are you going to force user to use ES6? A lot of dislike ES6 and are for > ES5+; staying complaint with our code style and syntax as ES5, with the > addition of new feature such as let and const, +. Which does not change the > syntax but just add on

[nodejs] worry.... of ES6 and Node & errors

2014-09-10 Thread zladuric
Do you have a source of that data? Because majority of professionals I've spoken to and I'm following are eager to start using ES6, done already do. Especially because it will, implicitly it explicitly, prevent whole classes of errors. In any case, I think it is up to the upstream provider of V8

Re: [nodejs] worry.... of ES6 and Node & errors

2014-09-10 Thread Jeremy Darling
I'm not on the Node team but I would assume that it would depend on what the V8 team decides to do since Node is basically a wrapper around V8 at the end of the day. If the V8 team decides to enforce ES6 only (unlikely) and not provide backward compatibility with ES5 then Node would most certainly