Conversation with #inferno at Sat Feb 15 13:38:55 2014 on powerman@chat.freenode.net (irc) (13:38:55) #inferno: Topic for #inferno set by mennis at 17:30:16 on 12/28/09 (13:51:55) anth_x1 [~a@minipizzabox.9srv.net] entered the room. (13:51:55) anth_x left the room (quit: Read error: Connection reset by peer). (14:57:59) Code_Man` [~Code_Man@2a02:1205:5059:6770:223:54ff:fe38:82c2] entered the room. (15:50:47) yshurik left the room (quit: Quit: Leaving.). (17:04:56) anth_x1 is now known as anth_x (17:12:11) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (17:58:39) Code_Man` left the room (quit: Ping timeout: 252 seconds). (18:15:48) Code_Man` [~Code_Man@119-150.5-85.cust.bluewin.ch] entered the room. (18:39:20) raphaelsc [~rsc@189-105-186-215.user.veloxzone.com.br] entered the room. (18:46:59) raphaelsc left the room (quit: Remote host closed the connection). (19:16:46) anth_x1 [~a@minipizzabox.9srv.net] entered the room. (19:16:46) anth_x left the room (quit: Read error: Connection reset by peer). (19:17:05) anth_x1 is now known as anth_x (21:07:18) anth_x left the room (quit: Quit: Leaving.). (21:26:22) Code_Man` left the room (quit: Remote host closed the connection). (21:47:49) trsohmer_ [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (21:47:49) trsohmers left the room (quit: Read error: Connection reset by peer). (22:02:38) anth_x [~a@cpe-76-189-199-100.neo.res.rr.com] entered the room. (22:21:21) loz1 left the room (quit: Ping timeout: 260 seconds). (22:30:59) Code_Man` [~Code_Man@2a02:1205:5059:6770:223:54ff:fe38:82c2] entered the room. (22:44:56) anth_x left the room (quit: Quit: Leaving.). (23:43:15) anth_x [~a@minipizzabox.9srv.net] entered the room. (01:25:10) yshurik left the room (quit: Quit: Leaving.). (01:47:58) Code_Man` left the room (quit: Remote host closed the connection). (02:42:31) mortdeus [~mortdeus@74.197.153.97] entered the room. (02:42:38) mortdeus left the room (quit: Remote host closed the connection). (02:42:51) acmeuser [~acmeuser@c193-14-106-86.cust.tele2.se] entered the room. (02:43:02) acmeuser left the room. (02:44:00) mortdeus [~mortdeus@74.197.153.97] entered the room. (02:44:08) acmeuser [~acmeuser@c193-14-106-86.cust.tele2.se] entered the room. (02:44:11) acmeuser left the room (quit: Remote host closed the connection). (03:29:13) trenatos [~Daimon@68-113-176-20.dhcp.krny.ne.charter.com] entered the room. (03:29:50) trenatos: Anyone around who speaks limbo? (03:30:59) trenatos: /nickserv identify 2290450680 (03:31:00) trenatos: /j #Psion_Guild (03:31:07) trenatos: Well crap (03:41:14) mortdeus left the room (quit: Read error: Connection reset by peer). (03:42:36) mortdeus [~mortdeus@74.197.153.97] entered the room. (03:59:54) leetspete1: trenatos: Yeahap. (04:00:21) trsohmer_ left the room (quit: Remote host closed the connection). (04:00:22) leetspete1: Also ooooh, busted. (04:00:35) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (04:01:16) trenatos: lol, it's a whole other network and I've already change the info :P (04:01:27) trenatos: You have a minute? (04:02:20) trenatos: I tried out a couple of Hello World examples in Limbo, but for whatever reason there's no output (04:02:53) leetspete1: I got a minute, sure. (04:03:06) leetspete1: Have a paste of the example? (04:03:31) trenatos: Gimme a sec to find the link (Assuming I can't copy text from within Inferno gui to the host clipboard) (04:04:01) leetspete1: You totally can. (04:04:28) trenatos: How? (04:05:03) leetspete1: There's no explicit sync, that's handled by /dev/snarf. (04:05:23) leetspete1: So, 'echo asdf > /dev/snarf' ought to put it into your clipboard on the host OS. (04:06:11) leetspete1: When you're running a graphical environment, anything copied and pasted goes through there, and the driver that provides it for your OS will sync it automatically. (04:06:46) trenatos: How would I echo the contents of a file? (04:06:48) leetspete1: (So you can do fun stuff like sync clipboards between machines.) (04:06:55) leetspete1: cat(1). (04:07:06) leetspete1: cat file.b >/dev/snarf (04:07:42) trenatos: There we go, that worked, thanks :D (04:07:43) trenatos: implement Hello; (04:07:44) trenatos: include "sys.m"; (04:07:44) trenatos: sys: Sys; (04:07:44) trenatos: include "draw.m"; (04:07:44) trenatos: Hello: module (04:07:45) trenatos: { (04:07:45) trenatos: init: fn(ctxt: ref Draw->Context, args: list of string); (04:07:46) trenatos: }; (04:07:46) trenatos: init(ctxt: ref Draw->Context, args: list of string) (04:07:47) trenatos: { (04:08:10) leetspete1: Oh, that's not gonna work so well. (04:08:26) leetspete1: I meant, like, pastebin or okturing or gist. (04:08:28) leetspete1: ☺ (04:08:44) trenatos: You're getting weird chars? (04:08:54) leetspete1: It got truncated at the beginning of your init function. (04:09:14) trenatos: http://pastebin.com/en6ENZMb (04:10:13) leetspete1: Yep, that ought to work. And then 'limbo -gw hello.b && ./hello', right? (04:10:53) trenatos: That wasn't what I used before, one sec (04:12:07) trenatos: I'm getting an error with that, argument not referenced for both ctxt and args (04:12:36) leetspete1: Yeah, that's a warning. You can fix that warning by changing the ctxt and args to nil, but it's not critical. (04:12:42) trenatos: Ok (04:13:00) leetspete1: In general if you're not going to use the context or the args, you'll want to do that. (04:13:27) trenatos: *nods (04:13:50) trenatos: Now it output the Hello World in console (04:13:53) trenatos: As expected (04:14:03) trenatos: Must have been something wrong with my compile command (04:14:18) trenatos: However, test.dis outputs nothing, just as before (04:15:01) leetspete1: Hm. What's in test.b? (04:16:31) trenatos: That's the file (04:17:08) trenatos: test.b is the file in the pastebin (04:17:46) leetspete1: Oh, oh, haha. You're going to laugh. (04:18:03) leetspete1: lc /dis/test.dis (04:18:53) trenatos: From console, all that did was create a new blank line (Without the % ) (04:19:37) trenatos: Wait, tried again, it just spat out "test.dis" on a new line (04:20:05) leetspete1: Yes. Since the shell looks in /dis before it looks in ./, you were running *that* test.dis. (04:20:36) trenatos: hum, ok (04:20:54) trenatos: So how would I run the test.dis file from the current directory? (04:21:40) leetspete1: ./test (04:22:09) trenatos: progress! (04:22:10) trenatos: :P (04:22:16) leetspete1: heh (04:22:37) trenatos: Two small more things? (04:22:45) leetspete1: Go for it. (04:23:03) trenatos: Ok, the compiler line, I'm assuming it compiles, and then runs the compiled program, correct? (04:23:18) leetspete1: Yeah. (04:23:25) trenatos: Allright, one down. lol (04:23:45) trenatos: How do I make a new file from within Acme.. I've been fighting with this for hours. Not kidding. (04:24:02) trenatos: The other day I succeeded in creating the test.b file, but I can't remember how. It was pure luck. (04:25:08) leetspete1: Oh, no worries. So, you execute 'New'. If you give it an argument (e.g., by executing 'New something.b') then it will open a window nmed that (whether there's a pre-existing file or not). (04:25:48) leetspete1: If you execute New without an argument, you can name it by just editing the text at the beginning of the tag bar. (Right before " Del".) (04:27:08) trenatos: That explanation alone just saved my sanity (04:27:10) trenatos: Thank you (04:27:31) trenatos: Still trying to get used to Inferno. I love the idea of it, but only if I can code on it :P (04:27:56) leetspete1: No worries, I don't mind being helpful. (04:28:25) leetspete1: It took me a while to get used to it, too, but I haven't gone back to vim since. (04:28:42) qrstuv: you're lucky he's here. i'm not too keen on being helpful (04:28:47) trenatos: If I ever reach the point of proficiency I'll make some tutorial videos. The "learning curve" feels IMMENSE at this point, even for simple things like making files (04:29:00) trenatos: Ah, hi qrstuv, yes I got that feeling the other day (04:29:35) qrstuv: there's several tutorial videos already (04:30:11) trenatos: I found one in Spanish, and one with horrible audio (Though in English) (04:31:39) leetspete1: I think you might prefer this one: https://www.youtube.com/watch?v=dP1xVpMPn8M (04:31:48) leetspete1: Maybe that's the one with horrible audio. (04:32:27) leetspete1: It covers acme in general, although not Inferno specifically. (04:34:23) trenatos: That's the one with horrible audio, I only had time to watch about a minute of that the other day (04:35:36) leetspete1: Yeah. The man page is pretty useful once you understand a little bit about it. (04:36:21) trenatos: I'll be spending time with the man pages, but they're not useful until I can at least navigate around, create files, compile limbo files and such (04:36:53) leetspete1: Yeah, it's good as a reference, not so much a tutorial. (04:36:59) trenatos: There are a number of papers and research info written about Inferno, but very little (That I've found) about getting started (04:39:18) leetspete1: Yeah, that's why I horded links and started writing some about it. (04:39:40) leetspete1: Because I spent some time totally lost until I started getting it. (04:40:44) leetspete1: I embedded a little acme demo in the VNC thing I did. (04:41:20) trenatos: VNC thing you did? (04:42:08) leetspete1: A duct-taped hack that spawns Inferno when you point a VNC viewer at it. (04:42:46) leetspete1: If you point a VNC viewer at debu.gs port 60666, it gives you an Inferno VM, pops acme up, and uses that to explain everything. (04:43:11) trenatos: That's nice (04:43:28) trenatos: Any chance you wrote up an article on how you did that? (04:44:13) leetspete1: I wrote a bit about it: http://debu.gs/entries/try-inferno-without-installing-it (04:47:44) trenatos: You mention Go, does Go work on Inferno? (I was thinking of learning it already, and if it runs on Inferno that's an added plus) (04:48:53) leetspete1: It does not; I think a port of it would be tricky. It's pretty similar to Limbo, but you probably knew that (or guessed it since the same people are responsible). (04:51:11) trenatos: I'd heard it was sort-of-similar, but if I get up and running with Inferno/Limbo I don't actually *need* Go (04:54:00) trenatos: What does the -gw tags do? (04:54:28) leetspete1: -g includes debugging symbols (which I guess we don't need in this case) and -w has it spit out warnings. (04:54:46) trenatos: Ah, ok (05:09:52) mortdeus: for go to run on inferno it would need to have a go->dis bytecode compiler. (05:14:30) leetspete1: Yeah, the module system would also probably not be able to work the same way. (05:17:23) mortdeus: im actually working on a go based plan9/inferno derived toolchain at the moment. (05:19:07) trenatos: Nice (05:19:35) trenatos: How would I copy code from host into Inferno gui? (05:24:22) leetspete1: It's the same. (05:24:59) leetspete1: If you copy in Inferno or in the host OS, it gets sync'd. (05:25:35) trenatos: It did not synch (Not with mouse 1 + 3 anyway) (05:26:36) anth_x left the room (quit: Read error: Connection reset by peer). (05:26:57) anth_x [~a@minipizzabox.9srv.net] entered the room. (05:27:10) trenatos: But it does synch, console spits out the synched text when I do cat /dev/snarf (05:27:21) trenatos: Just not into Acmes pasting (05:29:47) leetspete1: Eh? That's odd. I think either Windows or OSX had some issues with pasting lately, but I forget which one or if it was fixed. (05:30:11) trenatos: I'm on Windows (05:30:29) trenatos: Yeah it seems Acme keeps its own copy/paste log (06:27:48) joe__ [4475c433@gateway/web/freenode/ip.68.117.196.51] entered the room. (06:28:26) joe__ left the room (quit: Client Quit). (06:29:00) joedan [4475c433@gateway/web/freenode/ip.68.117.196.51] entered the room. (06:34:21) joedan: anyone here know if the gpl2 work recently done for plan9 is also happening with inferno? (06:34:37) leetspete1: joedan: Inferno's already GPL. (06:35:44) leetspete1: Check out /NOTICE. (06:36:13) joedan: leetspete1: really? whoops. ronm mentioned inferno code being ised in akaros so i thought there must have been something there. (06:38:27) joedan: leetspete1: wow... that's been there for a while. i never notices although since me and inferno only have a on-and-off relationship, i probably just forgot. (06:39:43) joedan: anybody here doing any cool work with inferno? (06:42:58) leetspete1: I've been slacking since November. :P Had a lot of work. (06:45:27) leetspete1: Might be doing some stuff trying to get it running on the Parallella soon, though, which I think would qualify as cool work. (06:46:23) joedan: leetspete1: cool. i picked up a couple of XMOS boards but have more work than time so they'll sit unused for a while. (06:50:34) leetspete1: More work than time. Man. I know how that is. (08:12:44) loz1 [~maxvel@93.100.156.89] entered the room. (08:20:00) trenatos: Is there an Inferno equivalent to cls/clear? (09:01:30) leetspete1: Not really. You can scroll down until only the last line is visible, or you can highlight it all and hit backspace. (09:04:39) `jpi left the room (quit: Ping timeout: 245 seconds). (09:05:15) trenatos: Allright (09:11:08) leetspete1: I don't expect it would be too hard to tweak the wm/sh to do it, I just never really needed it. (09:28:15) trenatos: Time to call it a night, thanks for the help leetspete1 (09:29:25) trenatos left the room (quit: Quit: HydraIRC -> http://www.hydrairc.com <- Chicks dig it). (10:21:01) Code_Man` [~Code_Man@2a02:1205:5059:6770:223:54ff:fe38:82c2] entered the room. (11:01:11) `jpi [~jpi@unaffiliated/pseud0cod3r] entered the room. (11:23:27) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (12:37:03) trsohmer_ [~trsohmers@173.192.176.160-static.reverse.softlayer.com] entered the room. (12:37:03) trsohmers left the room (quit: Ping timeout: 260 seconds). (12:53:41) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (12:57:21) trsohmer_ left the room (quit: Ping timeout: 245 seconds). (13:23:53) trsohmers left the room (quit: Remote host closed the connection). (13:24:28) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (13:54:45) yshurik1 left the room (quit: Quit: Leaving.). (15:33:17) yshurik left the room (quit: Quit: Leaving.). (16:23:40) ludkiller [lud@gateway/shell/elitebnc/x-irxdimgurwacyhdw] entered the room. (17:00:41) Code_Man` left the room (quit: Remote host closed the connection). (17:09:30) joedan left the room (quit: Quit: Page closed). (17:13:27) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (19:08:14) `jpi left the room (quit: *.net *.split). (19:08:24) Code_Man` [~Code_Man@2a02:1205:5059:6770:223:54ff:fe38:82c2] entered the room. (19:16:05) anth_x left the room (quit: Ping timeout: 246 seconds). (19:16:15) `jpi [~jpi@unaffiliated/pseud0cod3r] entered the room. (19:16:59) anth_x [~a@minipizzabox.9srv.net] entered the room. (19:45:43) acmeuser [~acmeuser@pas38-3-82-229-199-32.fbx.proxad.net] entered the room. (19:45:51) acmeuser left the room. (20:18:53) raphaelsc [~rsc@189-105-186-215.user.veloxzone.com.br] entered the room. (20:45:37) raphaelsc left the room (quit: Remote host closed the connection). (21:48:03) trsohmers left the room (quit: Remote host closed the connection). (21:48:16) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (22:39:37) Code_Man` left the room (quit: Remote host closed the connection). (00:21:56) yshurik left the room (quit: Quit: Leaving.). (00:36:45) rogpeppe [~rog@host-92-30-139-198.as13285.net] entered the room. (00:53:31) Code_Man` [~Code_Man@2a02:1205:5059:6770:223:54ff:fe38:82c2] entered the room. (01:33:44) trsohmers left the room (quit: Remote host closed the connection). (01:33:50) loz1 left the room (quit: Quit: Leaving.). (01:37:05) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (01:39:07) rogpeppe left the room (quit: Ping timeout: 265 seconds). (02:18:58) Code_Man` left the room (quit: Remote host closed the connection). (02:44:00) trsohmers left the room (quit: Remote host closed the connection). (04:20:20) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (08:38:09) anth_r left the room (quit: Ping timeout: 265 seconds). (09:04:15) loz1 [~maxvel@93.100.156.89] entered the room. (09:27:33) loz1 left the room (quit: Quit: Leaving.). (09:40:46) mortdeus left the room (quit: Read error: Connection reset by peer). (09:41:12) mortdeus [~mortdeus@74.197.153.97] entered the room. (10:07:00) yshurik [~Adium@193.69.63.210] entered the room. (10:15:08) rogpeppe [~rog@host-92-30-164-14.as13285.net] entered the room. (10:52:44) Code_Man` [~Code_Man@2a02:1205:5058:1cb0:223:54ff:fe38:82c2] entered the room. (13:30:04) acmeuser [~acmeuser@c-67-169-93-106.hsd1.ca.comcast.net] entered the room. (13:30:52) acmejonah [~acmejonah@c-67-169-93-106.hsd1.ca.comcast.net] entered the room. (13:30:52) acmejonah: hello? (13:31:29) acmeuser left the room (quit: Remote host closed the connection). (13:31:29) acmejonah left the room (quit: Remote host closed the connection). (14:15:14) mortdeus left the room (quit: Ping timeout: 264 seconds). (14:31:28) mortdeus [~mortdeus@74.197.153.97] entered the room. (14:36:01) mortdeus left the room (quit: Ping timeout: 245 seconds). (14:37:07) mortdeus [~mortdeus@74.197.153.97] entered the room. (14:46:53) mortdeus left the room (quit: Ping timeout: 265 seconds). (14:51:03) mortdeus [~mortdeus@74.197.153.97] entered the room. (14:52:22) mortdeus left the room (quit: Max SendQ exceeded). (15:16:21) mortdeus [~mortdeus@74.197.153.97] entered the room. (15:32:26) mortdeus left the room (quit: Ping timeout: 252 seconds). (15:38:21) mortdeus [~mortdeus@74.197.153.97] entered the room. (15:57:59) mortdeus left the room (quit: Ping timeout: 272 seconds). (16:10:45) loz2 left the room (quit: Ping timeout: 248 seconds). (16:11:57) loz1 [~maxvel@31.28.10.150] entered the room. (16:15:08) mortdeus [~mortdeus@74.197.153.97] entered the room. (16:45:21) raphaelsc [~rsc@189-105-186-215.user.veloxzone.com.br] entered the room. (16:48:24) mortdeus left the room (quit: Read error: Connection reset by peer). (16:49:31) mortdeus [~mortdeus@74.197.153.97] entered the room. (16:51:08) trsohmers left the room (quit: Remote host closed the connection). (16:51:44) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (17:12:56) anth_x: hello. (17:13:07) anth_x: …except you're gone. oh, well. (17:14:37) loz1 left the room (quit: Ping timeout: 272 seconds). (17:15:22) loz1 [~maxvel@188.225.33.138] entered the room. (17:16:24) yshurik left the room (quit: Quit: Leaving.). (18:36:24) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (20:32:44) yshurik: acmejonah is too impatient, can not stay connected for 4 hours to get answer! (20:40:23) loz2 [~maxvel@93.100.156.89] entered the room. (22:06:39) yshurik left the room (quit: Quit: Leaving.). (22:42:44) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (00:14:51) loz2 left the room (quit: Quit: Leaving.). (00:30:45) trsohmers left the room (quit: Read error: Connection reset by peer). (00:31:26) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (00:43:58) yshurik1 [~yshurik@62.92.189.109.customer.cdi.no] entered the room. (01:13:14) yshurik left the room (quit: Quit: Leaving.). (01:35:00) trsohmers left the room (quit: Remote host closed the connection). (01:48:16) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (02:58:29) trsohmers left the room (quit: Remote host closed the connection). (03:02:33) Code_Man` left the room (quit: Remote host closed the connection). (03:27:41) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (04:05:06) fdd left the room (quit: Ping timeout: 252 seconds). (04:18:50) mortdeus left the room (quit: Ping timeout: 264 seconds). (04:52:19) mortdeus [~mortdeus@74.197.153.97] entered the room. (06:54:39) fdd [~fdd@unaffiliated/fdd] entered the room. (06:56:34) ddf [fdd@unaffiliated/fdd] entered the room. (06:57:05) raphaelsc left the room (quit: Read error: Connection reset by peer). (06:57:10) fdd left the room (quit: Read error: Connection reset by peer). (07:10:20) trsohmer_ [~trsohmers@50.23.131.196-static.reverse.softlayer.com] entered the room. (07:13:01) raphaelsc [~rsc@189-105-186-215.user.veloxzone.com.br] entered the room. (07:14:24) trsohmers left the room (quit: Ping timeout: 265 seconds). (07:17:23) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (07:20:38) trsohmer_ left the room (quit: Ping timeout: 252 seconds). (08:20:19) Gegemon [~ynv@mx1.airis.ru] entered the room. (08:21:28) raphaelsc left the room (quit: Quit: Leaving). (10:27:41) yshurik [~Adium@193.69.63.210] entered the room. (10:30:49) trsohmers left the room (quit: Remote host closed the connection). (11:11:36) Code_Man` [~Code_Man@2a02:1205:5058:1cb0:223:54ff:fe38:82c2] entered the room. (11:43:23) vpm left the room (quit: Read error: Operation timed out). (11:44:04) vpm [~vpm@blumenthal.vrinimi.int.eu.org] entered the room. (14:21:41) raphaelsc [~rsc@189-105-186-215.user.veloxzone.com.br] entered the room. (15:29:57) Gegemon left the room (quit: Quit: Leaving.). (15:45:20) loz1 left the room. (15:57:03) loz1 [~maxvel@188.225.33.138] entered the room. (16:24:41) loz1 left the room. (16:31:31) Code_Man` left the room (quit: Remote host closed the connection). (17:26:16) ludkiller left the room (quit: Excess Flood). (17:26:27) ludkiller [lud@gateway/shell/elitebnc/x-ryattsuybaqraxvd] entered the room. (17:26:53) Code_Man` [~Code_Man@2a02:1205:5058:1cb0:223:54ff:fe38:82c2] entered the room. (17:29:10) yshurik left the room (quit: Quit: Leaving.). (17:35:41) sandbender1512 [~none@CPEc8fb26470b29-CMc8fb26470b26.cpe.net.cable.rogers.com] entered the room. (17:50:23) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (18:25:03) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (18:27:30) ddf left the room (quit: Ping timeout: 252 seconds). (18:39:53) ddf [~fdd@unaffiliated/fdd] entered the room. (19:20:55) ddf is now known as fdd (20:00:26) mortdeus left the room (quit: Ping timeout: 265 seconds). (20:28:07) mortdeus [~mortdeus@74.197.153.97] entered the room. (20:28:21) mortdeus left the room (quit: Read error: Connection reset by peer). (20:47:16) mortdeus [~mortdeus@74.197.153.97] entered the room. (20:51:53) mortdeus_ [~mortdeus@74.197.153.97] entered the room. (20:52:39) mortdeus_ left the room (quit: Max SendQ exceeded). (20:52:53) mortdeus left the room (quit: Ping timeout: 248 seconds). (21:10:44) loz1 [~maxvel@93.100.156.89] entered the room. (21:14:02) mortdeus [~mortdeus@74.197.153.97] entered the room. (21:20:37) mortdeus left the room (quit: Ping timeout: 248 seconds). (21:33:39) mortdeus [~mortdeus@74.197.153.97] entered the room. (21:42:49) mortdeus left the room (quit: Read error: Connection reset by peer). (21:44:22) mortdeus [~mortdeus@74.197.153.97] entered the room. (22:03:56) Fish left the room (quit: Ping timeout: 245 seconds). (22:09:54) Fish [~Fish@9fans.fr] entered the room. (22:48:20) mortdeus left the room (quit: Read error: Connection reset by peer). (22:49:01) mortdeus [~mortdeus@74.197.153.97] entered the room. (23:12:37) mortdeus left the room (quit: Ping timeout: 248 seconds). (23:13:30) mortdeus [~mortdeus@74.197.153.97] entered the room. (23:13:54) mortdeus_ [~mortdeus@74.197.153.97] entered the room. (23:21:04) Code_Man` left the room (quit: Remote host closed the connection). (23:38:24) mortdeus left the room (quit: Quit: Leaving). (23:38:42) mortdeus_ left the room (quit: Quit: Leaving). (23:39:02) mortdeus [~mortdeus@74.197.153.97] entered the room. (23:45:32) loz1 left the room (quit: Remote host closed the connection). (01:07:16) Code_Man` [~Code_Man@2a02:1205:5058:1cb0:223:54ff:fe38:82c2] entered the room. (01:15:48) Fish- [~Fish@9fans.fr] entered the room. (01:16:47) Fish left the room (quit: *.net *.split). (01:20:02) anth_x left the room (quit: Quit: Leaving.). (01:26:33) yshurik left the room (quit: Quit: Leaving.). (02:05:25) anth_x [~a@64-233-244-174.static.clv.wideopenwest.com] entered the room. (03:06:29) Code_Man` left the room (quit: Remote host closed the connection). (03:53:42) anth_x left the room (quit: Quit: Leaving.). (04:36:31) mortdeus left the room (quit: Ping timeout: 245 seconds). (04:39:08) mortdeus [~mortdeus@74.197.153.97] entered the room. (06:04:47) mortdeus left the room (quit: Ping timeout: 246 seconds). (06:06:12) mortdeus [~mortdeus@74.197.153.97] entered the room. (08:27:50) trsohmers left the room (quit: Ping timeout: 264 seconds). (08:28:04) trsohmers [~trsohmers@173.192.170.67] entered the room. (08:36:36) trsohmer_ [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (08:40:33) trsohmers left the room (quit: Ping timeout: 260 seconds). (09:00:09) loz1 [~maxvel@93.100.156.89] entered the room. (09:30:41) loz1 left the room (quit: Quit: Leaving.). (09:32:04) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (09:47:51) yshurik left the room (quit: Quit: Leaving.). (09:49:12) Gegemon [~ynv@mx1.airis.ru] entered the room. (10:12:59) yshurik [~Adium@193.69.63.210] entered the room. (10:43:21) yshurik left the room (quit: Quit: Leaving.). (10:51:46) Code_Man` [~Code_Man@2a02:1205:5058:1cb0:223:54ff:fe38:82c2] entered the room. (11:26:59) trsohmers [~trsohmers@173.192.176.155-static.reverse.softlayer.com] entered the room. (11:29:01) trsohmer_ left the room (quit: Ping timeout: 260 seconds). (12:02:07) trsohmer_ [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (12:05:11) trsohmers left the room (quit: Ping timeout: 245 seconds). (12:09:56) trsohmer_ left the room (quit: Remote host closed the connection). (12:10:30) trsohmers [~trsohmers@76.21.119.111] entered the room. (12:31:43) yshurik [~Adium@193.69.63.210] entered the room. (12:35:59) yshurik left the room (quit: Ping timeout: 240 seconds). (13:03:57) loz1 [~maxvel@188.225.33.138] entered the room. (13:21:18) yshurik [~Adium@193.69.63.210] entered the room. (15:50:54) anth_r [none@root.9srv.net] entered the room. (16:36:43) Gegemon left the room (quit: Quit: Leaving.). (17:02:23) yshurik left the room (quit: Quit: Leaving.). (17:45:34) anth_x [~a@adsl-68-76-122-12.dsl.bcvloh.ameritech.net] entered the room. (17:49:33) fdd left the room (quit: Read error: Connection reset by peer). (17:50:03) fdd [fdd@unaffiliated/fdd] entered the room. (17:58:59) mortdeus left the room (quit: Ping timeout: 260 seconds). (18:23:38) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (18:33:21) raphaelsc left the room (quit: Ping timeout: 265 seconds). (20:33:42) Code_Man` left the room (quit: Quit: Cya). (20:34:27) Code_Man` [~Code_Man@2a02:1205:5058:1cb0:223:54ff:fe38:82c2] entered the room. (21:44:45) trsohmers left the room (quit: Remote host closed the connection). (21:45:02) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (21:59:01) rogpeppe left the room (quit: Ping timeout: 260 seconds). (21:59:05) rogpeppe1 [~rog@host-92-30-164-14.as13285.net] entered the room. (21:59:19) rogpeppe1 is now known as rogpeppe (22:53:36) rogpeppe left the room (quit: Quit: Konversation terminated!). (22:53:50) rogpeppe [~rog@host-92-30-164-14.as13285.net] entered the room. (23:10:48) loz2 [~maxvel@93.100.156.89] entered the room. (23:46:58) loz2 left the room (quit: Quit: Leaving.). (00:10:29) rogpeppe left the room (quit: Ping timeout: 241 seconds). (01:27:36) Code_Man` left the room (quit: Ping timeout: 251 seconds). (01:44:02) anth_x left the room (quit: Quit: Leaving.). (02:10:17) yshurik left the room (quit: Quit: Leaving.). (03:13:23) trsohmers left the room (quit: Remote host closed the connection). (03:16:39) sandbender1512 left the room (quit: Remote host closed the connection). (03:18:35) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (03:50:08) trsohmers left the room (quit: Remote host closed the connection). (06:50:53) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (06:55:13) trsohmers left the room (quit: Ping timeout: 260 seconds). (08:02:23) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (08:58:49) yshurik [~Adium@109.189.92.62] entered the room. (09:20:13) Gegemon [~ynv@mx1.airis.ru] entered the room. (09:41:06) trsohmers left the room (quit: Remote host closed the connection). (09:41:24) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (09:48:02) yshurik left the room (quit: Quit: Leaving.). (10:13:10) yshurik [~Adium@193.69.63.210] entered the room. (10:22:01) rogpeppe [~rog@host-92-30-164-14.as13285.net] entered the room. (10:45:13) loz1 left the room (quit: Remote host closed the connection). (10:47:19) loz1 [~maxvel@188.225.33.138] entered the room. (10:57:05) Code_Man` [~Code_Man@2a02:1205:5058:1cb0:223:54ff:fe38:82c2] entered the room. (11:57:21) Code_Man` left the room (quit: Ping timeout: 252 seconds). (12:59:16) Code_Man` [~Code_Man@2a02:1205:5058:1cb0:223:54ff:fe38:82c2] entered the room. (14:20:22) trsohmers left the room (quit: Remote host closed the connection). (14:25:51) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (14:26:09) trsohmers left the room (quit: Remote host closed the connection). (14:58:16) rogpeppe left the room (quit: Quit: Konversation terminated!). (15:44:30) Code_Man` left the room (quit: Ping timeout: 252 seconds). (15:59:43) leetspete left the room (quit: *.net *.split). (16:03:29) leetspete [~pete@76.91.33.110] entered the room. (16:08:24) ludkille- [lud@gateway/shell/elitebnc/x-pnwctpfqqhsycnxb] entered the room. (16:17:30) ludkiller left the room (quit: Ping timeout: 255 seconds). (16:19:36) ludkille- is now known as ludkiller (16:30:40) yshurik2 [~yshurik@62.92.189.109.customer.cdi.no] entered the room. (16:32:40) yshurik3 [~Adium@193.69.63.210] entered the room. (16:38:14) yshurik1 left the room (quit: Ping timeout: 245 seconds). (16:38:20) yshurik left the room (quit: *.net *.split). (16:55:06) yshurik3 left the room (quit: Quit: Leaving.). (17:14:47) yshurik [~Adium@62.92.189.109.customer.cdi.no] entered the room. (17:26:50) trsohmers [~trsohmers@c-76-21-119-111.hsd1.ca.comcast.net] entered the room. (17:31:17) trsohmers left the room (quit: Ping timeout: 260 seconds). (18:32:09) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.