< 1122595204 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :mandelbrot.b: 1 hr 25 min 33.27 sec < 1122595210 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric ::P < 1122595450 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :wee < 1122595455 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :well at least it works :) < 1122595497 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Oh, and I would represent bits as uint64_t's. < 1122595511 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :no use gmp's bignums < 1122595529 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :and use dynamic linking (for gmp) < 1122595572 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :hmm, they are hard to use, I prefer gmpxx and their mpz_class < 1122595574 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Runtime dynamic linking. < 1122595582 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ohohoh! use gmp'floats < 1122595605 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :with 1 bit sign, 100 bit exponent and 200bit value < 1122595609 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :well, use Javas bignum through JNI ... err. sorry. < 1122595616 0 :pgimeno!unknown@unknown.invalid PRIVMSG #esoteric :I find mpz's quite comfortable though < 1122595629 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :use ruby! < 1122595640 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :the overhead for a method call is big < 1122595644 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :(it's called BigInteger and they implement it completely in Java.) < 1122595646 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Awesome. < 1122595660 0 :pgimeno!unknown@unknown.invalid PRIVMSG #esoteric :I've been thinking about writing a BF interpreter with unlimited cell size < 1122595671 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :because ruby has to lookup the + method of Integer with every call because one can redefine the + method of Integer < 1122595675 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :pgimeno: Choose-at-runtime or bignum? < 1122595682 0 :pgimeno!unknown@unknown.invalid PRIVMSG #esoteric :bignum < 1122595718 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :jix: they don't implement any cache and invalidate scheme there? < 1122595738 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :int-e: dunno.. ruby is fast enough for many things < 1122595754 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :(I don't know ruby, so work with me for this joke:) < 1122595763 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :int operator+(int a, int b) return a + b; < 1122595832 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :hmm. that's an infinite loop if your compiler does tail call elimination ... < 1122595866 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :or that's how I'd read it < 1122595875 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :I'm not sure what language that is. < 1122596037 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :jix: nice proggy < 1122596046 0 :BigZaphod!unknown@unknown.invalid QUIT : < 1122596549 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :int-e: Yeah, and it's pseudo-C++ish, though proper C++ would look like so: < 1122596567 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :int operator+(int b) { return val + b.val; } < 1122596570 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Or somesuch. < 1122596829 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :nah. int operator+(int a, int b) { return a+b; } ... if that were possible. < 1122596860 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :foo.cc:1: error: `int operator+(int, int)' must have an argument of class or < 1122596860 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric : enumerated type < 1122596861 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :;) < 1122596893 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :(that is, a user defined type must be used in overloaded operators) < 1122596955 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :as an argument. but there's no requirement to make the overloaded operator a member of a class. < 1122596982 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :grrr. http://www.math.umd.edu/%7Edcarrera/ruby/0.3/chp_02/tips.html < 1122597009 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :even more important than commenting your code is that the comments are actually correct. < 1122597042 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :And the code *actually* finds the smallest power of 2 larger or equal to 10_000. < 1122597536 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :Ruby is an interesting mix, it borrows features from Perl, a bit Pascal, and SmallTalk ... < 1122597556 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :and probably others but these I recognized. < 1122597924 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ruby is cool < 1122597960 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Yes, of course you can't override int XD < 1122598210 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :I haven't overloaded operators in C++ in a while, didn't remember quite what it looked like *shrugs* < 1122598210 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :struct t { }; < 1122598210 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :t operator+(t a, t b) { return a+b; } < 1122598210 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :main() { t a, b; a+b; } < 1122598213 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :is valid :) < 1122598234 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :struct == class in C++ < 1122598240 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :I know < 1122598260 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :What would that return :P < 1122598262 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :and the program produces a stack overflow, as expected. < 1122598267 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Of course. < 1122598294 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :So + = the stack overflow operator. < 1122598356 0 :BigZaphod!~BigZaphod@66.6.34.219 JOIN :#esoteric < 1122598908 0 :jix!unknown@unknown.invalid QUIT :"Bitte waehlen Sie eine Beerdigungnachricht" < 1122599200 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :bye < 1122599203 0 :int-e!unknown@unknown.invalid QUIT :Remote closed the connection < 1122599573 0 :calamari!unknown@unknown.invalid QUIT :"Leaving" < 1122600515 0 :graue!~graue@ip68-100-135-226.dc.dc.cox.net JOIN :#esoteric < 1122601532 0 :int-e!~noone@td9091a75.pool.terralink.de JOIN :#esoteric < 1122601541 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :re < 1122601764 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :re < 1122602918 0 :calamari!~calamari@dialup-4.240.114.103.Dial1.Phoenix1.Level3.net JOIN :#esoteric < 1122602931 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :hi < 1122603895 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :good day calamari < 1122603901 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :bfdebug was updated recently, you say? < 1122603905 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :what's new with this version? < 1122603949 0 :{^Raven^}!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1122604274 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :graue: a few things, about to release 1.40 too, added a couple more features < 1122604294 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :I can paste the changelogs to you in private message if you'd like < 1122604528 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :okay, 1.40 is up < 1122604663 0 :Gs30ng!codroc@221.140.214.203 JOIN :#esoteric < 1122604679 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :graue: the main highlights: can save output to file, eof choices, 1-bit cell support, including }@* instructions, "block comments", fast run, interactive input, input echo < 1122604697 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :and bugfixes :) < 1122605321 0 :Gs30ng_!codroc@221.140.214.203 JOIN :#esoteric < 1122605511 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :graue: Would you mind adding EgoBCh to the files archive? ( http://www.codu.org/egobch-0.1.tar.bz2 ) < 1122605563 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Hmm, and also, 0.7.1 was a development release, probably shouldn't be in the archive. < 1122605629 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :GregorR: I did < 1122605646 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :graue: There doesn't seem to be a bitchanger directory ... < 1122605664 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Oh, there it is. < 1122605667 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Refresh, Gregor. < 1122605676 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Coolio, thanks. < 1122605725 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :http://www.esolangs.org/svn/esofiles/ updates sooner (or use the actual svn repository) < 1122606416 0 :Gs30ng!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1122607505 0 :kipple!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1122609275 0 :Gs30ng_!unknown@unknown.invalid NICK :Gs30ng < 1122609391 0 :int-e!unknown@unknown.invalid QUIT :"Bye!" < 1122612131 0 :graue!unknown@unknown.invalid QUIT :"Donate a manual typewriter to ME for your only hope for a future!" < 1122614994 0 :calamari!unknown@unknown.invalid QUIT :"Leaving" < 1122617333 0 :GregorR_!~chatzilla@c-24-21-138-66.hsd1.or.comcast.net JOIN :#esoteric < 1122617333 0 :GregorR!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1122617335 0 :GregorR_!unknown@unknown.invalid NICK :GregorR < 1122623999 0 :clog!unknown@unknown.invalid QUIT :ended < 1122624000 0 :clog!unknown@unknown.invalid JOIN :#esoteric < 1122628298 0 :pgimeno!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1122628379 0 :pgimeno!pgimeno@124.Red-80-59-211.pooles.rima-tde.net JOIN :#esoteric < 1122634276 0 :kipple!~kipple@163.80-202-100.nextgentel.com JOIN :#esoteric < 1122634370 0 :tokigun!~tokigun@219.248.202.26 JOIN :#esoteric < 1122634806 0 :int-e!~noone@td9091ceb.pool.terralink.de JOIN :#esoteric < 1122637308 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :oh, not that + and - signs again < 1122639159 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :puzzlet: you don't like brainfuck? < 1122639173 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :no, it's about IRC proxy < 1122639199 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :when anyone other than me talks, + and - signs appear < 1122639203 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :like +puzzlet: you don't like brainfuck? < 1122639219 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric : -ACTION blah < 1122639237 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :oh. that's nasty, right, it destroys CTCP messages. < 1122640719 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :int-e: if there is "\x01...\x01" block, it will be CTCP message always. + and - sign doesn't affect the message. < 1122640847 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :tokigun, CTCP me < 1122640860 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :hmm < 1122640864 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :tokigun: oops. thank you for the correction < 1122640874 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :ACTION blahblah < 1122640879 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric : +ACTION blahblah < 1122640884 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :int-e: :) < 1122640892 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :puzzlet: wait a moment... < 1122640928 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :yeah, CTCP woks fine < 1122640934 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric ::S < 1122640955 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric : +:S < 1122640961 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :emoticons don't work < 1122640968 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :hmm < 1122640978 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric ::-) < 1122640979 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric ::-( < 1122640981 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :;) < 1122641071 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :puzzlet: are you using irssi proxy? < 1122641108 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :yes < 1122641147 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :both freenode and hanirc? < 1122641167 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :yes < 1122641187 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :then... hanirc proxy works well? < 1122641208 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :yes < 1122641215 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :... :S < 1122641238 0 :grimace_!~grim@213-152-53-111.dsl.eclipse.net.uk JOIN :#esoteric < 1122642732 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :somebody decided to make an Udage interpreter in Befunge < 1122642772 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :s/an/a (Udage: ju-) < 1122643381 0 :jix!jix@p5489E1C9.dip.t-dialin.net JOIN :#esoteric < 1122645848 0 :grimace_!unknown@unknown.invalid PRIVMSG #esoteric :impressive < 1122645948 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :moin < 1122646048 0 :mtve!unknown@unknown.invalid PRIVMSG #esoteric :Gs30ng: sorry, i missed it. any url? < 1122646519 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :mtve: tokigun told me to do that, and currently nothing's unveiled. < 1122646530 0 :mtve!unknown@unknown.invalid PRIVMSG #esoteric :ah :) < 1122646652 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :actually, tokigun told him *tokigun* is going to do that < 1122646687 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :eh? < 1122647076 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :oops < 1122647079 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :stupid mistake < 1122647127 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :ok i don't even heard about befunge < 1122647141 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :well, actually i have heard about it but don't know what it is < 1122647149 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :you know aheui < 1122647158 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :...ok, i know how it work but i can't make any code with it < 1122647189 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :...fine, i have made a code in befunge < 1122647198 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :......i made an OS in funge-98 < 1122647258 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :ACTION tries to escape from Gs30ng  < 1122647287 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :tokigun is working on his Udage interpreter in Befunge < 1122647295 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :... < 1122647297 0 :tokigun!unknown@unknown.invalid PRIVMSG #esoteric :it's not true < 1122647315 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :let's give him a big trout to eat < 1122647334 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :tokigun: you lied?! < 1122647343 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :he doesn't like fish < 1122647354 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :Gs30ng, that's what you have to know < 1122647355 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :that's why we give him it < 1122647356 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :about him < 1122647370 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :do i? < 1122647372 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :why? < 1122647396 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :why should i know what he hates? < 1122647411 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :it was a joke < 1122647429 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :it's not true < 1122647471 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :puzzlet, you want me to marry him, right? < 1122647481 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :i know the truth < 1122647530 0 :puzzlet!unknown@unknown.invalid PRIVMSG #esoteric :as long as i know your taste < 1122647630 0 :Gs30ng!unknown@unknown.invalid PRIVMSG #esoteric :ACTION swings his hand to drive away mosquitos < 1122654725 0 :Gs30ng!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1122656517 0 :grimace_!unknown@unknown.invalid PART #esoteric :? < 1122657893 0 :BigZaphod!unknown@unknown.invalid QUIT : < 1122658425 0 :calamari!~Kid@cb03.cs.arizona.edu JOIN :#esoteric < 1122658444 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :hi < 1122660056 0 :BigZaphod!~BigZaphod@198.45.23.220 JOIN :#esoteric < 1122660509 0 :puzzlet!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1122660512 0 :puzzlet!~puzzlet@61.247.147.84 JOIN :#esoteric < 1122661153 0 :tokigun!unknown@unknown.invalid QUIT :Read error: 110 (Connection timed out) < 1122661636 0 :ZeroOne!~vsaalo@kekkonen.cs.hut.fi JOIN :#esoteric < 1122666928 0 :jix!unknown@unknown.invalid QUIT :"Bitte waehlen Sie eine Beerdigungnachricht" < 1122668082 0 :graue!~graue@ip68-100-135-226.dc.dc.cox.net JOIN :#esoteric < 1122668108 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :GregorR: I added a #define to my 2L interpreter to mimic your interpreter's incorrect up/down swap, but HelloWorld still doesn't work < 1122668144 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :it prints 'H', 173, 25, 133, 244, then freezes < 1122668348 0 :{^Raven^}!~{^Raven^}@82-38-204-252.cable.ubr05.shef.blueyonder.co.uk JOIN :#esoteric < 1122668355 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :hi peeps < 1122668431 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :hi raven < 1122669843 0 :CXI!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1122669868 0 :comet_11!~Sanity@dialup-158.88.221.203.acc50-kent-syd.comindico.com.au JOIN :#esoteric < 1122670448 0 :jix!jix@p5489E1C9.dip.t-dialin.net JOIN :#esoteric < 1122670655 0 :comet_11!unknown@unknown.invalid QUIT :Read error: 104 (Connection reset by peer) < 1122670740 0 :comet_11!Sanity@dialup-158.88.221.203.acc50-kent-syd.comindico.com.au JOIN :#esoteric < 1122671727 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :raven: how's your game going? < 1122672861 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :pretty good < 1122672880 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :still got loads more to do tho < 1122672885 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :yeah, me too < 1122672893 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :how's your game coming? < 1122672934 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :it's going okay. I've been trying to do some of the descriptive writing, but that is very challenging for me.. I don't have a very large writing vocabulary. < 1122672993 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :so it's taking more time than I'd like, because it needs to be concise yet get the right feeling across < 1122673045 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :If I could join the contest without writing any story, I would :P < 1122673053 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :An engine-only version XD < 1122673057 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :i find descriptive writing difficult too unless i'm inspired. i reckon all the programming has depleted my flair for english < 1122673064 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :also need to work out the data structures for my game.. I had things worked out, but it was a bad design < 1122673169 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :so atm, you can move around but not do anything :) < 1122673235 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :i was blocked by a bad data structure too. My present scheme takes little code to read and decode (280 bytes) and is easy on the data file size < 1122673264 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :in mine there are only a few places to go but you can do a lot whilst you're there < 1122673265 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :What languages are yours' in? < 1122673284 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :8088 asm (using ms-dos system calls) < 1122673290 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :mine is in BBC BASIC < 1122673326 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :(using only built in functionality and no external code) < 1122673348 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Hum < 1122673378 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :If anybody wants music for their game which is too small to possibly support music ... look me up :P < 1122673385 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ot: me is learning how to use rails now... < 1122673421 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :external code would be cheating anyways, right? < 1122673446 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :ACTION links to libGenericGameEngine < 1122673462 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :if you just do it and tell noone about it no one would note it... < 1122673475 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :but now.. we know ;) < 1122673478 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :definately, i could plug in to the Windows API and cheat but that would ruin it for me. < 1122673496 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :I suppose I could write fairly brief input and output routines (since that's all I'm really using from dos), but why bother when it's already written, standard and available hehe < 1122673524 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Write it as an OS kernel >:) < 1122673542 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :(minus the OS, really) < 1122673547 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :not a problem < 1122673554 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :i would use the BIOS functions if I was writing in ASM < 1122673607 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :bios functions are very lame though, from a space standpoint.. have to set a lot of registers for even simpel tasks, so that wastes rom space < 1122673623 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :rom space? < 1122673630 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :might as well keep a pointer into screen memory, it'd be smaller < 1122673639 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ROM space? < 1122673650 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :ACTION says something else, just to annoy jix < 1122673687 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric ::) rom.. program size, game size, etc < 1122673696 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :New esoteric programming language: HG. If you use the 'H' command it says 'Hello World', if you use the 'G' command it plays a console text-based game with the user using the data file 'hg.dat' < 1122673724 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Shortest console game: G < 1122673735 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :1 byte, woooh! < 1122673763 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :is using inform == cheating? < 1122673766 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :I reckon this year, unlike before. my data compression program will be much larger than the game < 1122673772 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :hq9+ already does that ;) < 1122673789 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :jix: nope < 1122673792 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :hmm < 1122673797 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :but that's too easy < 1122673799 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :inform is not cheating but you'll have to submit as source code as the compiled code will be way to large < 1122673799 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :jix: at least according to the rules of the contest < 1122673821 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :calamari: in a usenet post PAP said TADS/Inform were okay < 1122673831 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :raven: yeah, exactly < 1122673861 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :I didn't notice the changes you mentioned the other day tho < 1122673863 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :a bad idea and i don't believe it's possible to write anything interesting in such small source space < 1122673869 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :everything seemed the same to me < 1122673897 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :to mee too < 1122673905 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :what is different? < 1122673908 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :yeah, he posted that he'd made lots of changes like a larger source size but there was no difference in reality < 1122673941 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ahh that changes are ooold < 1122673946 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :he's removed the ' give or take a few hundred bytes ' and the conflicting absolute maximum sizes < 1122673956 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :oh that arn't < 1122673978 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :jix: made two days ago, the last one at my request < 1122673985 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :I don't have the page here at school.. is it still 2799 and 2899 ? < 1122673996 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :yeah < 1122673998 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :ok < 1122674029 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :I'm not sure I'll be using any compression.. I'll just have to see how far the 8k takes me < 1122674030 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :2899 and 2899 < 1122674045 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :i wan't to write a game in assembly too < 1122674057 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :but i don't know any asm good enough for writing a game in it < 1122674062 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :he's the only programmer I know that uses SI units for bits and bytes, aka 8.192k for the data file meaning 8192 bytes < 1122674104 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :SI? factor 1000 instead of 1024? < 1122674107 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Rather than 8KiB or just 8K? < 1122674114 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :jix: yeah < 1122674124 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :jix: SI sez: Kilibits is factor of 1024, kilobits is factor of 1000 < 1122674126 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :well, the guy has serious issues.. but I'm having fun writing this game anyhow, so it doesn't matter much < 1122674132 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :hmm maybe he works for a hard disk drive manufacturer < 1122674137 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :muhahaha < 1122674145 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :int-e: AHAHAHAHAHAHAHA XD < 1122674151 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :windows uses factor 1000 < 1122674161 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Why is my 200gig hard disk only 189gig?! < 1122674165 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :afaol < 1122674166 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :windows is written for clueless people < 1122674168 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :afaik < 1122674222 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :Windows only makes up for 1/3 of my computing < 1122674245 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :GNU does it too, as an option: du -H (or -si): -H, --si Do the same as for -h [human readable], but use the official SI units (with powers of 1000 instead of 1024, so that M stands for 1000000 instead of 1048576). (New in fileutils-4.0.) < 1122674245 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :i don't use windows at all < 1122674269 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :anyway: I think Windows uses is so the people don't complain to the vendors that there hard drives are too small < 1122674284 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :ACTION uses 3 different OSs simultaneously all the time < 1122674315 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :i'm using 2 OSs debian(server) and osx < 1122674332 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :my first computer was an apple macintosh classic II < 1122674354 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :got it in grade 2 or 3 < 1122674407 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :hmm my current mac is the 4th mac i own < 1122674414 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :we had a ti-99/4a, but I didn't learn how to program it until after I'd already learned on the 8088 < 1122674424 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :RISC OS, Linux (WBEL3.0) and WindowsXP in order of preference and started on an Acorn Electron about 20 years ago < 1122674430 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :classicII IIsi iMac powermacg4 < 1122674445 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :there was no me 20 years ago < 1122674476 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :At work I use SUSe 9, RedHat 7, Solaris 8 (both 32- and 64-bit), HPUX 11.00 and 10.20, and a sprinkling few AIXes. < 1122674538 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :at work i... uhm at school.. we have a room with 15 imacs (unused with m$ office) and a room with 15 pc's (used but without m$ office (license problems ^^)) and everyone complains about missing m$ office < 1122674556 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :XD < 1122674568 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :i used to be admin at the mac-room but it's unused < 1122674571 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Do they have OpenOffice or similar? < 1122674573 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :openoffice isn't very good.. m$'s is better < 1122674574 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :yes < 1122674580 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :ACTION slaughters calamari. < 1122674594 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :LaTeX rules the world. < 1122674615 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :they say "it's incompatible" just because they save the files as open-office and are too stupid too select "M$ word file (.doc)" < 1122674628 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :and the admins are stupid < 1122674632 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :every time I try to get something done it's always autocompleting and formatting .. office does it too, but it seems to be smarter about it < 1122674635 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :they block ssh but allow irc.... < 1122674685 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :they block hard-disk access outside of the documents folder but i was able too install gimp into the documents folder and the gtk open file dialog allowed me to view the whole harddisk < 1122674696 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :XD < 1122674700 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Genius < 1122674706 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :lol < 1122674717 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :grr, why does Open Office have to produce .doc files, and why do people then compare Open Office based on it's compatibility to Microsoft Office? < 1122674731 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :jix: do they allow telnet? < 1122674733 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :int-e: DING DING DING!!!! < 1122674734 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :jix: or ftp? < 1122674747 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :int-e: they don't have a port filter but filter for encrypted connections < 1122674760 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :i use HTML for all my document layouts and only import into Word if I have to < 1122674763 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :that's the most stupid network setup i ever seen < 1122674773 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :ah, right, encryption is illegal - make a base64 proxy ;) < 1122674779 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :haha < 1122674789 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :encryption is not illegal? < 1122674791 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :! < 1122674796 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :I know it isn't < 1122674804 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :aahhhh rot13 is illegal < 1122674810 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :ACTION hauls jix off to MicroSoft Prison [tm] [patent #543542354234] < 1122674823 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :We'll have to wait a few more years, maybe even decades for that to happen. < 1122674840 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :(in fact we'll outlaw random data) < 1122674858 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Microsoft has a patent on random data. < 1122674862 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :They invented randomness. < 1122674870 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :nah i wan't the improved [tm] Microsoft [tm] Prison [tm] 2006 [tm] because it has prisoner [tm] leaks < 1122674874 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :I thought Shannon pretty much did that. < 1122674897 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :;) < 1122674904 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Before Microsoft there was order, only with Microsoft did Chaos rule the world :P < 1122674924 0 :{^Raven^}!unknown@unknown.invalid PRIVMSG #esoteric :Microsoft has a patent on electrical systems used to transmit data within a human body - Everybody alive is in breach of that patent < 1122674932 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :random: http://www.fourmilab.ch/hotbits/ < 1122674940 0 :pgimeno!unknown@unknown.invalid PRIVMSG #esoteric :Intel is the winner in the [tm] field, methinks < 1122674949 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :I bet breathing air is a patentable technical process. < 1122674961 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :a final thought before I leave.. http://lilly.csoft.net/~jeffryj/misc/msprayer.txt < 1122674989 0 :calamari!unknown@unknown.invalid PRIVMSG #esoteric :cya all < 1122674992 0 :calamari!unknown@unknown.invalid QUIT :"Leaving" < 1122675012 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ACTION is reading Four DaysFour Days on Railson Rails now < 1122675016 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :oops < 1122675019 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :pgimeno: Though AMD is just being lame and noninventive by implementing Intel APIs, Intel is innovative and forward-thinking with the EM64T. < 1122675020 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ACTION is reading Four DaysFour Days on Rails now < 1122675062 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :GregorR, yes, just like Microsoft went forth and invented the Internet 5 years ago. < 1122675073 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Exactly! < 1122675075 0 :pgimeno!unknown@unknown.invalid PRIVMSG #esoteric :me is looking for an Intel document for the 386... < 1122675097 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :pgimeno: why? < 1122675102 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Look in the archives from 30 years ago XD < 1122675113 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Because Intel makes /modern/ processors. < 1122675115 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :whose archives? google's or Microsoft's? < 1122675134 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :"He who controls the past, controls the future." < 1122675136 0 :graue!unknown@unknown.invalid PRIVMSG #esoteric :I have a huge text file called "INTEL 80386 PROGRAMMER'S REFERENCE MANUAL 1986" < 1122675153 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :OK, I have to stop berading Intel while at work ... at Intel :P .. back to work with me. < 1122675168 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :is MS bashing ok? < 1122675190 0 :pgimeno!unknown@unknown.invalid PRIVMSG #esoteric :http://web.tiscali.it/luigisgro/itdisc1.html < 1122675237 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :It's awesome that "i" is a trademark of Intel :P < 1122675251 0 :pgimeno!unknown@unknown.invalid PRIVMSG #esoteric :yup < 1122675252 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :"He who controls the present, controls the past." < 1122675263 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :Now I know why that quote felt incomplete to me. < 1122675272 0 :pgimeno!unknown@unknown.invalid PRIVMSG #esoteric :I have the original document with that trademark note < 1122675339 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Jesus [tm] is a registered trademark of Intel, all users of the trademark Jesus [tm] not referring to an Intel product will be prosecuted to the full extent of the law. < 1122675636 0 :cpressey!unknown@unknown.invalid QUIT :"leaving" < 1122675679 0 :cpressey!nobody@d154-20-76-195.bchsia.telus.net JOIN :#esoteric < 1122678274 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :. < 1122678516 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :.?! < 1122678523 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :.?!?!?!?!?!?!!?!???!?!?!?!?!?!?!?!?!!?!?!?!?! < 1122678531 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :, < 1122678553 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :and now both together: < 1122678553 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :,! ,=+++ < 1122678555 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :; < 1122678600 0 :BigZaphod!unknown@unknown.invalid QUIT : < 1122679274 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :I can't believe logicex-2.fyb is still the champion. < 1122679289 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Somebody defeat it! Come ooooooooooooooooooon! < 1122679303 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :hmm < 1122679307 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :;) < 1122679423 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Heyyy! My laptop is finally back from Toshiba! < 1122679435 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :15th and 16th October... ok < 1122679469 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ahh cool it's a weekend < 1122679496 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :? < 1122679511 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :EuRuKo < 1122679526 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :European Ruby Konference < 1122679533 0 :GregorR!unknown@unknown.invalid PRIVMSG #esoteric :Ahh < 1122679543 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :but it's in munich.. :( < 1122679615 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :ok back to fyb < 1122679639 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :but i took a look at a mach.. it's too short < 1122679685 0 :jix!unknown@unknown.invalid PRIVMSG #esoteric :it makes no sense to develop big programs because a shortone with >>>>>>>>>> laybomb x 30 will bomb you < 1122680113 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :hmm < 1122680164 0 :jix!unknown@unknown.invalid QUIT :"Bitte waehlen Sie eine Beerdigungnachricht" < 1122680269 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :wouldn't it be nicer to present those results as a table? < 1122680394 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :similar to http://www.inf.tu-dresden.de/~bf3/fyb < 1122680934 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :Ah I see that part is automatically generated. < 1122681177 0 :lament!unknown@unknown.invalid PRIVMSG #esoteric :what's fyb? < 1122681214 0 :int-e!unknown@unknown.invalid PRIVMSG #esoteric :http://esoteric.voxelperfect.net/wiki/FukYorBrane < 1122681293 0 :lament!unknown@unknown.invalid PRIVMSG #esoteric :ah < 1122681427 0 :comet_11!unknown@unknown.invalid NICK :CXI