00:00:00
| * ircretary | quit (Remote host closed the connection) |
00:00:08
| * ircretary | joined |
00:01:18
| * thloren__ | quit (Ping timeout: 264 seconds) |
00:02:47
| * thlorenz_ | joined |
00:03:58
| * thlorenz_ | quit (Read error: Connection reset by peer) |
00:04:14
| * thlorenz | quit (Remote host closed the connection) |
00:06:34
| <jlord> | hey are there people here who like the east bay!? |
00:13:13
| <jlord> | yay! ok, if i host a github drinkup next thursday, will people come? |
00:16:49
| * mikolalysenko | joined |
00:24:03
| <mbalho> | ya |
00:28:49
| * maksimlin | joined |
00:42:14
| * whit537 | quit (Ping timeout: 264 seconds) |
00:47:24
| * thlorenz | joined |
00:48:52
| * fallsemo | quit (Quit: Leaving.) |
00:51:41
| * jcrugzz | joined |
00:52:43
| * yorick | quit (Remote host closed the connection) |
00:53:30
| * thlorenz | quit (Ping timeout: 276 seconds) |
00:57:50
| * thlorenz | joined |
00:58:59
| * thlorenz_ | joined |
00:59:07
| * thlorenz | quit (Read error: Connection reset by peer) |
01:00:00
| * jibay | quit (Quit: Leaving) |
01:01:07
| * thlorenz_ | quit (Read error: Connection reset by peer) |
01:01:22
| * thlorenz | joined |
01:02:52
| * thlorenz_ | joined |
01:02:52
| * thlorenz | quit (Read error: Connection reset by peer) |
01:05:04
| * thlorenz_ | quit (Read error: Connection reset by peer) |
01:12:20
| * timoxley | joined |
01:12:37
| * nk109 | quit (Ping timeout: 248 seconds) |
01:12:42
| * thlorenz | joined |
01:12:50
| * kumavis | quit (Quit: kumavis) |
01:40:43
| * jxson | quit (Remote host closed the connection) |
01:56:26
| * dguttman | quit (Quit: dguttman) |
02:12:52
| * ralphtheninja | joined |
02:20:07
| * spion | quit (Ping timeout: 246 seconds) |
02:27:13
| * thloren__ | joined |
02:28:07
| * thloren__ | quit (Read error: Connection reset by peer) |
02:30:37
| <thlorenz> | Domenic_: what's browserify's new super compact thing? |
02:34:21
| * dguttman | joined |
02:36:50
| <Domenic_> | thlorenz: the format it spits out is like [["a bunch of source", {"./module-id": "1", "./other-id": "2"}], ["another module's source", ...], ...] |
02:37:20
| <thlorenz> | yeah, but with sourcemaps you won't have to deal with that |
02:37:33
| <thlorenz> | since all you need is the range in the bundle where the source is |
02:37:46
| * timoxley | quit (Remote host closed the connection) |
02:38:08
| <Domenic_> | yeah but i was talking about, after you have all the source, how do you output it in a format that the browser can understand |
02:38:26
| <Domenic_> | browserify v1 had this `require.define("module id", function (require, exports, module) { ... })` thing |
02:38:32
| <Domenic_> | so it was really easy to split up its bundles |
02:38:37
| <Domenic_> | browserify v2 doesn't have that any more |
02:38:59
| <thlorenz> | you'd make a require implementation that pulls modules from a global object after you loaded then via sync script tags |
02:39:10
| <thlorenz> | s/then/them |
02:39:23
| <Domenic_> | but you still need to modify the individual script files |
02:39:31
| <Domenic_> | because they just use require/exports/module freely |
02:39:38
| <Domenic_> | which won't work without a wrapper |
02:39:43
| <thlorenz> | true |
02:40:16
| <thlorenz> | you'd have to pull them in and stick their exports into some hash to which you point the require |
02:40:30
| <thlorenz> | problem is you'd have to do it in the right order ;) |
02:40:32
| <Domenic_> | and so basically at this point you're writing RequireJS |
02:41:00
| <Domenic_> | thus my idea of just making the wrapper be the AMD wrapper, then letting RequireJS (or Almond?) do all the work |
02:41:13
| <thlorenz> | yes, funny - was just gonna mention bromote which is exactly going in that direction |
02:41:22
| <Domenic_> | so ridiculous :P |
02:41:29
| <thlorenz> | it is |
02:42:03
| <thlorenz> | if we only could teach r.js how npm works ;) |
02:42:10
| <Domenic_> | lol "are forced to load scripts from urls for whatever reason that is out of their control." |
02:42:16
| <thlorenz> | :) |
02:42:19
| <Domenic_> | "like for example their boss said so" |
02:42:42
| <thlorenz> | I mention further down that it makes sense to load jquery from a cdn though |
02:42:48
| <Domenic_> | meh |
02:42:55
| <thlorenz> | and makes bundling a lot faster during development |
02:43:11
| <Domenic_> | anyway yeah i think writing something that analyzes a node directory layout and spits out a require.config would be pretty nifty |
02:43:23
| <thlorenz> | totally agree |
02:43:54
| <Domenic_> | at some point browserify isn't actually involved, except to do the transforms, lol. |
02:43:54
| <thlorenz> | and/or at least create a bunch of much smaller bundles that are feasible to debug |
02:44:31
| <thlorenz> | people are trying to solve the problem to create a module loader that works with all bundlers |
02:45:14
| <thlorenz> | I think a better problem to solve is to be able to spit out commonJS modules in formats that can be consumed by any bundler and/or global script loaders |
02:45:48
| <Domenic_> | like, umd? |
02:46:22
| <thlorenz> | almost I guess, but I'd need to also control what gets included in the bundle |
02:46:54
| <thlorenz> | i.e. someone may already have a global Backbone :P and then he doesn't want me to bundle it in even if my lib depends on it |
02:47:04
| <Domenic_> | you've seen amd-wrap i assume? |
02:47:07
| <thlorenz> | instead he wants me ending up using his Backbone |
02:47:12
| <thlorenz> | yours? |
02:47:16
| <Domenic_> | ya |
02:47:18
| <thlorenz> | yes |
02:47:21
| <Domenic_> | sounds like you want umd-wrap |
02:47:34
| <Domenic_> | well actually i guess that already exists, ForbesLindesay/umd |
02:47:42
| <thlorenz> | but it needs to understand npm and how to resolve deps |
02:47:56
| <thlorenz> | and take a config of what to include and what not |
02:48:09
| <Domenic_> | oh well why not go for the approach of not including anything |
02:48:17
| <thlorenz> | ForbesLindesay/umd is basically enabling --standalone right |
02:48:26
| <Domenic_> | yes but it doesn't bundle multiple files together |
02:48:52
| <thlorenz> | that's actually feasible, but how would you resolve requires inside of it? |
02:49:23
| <thlorenz> | so if I end up with each lib in its own file, and I could resolve them however I want, that is what we need |
02:49:26
| <Domenic_> | well whichever module system you're using does it |
02:49:34
| <Domenic_> | for requireJS that means massive require.config |
02:49:43
| <Domenic_> | for node it means the usual algorithm |
02:49:53
| <thlorenz> | got it, so you'd override the 'require' |
02:50:15
| <thlorenz> | but you'd have to make relative paths work :( |
02:50:23
| <thlorenz> | feels like you'd need to rewrite some code |
02:51:13
| <thlorenz> | the main requirejs cheat is that it's async - that opens up lots of client side possiblities |
02:51:32
| <thlorenz> | but require works sync, so you can't go fetch anything for instance -- hence bromote |
02:51:40
| <Domenic_> | i don't think it makes much difference |
02:51:46
| * timoxley | joined |
02:52:08
| <thlorenz> | but I can't make an ajax request if its sync |
02:52:25
| <thlorenz> | so somehow I need to make sure I pull in everything before I start |
02:53:03
| <thlorenz> | unless I do this hack they call syncXHR |
02:54:29
| * coderzach | quit (Quit: coderzach) |
02:55:02
| <thlorenz> | Domenic_: interested now what @ben-ng comes up with, given the challenges ;) |
02:55:17
| <Domenic_> | thlorenz: definitely :D |
03:03:51
| * dguttman | quit (Quit: dguttman) |
03:04:42
| * defunctzombie | changed nick to defunctzombie_zz |
03:12:59
| * coderzach | joined |
03:20:52
| * rannmann | quit (Ping timeout: 264 seconds) |
03:31:22
| * thlorenz_ | joined |
03:36:00
| * thlorenz_ | quit (Ping timeout: 276 seconds) |
03:37:05
| * tilgovi | quit (Ping timeout: 245 seconds) |
03:37:07
| * stagas | quit (Ping timeout: 246 seconds) |
04:02:42
| * thlorenz_ | joined |
04:07:18
| * thlorenz_ | quit (Ping timeout: 264 seconds) |
04:15:44
| * dguttman | joined |
04:19:19
| * timoxley | quit (Remote host closed the connection) |
04:22:40
| * timoxley | joined |
04:29:34
| * coderzach | quit (Quit: coderzach) |
04:29:56
| * st_luke | joined |
04:39:16
| * coderzach | joined |
04:40:12
| * st_luke | quit (Remote host closed the connection) |
04:48:09
| * kumavis | joined |
04:53:19
| * defunctzombie_zz | changed nick to defunctzombie |
05:03:06
| * thlorenz_ | joined |
05:08:18
| * thlorenz_ | quit (Ping timeout: 276 seconds) |
05:09:11
| * coderzach | quit (Quit: coderzach) |
05:10:14
| * coderzach | joined |
05:10:55
| * Guest91167 | changed nick to jden |
05:16:39
| * calvinfo | quit (Quit: Leaving.) |
05:20:51
| * coderzach | quit (Quit: coderzach) |
05:23:46
| * djcoin | joined |
05:37:26
| * nicholas_ | joined |
05:40:19
| * mikolalysenko | quit (Ping timeout: 246 seconds) |
05:45:16
| * kumavis | quit (Quit: kumavis) |
05:46:59
| * calvinfo | joined |
05:55:18
| * calvinfo | quit (Ping timeout: 264 seconds) |
05:55:55
| * fallsemo | joined |
05:56:40
| * kumavis | joined |
05:58:35
| * AvianFlu | joined |
06:03:35
| * thlorenz_ | joined |
06:05:55
| * mcollina | joined |
06:08:20
| * thlorenz_ | quit (Ping timeout: 256 seconds) |
06:13:24
| * fallsemo | quit (Ping timeout: 268 seconds) |
06:20:39
| * calvinfo | joined |
06:21:09
| * jcrugzz | quit (Ping timeout: 264 seconds) |
06:28:41
| * AvianFlu | quit (Remote host closed the connection) |
06:34:48
| * calvinfo | quit (Quit: Leaving.) |
06:37:56
| * defunctzombie | changed nick to defunctzombie_zz |
06:47:21
| * mikolalysenko | joined |
06:50:14
| * blobaum | joined |
06:52:04
| * mikolalysenko | quit (Ping timeout: 246 seconds) |
06:56:02
| * jxson | joined |
06:58:05
| * calvinfo | joined |
06:58:52
| * calvinfo | quit (Client Quit) |
07:03:13
| <kumavis> | is there a node implementation of this/similar? https://github.com/fzaninotto/CodeFlower |
07:04:01
| * thlorenz_ | joined |
07:04:38
| * damonoehlman | quit (Quit: WeeChat 0.4.1) |
07:06:02
| * jxson | quit (Read error: No route to host) |
07:08:52
| * shama | quit (Remote host closed the connection) |
07:08:57
| * maksimlin | quit (Remote host closed the connection) |
07:09:12
| * thlorenz_ | quit (Ping timeout: 276 seconds) |
07:15:45
| * mcollina | quit (Remote host closed the connection) |
07:18:01
| * jcrugzz | joined |
07:29:12
| * dguttman | quit (Quit: dguttman) |
07:29:34
| * kumavis | quit (Quit: kumavis) |
07:35:03
| * timoxley | quit (Remote host closed the connection) |
07:45:47
| * timoxley | joined |
07:56:15
| * timoxley_ | joined |
07:59:24
| * timoxley | quit (Ping timeout: 256 seconds) |
08:03:36
| * defunctzombie_zz | changed nick to defunctzombie |
08:04:24
| * thlorenz_ | joined |
08:07:06
| * timoxley_ | changed nick to timoxley |
08:08:45
| * thlorenz_ | quit (Ping timeout: 245 seconds) |
08:23:30
| * timoxley | quit (Read error: Connection reset by peer) |
08:26:48
| * mcollina | joined |
08:31:32
| * mcollina | quit (Ping timeout: 268 seconds) |
08:46:49
| * jibay | joined |
08:56:38
| * stagas | joined |
09:04:48
| * thlorenz_ | joined |
09:09:10
| * thlorenz_ | quit (Ping timeout: 245 seconds) |
09:12:01
| * damonoehlman | joined |
09:15:19
| * defunctzombie | changed nick to defunctzombie_zz |
09:32:03
| * defunctzombie_zz | changed nick to defunctzombie |
09:33:16
| * defunctzombie | changed nick to defunctzombie_zz |
09:39:58
| * dominictarr | joined |
09:51:45
| * wolfeidau | joined |
09:54:15
| * tilgovi | joined |
09:54:16
| * tilgovi | quit (Read error: Connection reset by peer) |
10:05:12
| * thlorenz_ | joined |
10:09:35
| * thlorenz_ | quit (Ping timeout: 245 seconds) |
10:11:23
| * mirkokiefer | joined |
10:31:50
| * ins0mnia | joined |
11:05:38
| * thlorenz_ | joined |
11:10:21
| * thlorenz_ | quit (Ping timeout: 276 seconds) |
11:12:42
| * jcrugzz | quit (Ping timeout: 264 seconds) |
11:17:36
| * spion | joined |
11:39:04
| * jcrugzz | joined |
11:42:42
| * damonoehlman | quit (Quit: WeeChat 0.4.1) |
11:46:54
| * jcrugzz | quit (Ping timeout: 264 seconds) |
12:03:03
| * yorick | joined |
12:06:05
| * thlorenz_ | joined |
12:10:48
| * thlorenz_ | quit (Ping timeout: 276 seconds) |
12:27:10
| * mikolalysenko | joined |
12:28:53
| * fotoverite | quit (Quit: fotoverite) |
13:01:48
| * coderzach | joined |
13:06:29
| * thlorenz_ | joined |
13:06:55
| * mikolalysenko | quit (Ping timeout: 246 seconds) |
13:10:38
| * thlorenz_ | quit (Ping timeout: 240 seconds) |
13:11:33
| * kevino80 | joined |
13:15:31
| * thlorenz | quit (Remote host closed the connection) |
13:26:23
| * mikolalysenko | joined |
13:26:57
| * timoxley | joined |
13:30:15
| * timoxley | quit (Remote host closed the connection) |
13:35:37
| * ednapiranha | joined |
13:47:24
| * spion | quit (Remote host closed the connection) |
13:47:39
| * coderzach | quit (Quit: coderzach) |
13:48:02
| * thlorenz | joined |
13:48:45
| * coderzach | joined |
13:49:03
| * coderzach | quit (Client Quit) |
13:50:57
| * fallsemo | joined |
13:57:18
| * mirkokiefer | quit (Quit: mirkokiefer) |
13:57:27
| * fotoverite | joined |
13:59:14
| * sveisvei | joined |
14:05:43
| * djcoin | quit (Quit: WeeChat 0.4.0) |
14:06:17
| * fallsemo | quit (Quit: Leaving.) |
14:07:17
| * fotoverite | quit (Quit: fotoverite) |
14:24:53
| * fallsemo | joined |
14:26:36
| * thlorenz | quit (Remote host closed the connection) |
14:31:56
| * tmcw | joined |
14:37:30
| * kumavis | joined |
14:40:32
| * kevino80 | quit (Remote host closed the connection) |
14:43:50
| * rannmann | joined |
14:43:59
| * rannmann | quit (Changing host) |
14:43:59
| * rannmann | joined |
14:45:48
| * dguttman | joined |
14:46:05
| * coderzach | joined |
14:46:17
| * mikolalysenko | quit (Ping timeout: 240 seconds) |
14:51:53
| * kevino80 | joined |
14:54:06
| * mikolalysenko | joined |
14:58:00
| * kenperkins_ | changed nick to kenperkins |
14:58:48
| * mikolalysenko | quit (Ping timeout: 268 seconds) |
15:08:32
| * AvianFlu | joined |
15:20:28
| * mikolalysenko | joined |
15:22:07
| * mirkokiefer | joined |
15:23:56
| * mirkokiefer | quit (Client Quit) |
15:40:09
| * kumavis | quit (Quit: kumavis) |
15:44:20
| * dominictarr | quit (Quit: dominictarr) |
15:55:23
| * kumavis | joined |
15:56:41
| * mcollina | joined |
16:04:14
| * mcollina | quit (Remote host closed the connection) |
16:09:17
| * AvianFlu | quit (Remote host closed the connection) |
16:19:19
| * jcrugzz | joined |
16:23:26
| <Altreus> | this page says the latest version is 0.3.7 but when I try to install 0.3.x it only goes up to 0.2.6 :( https://npmjs.org/package/elasticsearch |
16:23:33
| <Altreus> | who do i fight |
16:24:30
| <coderzach> | Altreus: you probably have it cached |
16:24:51
| <Altreus> | oh |
16:25:10
| <coderzach> | it installed 0.3.7 for me just now |
16:25:24
| <coderzach> | npm cache clean |
16:25:38
| * calvinfo | joined |
16:25:56
| <guybrush> | if the cache prevents from installing the proper version its a bug |
16:27:01
| <Altreus> | nup |
16:27:04
| <Altreus> | not that |
16:27:44
| <coderzach> | O_o weird |
16:27:45
| <guybrush> | so maybe try npm i -g npm |
16:28:12
| <guybrush> | then do a rm -rf node_modules and try again |
16:28:27
| <Altreus> | just waiting for /-/all to respond |
16:28:34
| <Altreus> | it didn't :/ |
16:28:58
| <Altreus> | that was a search though - was just interested in what it thought of things |
16:30:07
| <Altreus> | no joy |
16:30:19
| <Altreus> | are there mirrors? |
16:30:36
| <guybrush> | maybe try npm i ncb000gt/node-elasticsearch |
16:30:50
| <guybrush> | it will install master of git |
16:31:37
| <Altreus> | The JSON response here https://registry.npmjs.org/elasticsearch does not match what my system says |
16:31:45
| <guybrush> | but there is something wrong if it doesnt work from the registry :D |
16:32:07
| <Altreus> | also its https certificate is broked |
16:32:18
| <Altreus> | But I made npm use http. Maybe that's why |
16:32:46
| <guybrush> | how did you do that? |
16:32:50
| <guybrush> | make npm use http |
16:32:51
| <Altreus> | Forgot |
16:32:56
| <Altreus> | :) |
16:33:09
| <Altreus> | hmm |
16:33:13
| <Altreus> | It was a setting |
16:33:14
| <guybrush> | oh |
16:33:21
| <guybrush> | its default isnt it? |
16:33:27
| <guybrush> | in the npmrc |
16:33:49
| <Altreus> | registry = http://registry.npmjs.org # like this |
16:34:00
| <Altreus> | no it seems to use https by default - which times out |
16:34:16
| <Altreus> | oh i have an idea |
16:34:49
| <Altreus> | ok now I'm being debian'd |
16:35:04
| * tmcw | quit (Remote host closed the connection) |
16:35:54
| * mcollina | joined |
16:40:23
| <Altreus> | I'm 0.2 versions behind in npm |
16:42:16
| <coderzach> | 1.3.5 not 1.3.7? |
16:42:57
| <Altreus> | oh christ it installed node 0.6 |
16:42:57
| <Altreus> | right back to the drawing board |
16:43:08
| <Altreus> | nope the maths form of 0.2 |
16:43:22
| <Altreus> | 1.1.7 |
16:43:25
| <Altreus> | screw apt |
16:46:06
| * mcollina | quit (Ping timeout: 268 seconds) |
16:46:06
| * no9 | quit (Ping timeout: 268 seconds) |
16:48:34
| * mikolalysenko | quit (Ping timeout: 268 seconds) |
16:48:39
| * tmcw | joined |
16:55:21
| * mikeal | joined |
16:57:44
| * no9 | joined |
17:03:23
| * shama | joined |
17:08:19
| * Kessler | joined |
17:09:10
| * no9 | quit (Ping timeout: 276 seconds) |
17:12:20
| * mcollina_ | joined |
17:21:36
| * no9 | joined |
17:22:22
| <Raynos> | jden: do you use typescript? |
17:23:38
| * mikolalysenko | joined |
17:26:01
| * tmcw | quit (Remote host closed the connection) |
17:26:23
| * defunctzombie_zz | changed nick to defunctzombie |
17:28:15
| <dimadima> | typescript stacks, etc are in JS, right? |
17:28:19
| <dimadima> | just like CS? |
17:28:21
| * tmcw | joined |
17:28:44
| <dimadima> | they're not mitigating that "issue" somehow, are they? |
17:31:02
| * mcollina_ | quit (Remote host closed the connection) |
17:32:11
| <coderzach> | stacks? |
17:34:30
| * st_luke | joined |
17:34:48
| <isaacs> | how much do you want to bet that Hi all, |
17:34:48
| <isaacs> | I created a new tool browsers/Node.js compatible. |
17:34:48
| <isaacs> | It can handle asynchronous calls as if they weren't, and can create relationships between your various scopes. |
17:34:54
| <isaacs> | oops, wrong-paste :) |
17:35:12
| <isaacs> | how much do you want to bet that "Michaƫl Rouges" is mikeal in a french disguise? |
17:35:42
| <isaacs> | promoting yield pseudo-sync flow-control stuff? it's too good. |
17:36:04
| <dimadima> | coderzach: stack traces |
17:36:46
| <coderzach> | I think it has sourcemaps |
17:37:19
| * nicholas_ | quit (Read error: Connection reset by peer) |
17:37:48
| <mikeal> | hahaha |
17:37:51
| * nicholasf | joined |
17:38:10
| <mikeal> | i wish i had the time to write entire libraries just to support a parody account :) |
17:40:01
| * tilgovi | joined |
17:43:32
| <Raynos> | dimadima: yes they compile to js |
17:43:55
| <Raynos> | isaacs: :D |
17:48:39
| <dimadima> | never used TS or CS, but i don't imagine that traces being in JS can be that annoying. prolly gets annoying though. |
17:50:43
| <st_luke> | coderzach: whats up dude |
17:50:55
| <coderzach> | not much |
17:50:59
| <st_luke> | still in nyc? |
17:51:02
| <coderzach> | yeah |
17:51:15
| <coderzach> | you? |
17:51:33
| <st_luke> | I'm in oakland/sf now |
17:51:43
| <coderzach> | oh nice |
17:52:30
| <coderzach> | you working on anything cool? |
17:53:21
| * mcollina | joined |
17:53:27
| <dimadima> | coderzach: oh just noticed your sourcemaps comment. nice. yeah, seems rather reasonable having not used it |
17:53:39
| <dimadima> | what are ppl up to in nyc |
17:53:50
| * shama | quit (Ping timeout: 256 seconds) |
17:54:03
| * mcollina | quit (Read error: Connection reset by peer) |
17:54:17
| * shama | joined |
17:54:37
| <dimadima> | i haven't lived/worked there recently. didn't really dig my professional scene, and didn't have the time to dig around for other computer ppl |
17:54:56
| <coderzach> | yeah, def less tech people here |
17:54:57
| <dimadima> | woudl have loved to meet some hackers who like love coding not just for profit |
17:55:12
| <coderzach> | I think the startup space is better for that |
17:55:43
| <dimadima> | i'm not a big startups guy either, though. maybe that is my problem. that startups culture isn't my jam entirely |
17:55:51
| <dimadima> | but you're prolly right |
17:56:04
| * shama | quit (Read error: Connection reset by peer) |
17:56:20
| <coderzach> | st_luke: seems like you got out of wayla at a good time |
17:56:39
| <dimadima> | it was nice working in the flatiron though. i'd do that again |
17:56:44
| * shama | joined |
17:58:22
| * mcollina | joined |
18:00:19
| * jxson | joined |
18:01:07
| * dominictarr | joined |
18:05:32
| * coderzach | quit (Quit: coderzach) |
18:09:08
| * mcollina | quit (Ping timeout: 256 seconds) |
18:14:01
| * mikeal | quit (Quit: Leaving.) |
18:14:48
| * mikeal | joined |
18:19:22
| <st_luke> | flatiron is ok, the food kind of sucks. soho is a lot cooler and way better food/coffee |
18:19:29
| <st_luke> | at least for work |
18:19:38
| <st_luke> | flatiron is probably better to live in |
18:21:00
| * jergason | quit (Remote host closed the connection) |
18:26:25
| * defunctzombie | changed nick to defunctzombie_zz |
18:32:49
| * mikeal | quit (Quit: Leaving.) |
18:37:50
| * thlorenz | joined |
18:38:13
| * defunctzombie_zz | changed nick to defunctzombie |
18:40:57
| * coderzach | joined |
18:53:29
| * jxson | quit (Remote host closed the connection) |
18:55:51
| * jxson | joined |
18:55:58
| * jxson | quit (Remote host closed the connection) |
18:56:28
| * jxson | joined |
18:57:32
| * jxson | quit (Remote host closed the connection) |
18:58:12
| * jxson | joined |
19:00:55
| * st_luke | quit (Remote host closed the connection) |
19:01:23
| * st_luke | joined |
19:02:01
| * AvianFlu | joined |
19:03:00
| <defunctzombie> | substack: there is a browserify jobs twitter account |
19:03:02
| <defunctzombie> | hahaha |
19:03:21
| <defunctzombie> | https://twitter.com/BrowserifyJobs |
19:03:46
| <mbalho> | lol |
19:04:16
| <st_luke> | fancy avatar |
19:04:23
| * kumavis | quit (Quit: kumavis) |
19:06:07
| * mikeal | joined |
19:07:16
| <coderzach> | "the best bundlers" |
19:15:29
| <dominictarr> | mbalho: substack when are you guys coming to ireland? |
19:15:41
| <st_luke> | defunctzombie: what the fuck, your identicon is so much better than mine |
19:15:43
| <st_luke> | http://identicons.github.com/luk-.png |
19:17:04
| * jergason | joined |
19:17:12
| * jergason | quit (Remote host closed the connection) |
19:17:28
| <defunctzombie> | st_luke: rofl |
19:17:32
| <defunctzombie> | st_luke: sadpanda |
19:17:49
| * jergason | joined |
19:18:11
| <st_luke> | I literally got the worst identicon anyone could get |
19:24:45
| <thlorenz> | st_luke: defunctzombie mine looks like a spider not sure if that's better http://identicons.github.com/thlorenz.png |
19:25:03
| <thlorenz> | or could be a muscleman - depends how you look at it |
19:25:13
| <defunctzombie> | looks like a skull ot me |
19:25:14
| <defunctzombie> | *to |
19:25:18
| <st_luke> | yeah that's a good one |
19:25:24
| <st_luke> | at least yours isnt a fucking coffee table |
19:26:15
| <thlorenz> | st_luke: defunctzombie https://twitter.com/thlorenz/status/367728842942976000 |
19:28:46
| <st_luke> | how do I vote |
19:32:16
| <thlorenz> | you reply |
19:32:35
| <thlorenz> | st_luke: unless you want me to create github issue for it ;) |
19:34:55
| <dominictarr> | thlorenz: I think your identicon is cthuthlu |
19:35:03
| <dominictarr> | http://identicons.github.com/dominictarr.png |
19:35:26
| <dominictarr> | I'm a hat without a wearer |
19:35:35
| <defunctzombie> | haha |
19:35:37
| <defunctzombie> | it is hair |
19:35:40
| <defunctzombie> | pink hair |
19:36:04
| <coderzach> | mines a guy with no legs :-( https://identicons.github.com/xcoderzach.png |
19:37:03
| <dominictarr> | coderzach: I see a grumpy cat with a third eye in forhead |
19:37:18
| <dominictarr> | it would be a boat if it was lower in the field |
19:37:27
| <coderzach> | lol |
19:37:57
| <coderzach> | a squinting duck with a third eye |
19:43:58
| * mikeal | quit (Quit: Leaving.) |
19:46:00
| <AvianFlu> | ...I guess I'm a treasure chest? http://identicons.github.com/avianflu.png |
19:46:43
| <coderzach> | AvianFlu: I think you're a pink pirate |
19:48:45
| <AvianFlu> | lol |
19:48:52
| <AvianFlu> | YOU HEAR THAT LOUDBOT I'M A PINK PIRATE |
19:48:52
| <LOUDBOT> | HEY SPIFFYTECH WHATS YOUR IMPACT FACTOR? |
19:51:24
| * thlorenz | quit (Remote host closed the connection) |
19:51:27
| <jcrugzz> | im an antennae http://identicons.github.com/jcrugzz.png |
19:58:06
| <Raynos> | im a potion http://identicons.github.com/raynos.png |
20:07:56
| * kumavis | joined |
20:22:29
| * thlorenz | joined |
20:30:48
| * thlorenz | quit (Ping timeout: 256 seconds) |
20:32:55
| * mikolalysenko | quit (Ping timeout: 245 seconds) |
20:39:37
| * mikolalysenko | joined |
20:41:57
| * kumavis | quit (Quit: kumavis) |
20:48:34
| <ins0mnia> | chrisdickinson: think TZ can be expanded to return something like Europe/Berlin (which is sort of a location/offset mapping) ? |
20:50:02
| <chrisdickinson> | potentially yes |
20:53:58
| <ins0mnia> | chrisdickinson: cool, I'm thinking to use tz with moment.js, so basically we could include a list of timezones bases on GMT offset and map it to tzoffset() |
20:54:15
| * ednapiranha | quit (Remote host closed the connection) |
20:54:26
| <ins0mnia> | chrisdickinson: let me know if this is something you wish to have in the module, if so I could do the mapping |
20:55:00
| * mikolalysenko | quit (Ping timeout: 245 seconds) |
20:55:02
| * kumavis | joined |
20:57:32
| * thlorenz | joined |
20:58:51
| * kumavis | quit (Client Quit) |
20:59:45
| * kumavis | joined |
21:02:30
| * thlorenz | quit (Ping timeout: 276 seconds) |
21:05:40
| * kumavis | quit (Quit: kumavis) |
21:10:01
| * mikolalysenko | joined |
21:14:29
| * mikolalysenko | quit (Ping timeout: 240 seconds) |
21:16:17
| * kumavis | joined |
21:17:17
| * mikeal | joined |
21:26:33
| * kevino80 | quit (Remote host closed the connection) |
21:28:08
| * kevino80 | joined |
21:30:24
| * thlorenz | joined |
21:31:51
| * thlorenz_ | joined |
21:31:52
| * thlorenz | quit (Read error: Connection reset by peer) |
21:33:45
| * thlorenz | joined |
21:33:45
| * thlorenz_ | quit (Read error: Connection reset by peer) |
21:34:22
| * AvianFlu | quit (Remote host closed the connection) |
21:34:50
| * thlorenz | quit (Read error: Connection reset by peer) |
21:35:14
| * thlorenz | joined |
21:36:32
| * thlorenz_ | joined |
21:36:32
| * thlorenz | quit (Read error: Connection reset by peer) |
21:41:16
| * thlorenz_ | quit (Ping timeout: 264 seconds) |
21:48:18
| * thlorenz | joined |
21:51:34
| * thlorenz | quit (Read error: Connection reset by peer) |
21:51:46
| * thlorenz | joined |
21:53:11
| * thlorenz_ | joined |
21:53:11
| * thlorenz | quit (Read error: Connection reset by peer) |
21:55:55
| * thlorenz_ | quit (Read error: Connection reset by peer) |
21:56:12
| * thlorenz | joined |
21:58:43
| * thlorenz | quit (Read error: Connection reset by peer) |
21:59:04
| * thlorenz | joined |
22:02:12
| <st_luke> | at least you're not all a fuckin shelf |
22:02:40
| * thlorenz | quit (Read error: Connection reset by peer) |
22:02:42
| * thlorenz_ | joined |
22:04:37
| * jergason | quit (Remote host closed the connection) |
22:05:05
| * thlorenz_ | quit (Read error: Connection reset by peer) |
22:05:24
| * thlorenz | joined |
22:05:28
| * jergason | joined |
22:07:04
| * thlorenz_ | joined |
22:07:05
| * thlorenz | quit (Read error: Connection reset by peer) |
22:09:41
| * mikolalysenko | joined |
22:10:23
| * thlorenz_ | quit (Read error: Connection reset by peer) |
22:12:27
| * thlorenz_ | joined |
22:14:11
| * mikeal | quit (Quit: Leaving.) |
22:14:18
| * thlorenz_ | quit (Read error: Connection reset by peer) |
22:14:48
| * thlorenz | joined |
22:17:05
| * thlorenz | quit (Read error: Connection reset by peer) |
22:17:11
| * thlorenz_ | joined |
22:17:35
| <Raynos> | spion: ping |
22:19:26
| * paul_irish | quit (Ping timeout: 264 seconds) |
22:19:33
| * coderzach | quit (Quit: coderzach) |
22:21:26
| * thlorenz_ | quit (Ping timeout: 240 seconds) |
22:22:50
| * paul_irish | joined |
22:22:53
| * stagas_ | joined |
22:24:35
| * stagas | quit (Ping timeout: 245 seconds) |
22:24:43
| * stagas_ | changed nick to stagas |
22:31:40
| * stagas | quit (Ping timeout: 264 seconds) |
22:33:30
| * stagas | joined |
22:34:57
| * Kessler | quit (Ping timeout: 264 seconds) |
22:35:50
| * wolfeidau | quit (Remote host closed the connection) |
22:38:34
| * kevino80 | quit (Remote host closed the connection) |
22:43:02
| * jergason_ | joined |
22:44:23
| * mikeal | joined |
22:47:09
| * jergason | quit (Ping timeout: 276 seconds) |
22:52:22
| * tmcw | quit (Remote host closed the connection) |
22:55:25
| * fallsemo | quit (Quit: Leaving.) |
22:58:12
| * fallsemo | joined |
23:02:17
| * fallsemo | quit (Client Quit) |
23:09:19
| * jxson | quit (Remote host closed the connection) |
23:15:59
| * jxson | joined |
23:16:30
| * dominictarr | quit (Quit: dominictarr) |
23:17:15
| * jergason_ | quit (Remote host closed the connection) |
23:17:47
| * thlorenz | joined |
23:18:49
| * thlorenz_ | joined |
23:18:50
| * thlorenz | quit (Read error: Connection reset by peer) |
23:20:45
| * jxson | quit (Remote host closed the connection) |
23:25:25
| * tilgovi | quit (Ping timeout: 245 seconds) |
23:25:50
| * maksimlin | joined |
23:25:51
| * tilgovi | joined |
23:34:32
| * jergason | joined |
23:39:12
| * jxson | joined |
23:43:13
| * jxson | quit (Ping timeout: 240 seconds) |
23:47:43
| * calvinfo | quit (Quit: Leaving.) |
23:50:14
| * yorick | quit (Remote host closed the connection) |
23:52:00
| * calvinfo | joined |
23:55:18
| * jibay | quit (Quit: Leaving) |
23:58:07
| * jergason | quit (Read error: Connection reset by peer) |
23:58:33
| * jergason | joined |