[00:14:54] *** stefan_n <stefan_n!~Stefan@47.187.212.234> has quit IRC (Ping timeout: 245 seconds)[00:20:35] *** stefan_n <stefan_n!~Stefan@47.187.212.234> has joined #vertx[00:33:29] *** temporalfox <temporalfox!~temporalf@80.12.55.48> has quit IRC (Ping timeout: 240 seconds)[01:55:34] *** AlexLehm <AlexLehm!~quassel@unaffiliated/alexlehm> has quit IRC (Ping timeout: 264 seconds)[03:15:42] *** temporalfox <temporalfox!~temporalf@cav13-1-82-66-166-124.fbx.proxad.net> has joined #vertx[03:15:42] *** ChanServ sets mode: +o temporalfox[03:23:03] *** kf_backlater <kf_backlater!~kenfinnig@redhat/jboss/kenfinnigan> has quit IRC ()[05:49:30] *** sdf <sdf!51f2b54c@gateway/web/freenode/ip.81.242.181.76> has joined #vertx[05:51:34] <sdf> You guys should use typescript. The doc on vertx website says something along the lines of "vertx js only supports ES5 blablabla". Well if you use typescript it does compile to ES5 valid code even if you write ES6. Also if your libs are done in typescript it gives IDE intellisens[05:52:26] <sdf> There is no reason not to use it. none[05:54:02] *** sdf <sdf!51f2b54c@gateway/web/freenode/ip.81.242.181.76> has quit IRC (Client Quit)[05:57:08] *** wsiqueir <wsiqueir!~wsiqueir@201.75.170.209> has quit IRC (Ping timeout: 240 seconds)[06:08:57] *** wsiqueir <wsiqueir!~wsiqueir@201.75.170.209> has joined #vertx[06:34:09] *** Ephemeral <Ephemeral!~Ephemeral@unaffiliated/ephemeral> has joined #vertx[08:42:52] *** ploffay <ploffay!~ploffay@bip-static-245.213-81-133.telecom.sk> has joined #vertx[08:46:54] *** ugol <ugol!~ugol@host189-218-dynamic.181-80-r.retail.telecomitalia.it> has joined #vertx[09:31:09] *** ove_ <ove_!~ove@2.149.121.27.tmi.telenormobil.no> has joined #vertx[09:32:22] *** ove_ <ove_!~ove@2.149.121.27.tmi.telenormobil.no> has quit IRC (Client Quit)[09:33:27] *** ovestoerholt <ovestoerholt!~ovestoerh@2.149.121.27.tmi.telenormobil.no> has joined #vertx[09:37:41] *** ovestoerholt <ovestoerholt!~ovestoerh@2.149.121.27.tmi.telenormobil.no> has quit IRC (Client Quit)[09:38:01] *** ovestoerholt <ovestoerholt!~ovestoerh@2.149.121.27.tmi.telenormobil.no> has joined #vertx[09:43:18] *** ovestoerholt <ovestoerholt!~ovestoerh@2.149.121.27.tmi.telenormobil.no> has quit IRC ()[09:45:19] *** ovestoerholt <ovestoerholt!~ovestoerh@2.149.121.27.tmi.telenormobil.no> has joined #vertx[09:51:52] *** ovestoerholt <ovestoerholt!~ovestoerh@2.149.121.27.tmi.telenormobil.no> has quit IRC ()[09:52:27] *** ovestoerholt <ovestoerholt!~ovestoerh@2.149.121.27.tmi.telenormobil.no> has joined #vertx[09:55:33] *** ovestoerholt <ovestoerholt!~ovestoerh@2.149.121.27.tmi.telenormobil.no> has quit IRC (Client Quit)[10:04:51] *** ugol <ugol!~ugol@host189-218-dynamic.181-80-r.retail.telecomitalia.it> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)[10:10:03] *** conan_ <conan_!~conan@mdproctor.plus.com> has quit IRC (Quit: Computer has gone to sleep.)[10:49:42] *** AlexLehm <AlexLehm!~quassel@unaffiliated/alexlehm> has joined #vertx[11:26:38] *** pmlopes|Zzzz is now known as pmlopes[11:33:02] *** pmlopes is now known as pmlopes|Zzzz[12:50:13] *** AlexLehm <AlexLehm!~quassel@unaffiliated/alexlehm> has quit IRC (Read error: Connection reset by peer)[13:07:14] *** millrossjez <millrossjez!~millrossj@host86-180-179-23.range86-180.btcentralplus.com> has joined #vertx[13:42:13] *** millrossjez <millrossjez!~millrossj@host86-180-179-23.range86-180.btcentralplus.com> has quit IRC (Ping timeout: 240 seconds)[13:57:25] *** gemmellr_afk <gemmellr_afk!~gemmellr@apache/committer/robbie> has quit IRC (Quit: Leaving.)[13:59:13] *** ced_ <ced_!51f2b54c@gateway/web/freenode/ip.81.242.181.76> has joined #vertx[14:03:02] <ced_> Hey sorry for being thick but I like the project. The success of a tech is proportional to how it is accessible to the average joe. That being said I really think you should get that maven/gradle part out of your javascript doc. It has nothing to do with javascript and javascript user who don't know java don't know about maven/gradle. I tried a few example I didn't have to deal with maven/gradle once. So is it in the doc just to confuse[14:08:09] <ced_> Secundo, I'm not sure why you have your own redis module. I'm sure it works a require('redis') and do what I'm used to do. No vertx doesn't deal with bundling but webpack does. So Imo you should just have a cli that you one init and when one type "vertx serve" then everything is bundled together via webpack. You know like angular-cli. I don't know why you want your own wrapper around redis, you don't need to, and it's annoying to the end[14:08:42] *** ugol <ugol!~ugol@host189-218-dynamic.181-80-r.retail.telecomitalia.it> has joined #vertx[14:10:54] <ced_> There is a reason express is loved, because it's simple and doesn't do too much. Vertx is simple but those wrappers are really annoying. If I know how to use redis cli on js I shouldn't have to relearn it just because I want to use vertx, it also makes the code less portable if I want to switch servers[14:14:49] <ced_> Like just do one thing and do it good. You don't need those wrappers, and you certainly don't need maven in your JS doc... You also don't need to say that nashorn only accept es5.. You guys should get a js dev actually.[14:19:02] <ced_> converting to es5 is part of webpack workflow as well as bundling - requires get bundled to a single js file-[14:36:47] *** AlexLehm <AlexLehm!~quassel@unaffiliated/alexlehm> has joined #vertx[14:46:43] *** ugol <ugol!~ugol@host189-218-dynamic.181-80-r.retail.telecomitalia.it> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)[15:11:04] <myghty> ced_: thanks for the input, I can not actually speak for the project[15:11:22] <myghty> but it is opensource :) why not just file pull requests with your desired changes?[15:11:25] <myghty> :)[15:25:29] *** AlexLehm <AlexLehm!~quassel@unaffiliated/alexlehm> has quit IRC (Read error: Connection reset by peer)[16:16:45] *** tsegismont <tsegismont!~tsegismon@72.118.11.109.rev.sfr.net> has joined #vertx[16:26:15] *** ced_ <ced_!51f2b54c@gateway/web/freenode/ip.81.242.181.76> has quit IRC (Quit: Page closed)[16:32:49] *** tsegismont <tsegismont!~tsegismon@72.118.11.109.rev.sfr.net> has quit IRC (Quit: Leaving)[16:48:00] *** ugol <ugol!~ugol@host189-218-dynamic.181-80-r.retail.telecomitalia.it> has joined #vertx[16:53:24] *** ugol <ugol!~ugol@host189-218-dynamic.181-80-r.retail.telecomitalia.it> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)[18:35:06] *** ugol <ugol!~ugol@host189-218-dynamic.181-80-r.retail.telecomitalia.it> has joined #vertx[18:37:24] *** conan <conan!~conan@mdproctor.plus.com> has joined #vertx[18:46:10] *** wsiqueir <wsiqueir!~wsiqueir@201.75.170.209> has quit IRC (Ping timeout: 240 seconds)[19:03:16] *** wsiqueir <wsiqueir!~wsiqueir@201.75.170.209> has joined #vertx[19:41:33] *** ugol <ugol!~ugol@host189-218-dynamic.181-80-r.retail.telecomitalia.it> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)[19:46:58] *** theRealGent <theRealGent!~theRealGe@unaffiliated/therealgent> has joined #vertx[20:20:52] *** conan <conan!~conan@mdproctor.plus.com> has quit IRC (Quit: Computer has gone to sleep.)[21:07:43] *** AlexLehm <AlexLehm!~quassel@unaffiliated/alexlehm> has joined #vertx[21:32:26] *** theRealGent <theRealGent!~theRealGe@unaffiliated/therealgent> has quit IRC (Quit: Leaving)[22:06:51] *** ssitani <ssitani!~ssitani@2001:1ae9:1c2:7600:2ab2:bdff:fe00:647d> has joined #vertx