[00:19:33] bmp: oh, yeah that would be fine [00:32:33] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has joined the channel. [00:32:34] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has joined the channel. [00:36:52] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has quit (Ping timeout: 240 seconds). [00:45:35] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has quit (Quit: WeeChat 1.5). [00:45:55] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has joined the channel. [00:47:55] * kssreeram [kssreeram!~kssreeram@49.207.187.114] has quit (Ping timeout: 250 seconds). [01:03:31] * evincar [evincar!~jonathanp@75-142-42-181.dhcp.reno.nv.charter.com] has quit (Ping timeout: 250 seconds). [01:33:51] * delvinj [delvinj!~Miranda@2601:449:4001:5400:c062:871e:b46a:ba43] has joined the channel. [02:07:26] erg: What's the deal with the Gtk issue? Something I can debut without a dedicated box? [02:50:50] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has quit (Ping timeout: 258 seconds). [03:03:25] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has joined the channel. [04:08:33] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has quit (Ping timeout: 240 seconds). [04:25:43] * kssreeram [kssreeram!~kssreeram@49.207.190.31] has joined the channel. [04:28:31] * kssreeram [kssreeram!~kssreeram@49.207.190.31] has quit (Client Quit). [06:43:52] * kssreeram [kssreeram!~kssreeram@106.193.66.126] has joined the channel. [07:06:10] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has joined the channel. [09:37:13] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has quit (Remote host closed the connection). [09:37:31] * kssreeram [kssreeram!~kssreeram@106.193.66.126] has quit (Quit: My Mac has gone to sleep. ZZZzzz…). [10:22:35] * kssreeram [kssreeram!~kssreeram@106.193.66.126] has joined the channel. [10:32:40] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has joined the channel. [10:50:10] * kssreeram [kssreeram!~kssreeram@106.193.66.126] has quit (Quit: My Mac has gone to sleep. ZZZzzz…). [10:55:23] * kssreeram [kssreeram!~kssreeram@106.193.66.126] has joined the channel. [11:59:19] * kssreeram [kssreeram!~kssreeram@106.193.66.126] has quit (Quit: My Mac has gone to sleep. ZZZzzz…). [12:24:53] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has joined the channel. [12:26:10] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has quit (Client Quit). [12:26:48] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has joined the channel. [12:28:54] * groovy2shoes [groovy2shoes!~groovy2sh@unaffiliated/groovebot] has quit (Quit: Leaving). [13:11:14] * otoburb [otoburb!~otoburb@unaffiliated/otoburb] has quit (Ping timeout: 240 seconds). [13:11:31] * otoburb [otoburb!~otoburb@unaffiliated/otoburb] has joined the channel. [13:19:04] If I enter an endless loop, how do I exit it in the factor listner? [13:20:25] cdt5050: Because Factor's cooperatively multitasked, I'm not sure you can without killing the entire Factor process. [13:20:33] Or at any rate, I don't know of a way to do so. [13:23:17] Well, that's a little annoying. Thanks. [13:23:58] If there's no way, maybe it's something I can look into when I get more proficient. [13:29:51] I think it'd be hard to do without making the Factor dev UI run in a separate thread from all the code that it ran, communicating over RPC. [13:30:18] We have tooling to do most of that (e.g., there already is serialization, the VM is largely reentrant and could be made fully reentrant fairly easily, etc.), but it's not on the easy end. [13:31:57] Now I have to figure out why my code works on the listener but not deployed.... [13:41:43] What's not working? [13:41:49] Are you using the deploy tool? [13:42:06] Yes. [13:43:13] What error are you getting? Problems running code generated with the deploy tool are usually because you left out language features you thought were optional, but aren't. E.g., the web server needs reflection to work. [13:44:18] I have no idea why it was, but AFAIK, the code should've ran the same (not using any reflection now). [13:44:25] I'm just trying to work around it, it's probably my fault. [14:23:00] * kssreeram [kssreeram!~kssreeram@49.207.190.31] has joined the channel. [15:19:05] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has quit (Ping timeout: 244 seconds). [15:43:48] * rgrinberg [rgrinberg!~rgrinberg@205.189.187.4] has joined the channel. [17:17:30] * amuck [amuck!~amuck@2607:5300:60:4390::] has joined the channel. [17:19:04] * jonenst [jonenst!c2996e06@gateway/web/freenode/ip.194.153.110.6] has joined the channel. [17:20:07] cdt5050: if you start factor from a terminal, CTRL-C will raise an exception in the currently executing code [17:20:53] More precisely, if you press t (for throw) in the shell that you get when pressing CTRL-C [17:22:01] if the currently running code is yours, it will interrupt in the listener. If it's not factor will probably blow up. [17:24:17] people are working on this: https://github.com/factor/factor/pull/1638 and https://github.com/factor/factor/issues/1573 [17:24:54] * jonenst [jonenst!c2996e06@gateway/web/freenode/ip.194.153.110.6] has quit (Quit: Page closed). [17:52:55] Good to know! Thanks! [18:00:53] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has quit (Remote host closed the connection). [18:04:10] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has joined the channel. [18:22:29] * jonenst [jonenst!c2996e06@gateway/web/freenode/ip.194.153.110.6] has joined the channel. [18:22:37] http://docs.factorcode.org/content/word-die,kernel.html [18:22:55] Ha ! I've been wondering what the letters FEP meant for a *long* time [18:23:33] * jonenst [jonenst!c2996e06@gateway/web/freenode/ip.194.153.110.6] has quit (Client Quit). [18:59:02] * evincar [evincar!~jonathanp@75-142-42-181.dhcp.reno.nv.charter.com] has joined the channel. [19:43:40] * rgrinberg [rgrinberg!~rgrinberg@205.189.187.4] has quit (Ping timeout: 250 seconds). [19:43:50] * jtimon [jtimon!~quassel@55.31.134.37.dynamic.jazztel.es] has quit (Ping timeout: 260 seconds). [20:02:15] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has quit (Remote host closed the connection). [21:37:38] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has joined the channel. [21:40:00] * FreeFull [FreeFull!~freefull@defocus/sausage-lover] has quit (Ping timeout: 252 seconds). [21:40:23] * FreeFull [FreeFull!~freefull@defocus/sausage-lover] has joined the channel. [21:42:11] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has joined the channel. [22:12:05] * cdt5050 [cdt5050!~cdt5050@h62-m31-pool-04.nat.iastate.edu] has quit (Remote host closed the connection). [23:02:22] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has quit (Ping timeout: 244 seconds). [23:14:37] * rgrinberg [rgrinberg!~rgrinberg@24-246-56-85.cable.teksavvy.com] has joined the channel.