< 1334448046 491954 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION wasn't aware that existensials were useless in haskell < 1334448100 359127 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@flush < 1334448107 51511 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: well they usually are because you can just pre-apply them. < 1334448118 363680 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :like how (exists a. (Show a) => a) is String (modulo the precedence stuff which you can do too if you want) < 1334448133 534857 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(exists s. (s, s -> a)) is a because all you can do is apply it, etc. < 1334448171 154321 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :forall s. Foo { initialiseState :: IO s, doSomethingA :: s -> IO (), doSomethingB :: IO () } --> Foo (IO Bar) where Bar { doSomethingA :: IO (), doSomethingB :: IO () } < 1334448173 440413 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :etc. < 1334448176 131521 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :> a + b = 5 < 1334448176 697194 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric : : parse error on input `=' < 1334448181 349003 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric ::( < 1334448185 525901 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(plus http://lukepalmer.wordpress.com/2010/01/24/haskell-antipattern-existential-typeclass/) < 1334448314 723932 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Madoka-Kaname: > takes expressions, not declarations < 1334448584 364951 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :i wouldn't say they're "usually useless" < 1334448605 887176 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :but they are overused < 1334448621 504016 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :you could say that "null" is useless because beginners write code like "if null xs then ..." and usually there is a better way < 1334448630 529881 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :but no, "null" is useful in the right context < 1334448718 483754 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: well, "existentials are useless" may be a bit strong, but i haven't yet seen *any* use of existentials that wouldn't be better without < 1334448751 427697 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I recently saw a case where they turned out to be the best option, but that's because it had several constraints from various libraries; IMO that points to a design flaw in those libraries (that they can only abstract that functionality through typeclasses, unreasonably) < 1334448762 105925 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :well your third example, with the IO < 1334448771 877491 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :if your objects *don't* have destructive update < 1334448780 590926 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :or if you just sometimes want to return (IO s) < 1334448787 299352 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :'s not uncommon < 1334448793 5774 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I don't understand what you mean by either of those. < 1334448949 974587 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :anyway I think API design in Haskell is probably hopeless < 1334448957 942516 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wat < 1334448965 320835 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :people spend their whole programming lives thinking about OOP design, and they still screw it up regularly < 1334448977 825706 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :very few people do enough Haskell programming to get the knack for good API design < 1334449003 878115 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :i've never seen a list of rules or guidelines and I expect the community would not welcome same < 1334449025 454933 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you're way too cynical < 1334449045 744425 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :maybe < 1334449059 630438 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :a confounding factor is that the most popular OOP languages don't actually support OOP style very well < 1334449098 204577 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :in Java you have some classes which represent the problem domain, and a lot more SingletonVisitorProxyAdaptorFactory classes which represent basic control flow < 1334449322 274115 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :there is no good oop design at all, at least none without a specific context.. in practise the requirements often are extended to a point where the initial design becomes unsatisfying < 1334449338 204621 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :*requirements to software < 1334449370 154196 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: let's put it this way: good API design in Haskell doesn't require as much care and avoidance of pitfalls as OOP < 1334449381 201384 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :because... it's just better < 1334449393 931626 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so while there's less of a culture around rules and guidelines for API design, they're less necessary < 1334449421 16499 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :hahahahahahaha < 1334449426 96549 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and, well, there's also the fact that the kind of person who is dedicated enough with learning haskell to get to actually writing a library with something you could call an API is probably going to be better than $average_programmer at designing APIs in teh first place < 1334449427 873692 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: well, come on < 1334449432 258412 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'm not saying haskell magically solves all problems < 1334449446 577131 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :but it's a hell of a lot easier to design a nice haskell api than a nice java or C API or whatever < 1334449450 228197 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :it avoids some of the OOP pitfalls but it introduces many pitfalls of its own < 1334449472 232259 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :like having to provide a way for the user to control strictness < 1334449490 498306 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that's not necessarily a requirement of an API... < 1334449519 627624 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :and dealing with all the incompatible string / vector / iteratee types < 1334449537 416652 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :it's not necessarily a requirement of a library that it be good or useful < 1334449582 197144 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :Haskell API design also has the pitfall that the nicest API you can think of will often involve crazy GHC extensions or insane types < 1334449602 885473 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :bullshit < 1334449603 582680 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :so you have to balance API niceness against the level of sophistication required from the user < 1334449988 775632 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :you can call bullshit if you want elliott < 1334449998 524784 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i did :) < 1334449999 890212 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :but i've found all of these to be pain points with Haskell APIs < 1334450006 426049 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :and you haven't provided any argument to the contrary < 1334450014 910896 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :they're not *always* an issue but neither are the standard OOP pitfalls < 1334450032 784465 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :if you end up requiring crazy GHC extensions for an API it's usually because you're trying too hard < 1334450049 341369 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :another pain point is that people write high level looking FFI bindings and don't f*cking make them threadsafe < 1334450050 550890 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :imo < 1334450052 809855 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :but that's not really Haskell's fault < 1334450061 768180 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that's C's fault :P < 1334450068 782737 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :That's a failure of pain-over-IP protocol. < 1334450071 366927 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :haskellers have higher standards < 1334450099 618020 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :elliott: I think you're proving my point. you have the wisdom to understand that these GHC extensions are "trying too hard", but most of the people designing APIs don't < 1334450111 859738 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :i am not saying it's impossible to design a good API in Haskell < 1334450116 454312 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shrug < 1334450125 878214 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :is your point just "people are incompetent" < 1334450130 579069 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :no < 1334450142 673624 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :what is a good API after all? it provides functionality of which you don't need to know how they work. just put sth in, and get sth out.. right? < 1334450148 803638 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :-_- < 1334450252 934008 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: were you this cynical before #haskell started burning you out < 1334450257 232410 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :yeah < 1334450265 803103 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :elliott you're not understanding my point about APIs < 1334450268 357599 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :that's fine ok < 1334450286 575129 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :just askin' < 1334450311 816317 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you seem to be acting as if I'm saying "API design is easy" < 1334450327 186628 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :whereas the actual statement you made that I am disagreeing with is "anyway I think API design in Haskell is probably hopeless" < 1334450355 973507 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :the statement i'm disagreeing with is "good API design in Haskell doesn't require as much care and avoidance of pitfalls as OOP" < 1334450362 873651 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :because, while the OOP pitfalls go away, there are new ones < 1334450373 143473 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :so I think it's hard to argue that Haskell API design is easier or harder on balance < 1334450390 275790 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fine, but that's hardly "API design in Haskell is probably hopeless" < 1334450447 859368 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :well combine it with the fact that few people learn Haskell well enough to understand the pitfalls < 1334450455 477297 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :what is the difference between a haskell api and one made java (e.g.) < 1334450456 375567 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :? < 1334450617 442876 :cswords!~cswords@c-98-223-234-80.hsd1.in.comcast.net QUIT :Ping timeout: 276 seconds < 1334450904 329174 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :elliott: I would hang around #haskell being cynical about how everyone else is too dumb to understand how great Haskell is < 1334451008 777895 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :and I still kind of feel that way, too < 1334451012 583884 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :so yes, I did get more cynical ;P < 1334451025 631800 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :i don't know much about haskell, but i don't see why there can be such a big difference on how and what an interface is supposed to do < 1334451053 360661 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :you don't see because you don't know much about haskell < 1334451061 255880 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 QUIT :Quit: Leaving < 1334451068 698399 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :a lot of people only know programming languages which are very similar to each other < 1334451075 71185 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@tell Phantom_Hoover i remembered < 1334451075 465416 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Consider it noted. < 1334451087 755528 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :All programming languages are basically the same thing. < 1334451091 853304 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :but if i use an interface, i don't really need to? am i wrong? < 1334451099 84957 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :You press keys on the keyboard, something happens on the screen. < 1334451106 562352 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :you are wrong hagb4rd < 1334451111 231704 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :anyway the solution is to not care about whether other people are any good at API design or whatever < 1334451125 772213 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :for example in C a critical part of an interface is the contract for who manages memory passed into and returned from the function < 1334451141 217652 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :it's a major part of C API design, and a major thing people get wrong < 1334451145 965735 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :it's not a concern in Java or Python < 1334451202 82873 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hagb4rd: idiomatic haskell is distinctly _not_ object oriented, so naively translating an api which _is_ OO can become very awkward with excessive use of even more advanced features to fit OO into it < 1334451270 717534 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :s/even more advanced/advanced type system/ < 1334451299 540106 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :hagb4rd: this shows that API design in C has extra challenges compared to API design in Java < 1334451310 947590 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :there are of course challenges in Java not shared by C < 1334451330 211649 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :okay, translating would be a problem, fair enough. but starting from scratch i could design a procedural api which pretty much works the same as a c api will do, or not? < 1334451332 698595 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :and so maybe you can imagine that there are challenges in Haskell not shared by Java, and vice versa, even if you don't know enough about Haskell to know what they are < 1334451344 825130 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :hagb4rd: yes, but it won't be idiomatic Haskell < 1334451365 366754 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :because in Haskell you only use imperative / procedural programming when it makes sense in the problem domain < 1334451399 161411 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION (disagrees minorly, but not in a way that invalidates kmc's point) < 1334451437 142379 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :sure, but it handles parameters (of an expected type) and produces some output (of another type).. correct? < 1334451455 501448 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :without going into more details < 1334451467 275471 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :look you need to learn about haskell before this discussion can continue < 1334451494 658008 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :functions in haskell are functions, they don't have side effects and their output depends only on their input < 1334451506 153713 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :that means they do not map cleanly to the "functions" of C, Java, etc < 1334451531 366594 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :that does not surprise me at all kmc < 1334451638 684089 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :my point is, that the difficulties of designing an api is to declare those parameters (I/O) so they match all the use cases (and the ones which may appear in future architectures too) < 1334451711 583721 :zzo38!~zzo38@24.207.49.17 JOIN :#esoteric < 1334451734 934148 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :hagb4rd: that is a very general statement of what the problem is < 1334451750 511499 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :that problem has all kinds of specific ramifications in different languages < 1334451758 312984 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :like the C memory management thing < 1334451816 396653 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, plouffe's inverter seems broken < 1334451886 885081 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :afaik the code behind the api cares a lot of for its own memory management.. but there might be some special cases where it can make sense < 1334451913 672285 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"Over the years since the sinking of the Titanic on 14/15 April 1912, many impractical, expensive and often physically impossible schemes have been put forward to raise the wreck from its resting place. They have included ideas such as filling the wreck with ping-pong balls, injecting it with 180,000 tons of Vaseline, or using half a million tons of liquid nitrogen to turn it into a giant iceberg that would float back to the surface." < 1334451927 952873 :Sgeo_!~Sgeo@ool-ad034d00.dyn.optonline.net JOIN :#esoteric < 1334452042 857834 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :hagb4rd: have you programmed in C < 1334452054 198372 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :yes < 1334452070 396316 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :you understand that, sometimes a function returns a pointer and you are responsible for free()ing that pointer < 1334452080 133807 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :other times a function returns a pointer and you need to be very careful *not* to free() it < 1334452089 412904 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :that is part of API design in C < 1334452095 401132 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :deciding who will manage which bits of memory < 1334452113 774203 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :it is user-visible API design, not an implementation detail < 1334452125 162401 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :sure, but everytime the api expects a pointer it will get a pointer < 1334452135 180824 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :and nothing more or less than that < 1334452140 773477 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :what? < 1334452178 724234 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :do you think that API design is only a matter of writing out type signatures? < 1334452185 286116 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :you have to say what the arguments *mean* < 1334452204 946830 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :i have the feeling i'm being trolled < 1334452332 714794 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :i dunno, i thought we're talking about apidesign but somehow we arrived @ memory management.. nevermind < 1334452352 609410 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :turns out memory management is part of api design < 1334452377 221877 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"Robert Ballard of the Woods Hole Oceanographic Institution had long been interested in finding Titanic. Although early negotiations with possible backers were abandoned when it emerged that they wanted to turn the ship into paperweights" this article is fucking hilarious < 1334452394 861369 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :so you're managing memory on business layer for example? < 1334452407 790321 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :in C you have to < 1334452416 527340 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :in Java that would be crazy < 1334452418 688787 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :that was my point < 1334452428 269520 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :the specific concerns of API design depend on the language you're using < 1334452431 539701 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :that was my point < 1334452512 857617 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"On 17 July 1980, an expedition sponsored by Texan oilman Jack Grimm set off from Port Everglades, Florida, in the research vessel H.J.W. Fay. Grimm had previously sponsored expeditions to find Noah's Ark, the Loch Ness Monster, Bigfoot, and the (non-existent) giant hole in the North Pole predicted by the Hollow Earth hypothesis." < 1334452534 680424 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :"non-existent giant hole in the North Pole" < 1334452538 260757 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :HEY THAT'S JUST AN OPINION < 1334452561 410258 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"They nearly stayed ashore when Grimm brought along a monkey called Titan, which was trained to point at a spot on the map to supposedly indicate where Titanic was. The scientists issued an ultimatum: "It's either us or the monkey." Grimm preferred the monkey, but was prevailed upon to leave it behind and bring the scientists instead.[21]" < 1334452575 186540 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :literally everything to do with attempts to find and/or recover the wreck of the titanic is hilarious < 1334452591 516304 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :O_O < 1334452608 921213 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :this thing has to be one gigantic hoax < 1334452624 119924 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"It later turned out that Sea MARC had actually passed over Titanic but had failed to detect it" < 1334452827 474718 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :on unlikely places to have your wedding gatecrashed: http://www.bbc.co.uk/news/uk-england-coventry-warwickshire-17694043 < 1334452935 17369 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that's nothing. once i gatecrashed a wedding in a CHURCH < 1334452938 915360 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ooh < 1334452981 602250 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION wonders if the russians will make an industry of this like with the space tourists < 1334453182 191126 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm i guess that bbc article doesn't mention that the helicopter was russian, i read that today in a norwegian paper < 1334453214 73226 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :do norwegians have a thing about russia < 1334453278 200657 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :yes; it's called a shared border and industry on svalbard < 1334453324 676755 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :so he flew by norwegian plane to svalbard and hiked with the russians via their 89 degree arctic base < 1334453353 207041 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :*degrees < 1334453367 703234 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: ok by "shared border and industry on svalbard" < 1334453370 190398 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :do you mean "we hate their guts" < 1334453421 525156 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :surprisingly amicable, really; just a few years ago we even managed to agree on _where_ the border is < 1334453429 885482 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wowzers < 1334453441 331565 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :should i go to svalbard < 1334453447 70071 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes < 1334453450 687181 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :can i come too < 1334453457 920020 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :kmc: why not < 1334453501 280030 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :things have changed since there may be a way to get that oil below the ice capes < 1334453580 330951 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :svalbard has almost free immigration < 1334453587 834838 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :if you are a citizen of one of these countries you might even manage to work there: http://en.wikipedia.org/wiki/Svalbard_Treaty < 1334453594 864977 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :yes < 1334453653 315884 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh by "go" does kmc mean "move" < 1334453667 607760 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I think a while ago someone in this channel try to think of coapplicative (and couldn't think of (>*<))? The thing I can think of is maybe like this? lowerChoice :: f (Either x y) -> Either (f x) (f y); It can be implemented on the non-empty list comonad, on identity comonad, etc < 1334453686 337401 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :zzo38: that's a well-known formulation iirc < 1334453711 88377 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I just used that it seem dual to liftPair :: (f x, f y) -> f (x, y); < 1334453886 858622 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: did you mean "move" or "visit" i can't actually tell < 1334453894 877210 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: "Management of .sj lies with the Trondheim-based Norid, which is also the domain name registry for .no and the unused .bv." < 1334453897 202920 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oerjan: trondheim has too much power < 1334453986 679651 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ah of course the russians have made it an industry http://en.wikipedia.org/wiki/Barneo < 1334454008 988812 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :kmc, just bug you one more time :) i use the winapi a lot. can you point out an example where i need to handle memory management using the winapi`? < 1334454059 391051 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :i don't know anything about winapi < 1334454089 437089 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :elliott: i meant more like "visit" but i basically just asked because i thought the answers might be interesting < 1334454089 613977 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :ok < 1334454210 191603 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"However, northerly winds cause the camp to drift toward the southeast at a speed of 0.8 km/h." < 1334454625 537575 :ais523!~ais523@unaffiliated/ais523 JOIN :#esoteric < 1334454626 774100 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :elliott: are you preparing for a polar expedition, or sth? < 1334454627 446081 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :elliott: it seems that norid was established as part of uninett, which was originally maintained by http://en.wikipedia.org/wiki/SINTEF, which was founded by nth which is one of the two main parts that merged into NTNU university [nb: RAS] < 1334454634 46827 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, bleh < 1334454641 559139 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :apparently SQL was originally /called/ SEQUEL but the name was changed for legal reasons < 1334454649 733970 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ACTION gets even more confused as to htf it's supposed to be pronounced, then < 1334454680 189310 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hagb4rd: totally < 1334454785 261687 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ais523: squeal, of course < 1334454794 223069 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :__builtin_prefetch should not have been an epic win. < 1334454800 826896 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :It *was*, but it should not have been. < 1334454812 321045 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :huh, something's seriously wrong if adding it has any noticeable effect at all < 1334454824 281586 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :did you have to say "epic win" :( < 1334454830 904746 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :pikhq_: there's a hilarious blog post by one of the Mozilla people talking about improving Firefox's startup time < 1334454846 346978 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :they spent ages benchmarking it to stop it seeking about all over the place in the executable, and instead read sequentially < 1334454849 529424 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and had got it down quite a bit < 1334454862 546288 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and then, they just wrote a shell script that copied the executable to /dev/null before running it, and it went way faster < 1334454867 2064 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :ais523: Well, in my defense, I'm doing nonsequential accesses on a *framebuffer*. < 1334454877 95169 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :And said framebuffer doesn't fit in my L2. < 1334454879 750395 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :pikhq_: reads or writes? < 1334454887 796199 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :pikhq_: your defence? it's the compiler I'm bitchingat < 1334454889 953763 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*bitching at < 1334454918 566785 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :Writes, actually. < 1334454925 872973 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :Yes, it's ridiculous. < 1334454979 265794 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :how do you speed up writes with a prefetch? < 1334454984 597073 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :*I don't know!* < 1334455002 425245 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :But it halved the time I take to draw a frame! < 1334455010 561098 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :meanwhile, XPN's text wrap is really /really/ broken < 1334455047 921528 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :if you type () then start typing inside the parens, the cursor ends up outside them when it wraps from one line to the next, for instance < 1334455054 607588 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :Though __builtin_prefetch takes an option so you can tell it you're meaning to *write*. < 1334455095 522357 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :if you're doing only writes, you can use nontemporal store instructions < 1334455110 975429 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well, it's a framebuffer, it's being read by something else < 1334455117 818671 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :or might even physically be part of the video hardware, I guess < 1334455131 347371 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :not sure how many layers of indirection there are between a typical framebuffer and the video card < 1334455146 43409 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :anyway, Web of Lies-related issue: X is trying to make iopl syscalls, as non-root < 1334455149 851039 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and is then bitching when they fail < 1334455160 233722 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :'Cept it doesn't fit in cache. < 1334455162 530144 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also, passing them through to the kernel is giving EINVAL rather than EPERM anyway < 1334455167 420574 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :It's ~4 times larger than my L2. < 1334456553 30504 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :OK, this device is seriously amazing. < 1334456570 101564 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :http://www.focalprice.com/CE0031W/HYUNDAI_A7_7_Capacitive_Android_40_Tablet_with_3G_WiFi_White.html <-- This. How is this. HOW. < 1334456583 429256 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i think RocketJSquirrel likes his tablet < 1334456604 809782 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: Part of it is that I bought it only because I was expecting it to be SO bad, I had to know HOW bad. < 1334456610 750132 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :So my expectations were low. < 1334456614 346196 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :But it's seriously amazing. < 1334456634 46445 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i have a shitty android tablet that isn't really shitty too < 1334456640 466633 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :I'm watching videos to test its battery life. I'm on episode 7, 62% battery (by probably-inaccurate reporting of course, but still, I'm on episode 7) < 1334456641 245523 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shitty android tablet that isn't really shitty friends < 1334456646 296865 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Woooh! < 1334456649 204579 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :*high five* < 1334456665 356985 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*low six* < 1334456678 379110 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :*carted off to prison for statutory rape* < 1334456709 468019 :Sgeo_!~Sgeo@ool-ad034d00.dyn.optonline.net QUIT :Ping timeout: 245 seconds < 1334456813 321480 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :how good is the screen? < 1334456878 801896 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :kmc: It's plastic, not glass, but it's capacitive (reportedly five-point). At first I thought the sensitivity was a bit weird, but I don't seem to be having any issues, so either I got used to it or it was a nonissue. < 1334456897 824814 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :And it's perfectly crisp, bright, etc (800x480) < 1334458138 190511 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@timm < 1334458139 283732 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for elliott is Sun Apr 15 03:49:29 < 1334458828 909127 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :@karma elliott < 1334458829 123544 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :elliott has a karma of 18 < 1334458997 50373 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :@help protontorpedo < 1334458997 227339 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :protontorpedo is silly < 1334459004 74471 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :hi monqy < 1334459013 586892 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :we were jstju tlkninga oubto aooabuyouuuu < 1334459171 898166 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :you were???? < 1334459177 478200 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :yeyss < 1334459188 8456 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oh ! < 1334459202 623852 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :about hwowoow you dnontndotn syay hi nono morere:( < 1334459209 737321 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric ::( < 1334459249 755095 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: wew decideded to replapcle yoou < 1334459254 212616 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :with abetebter monqy < 1334459264 627969 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :who syas hi < 1334459267 980269 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :who's abetebter monqy < 1334459271 732065 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I added more stuff to file of idea of D&D scenarios < 1334459348 146195 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :@protontorpedo < 1334459348 673390 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :how do we automate ftp file transfers with haskell? < 1334459350 285372 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :@protontorpedo < 1334459350 654858 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :check otu squeak seems dope < 1334459425 819386 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@prontotorpedo < 1334459426 35289 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :hu me/ < 1334459443 302899 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Is lesswrong.com a cult? < 1334460066 728518 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :is it a different cult from the SingInst cult? < 1334460099 710512 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :is it a different cult from mormonism < 1334460152 181780 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :kmc: I think it's the same one. < 1334460235 846529 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: unhi < 1334460244 204645 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :unhi < 1334460319 17579 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: 1 Corinthians 10:13 < 1334460330 947967 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :which is that < 1334460348 826199 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :it's the one that says "YOU CAN DO IT MONQY" < 1334460352 257932 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :"I BELIEVE IN YOU MONQY" < 1334460360 784743 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@google 1 corinthians 10:13 < 1334460363 135022 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :http://www.biblegateway.com/passage/?search=1+Corinthians+10%3A13&version=NIV < 1334460363 311923 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Title: 1 Corinthians 10:13 NIV - No temptation has overtaken you except - Bible Gateway < 1334460708 646346 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :@electrontorpedo < 1334460708 824679 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Unknown command, try @list < 1334460802 774649 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :@neutrontorpedo < 1334460802 951721 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Unknown command, try @list < 1334460834 216962 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :@protontorpedo < 1334460834 393969 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Unknown command, try @list < 1334460838 751033 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :@slap zzo38 < 1334460838 966960 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :ACTION will count to five... < 1334460845 342941 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :5 < 1334460865 678815 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Hey,#esoteric,is this OK? < 1334460875 405562 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Can I type like this? < 1334460884 755641 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yes < 1334460911 969171 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :yay < 1334460922 950238 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :you’re the best, monqy < 1334460935 751248 :elliott!~elliott@unaffiliated/elliott PART #esoteric :"Leaving" < 1334460942 14169 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :kmc: Does this highlight your nick? < 1334461036 898080 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :shachaf: how do you do that? < 1334461053 625808 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :hagb4rd: I have magical artist powers. < 1334461070 491305 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :share them with me :) < 1334461085 898624 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :He has Unicode is stupid powers >_> < 1334461137 400124 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :kmc: I have an actual Japanese input method set up! < 1334461143 235697 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :In order to not be racist. < 1334461176 112466 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :how considerate ! < 1334461178 243223 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :that's worth a hi < 1334461179 855600 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :hi shachaf < 1334461209 20531 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: im givning up hi :( < 1334461214 582759 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oh no :( < 1334461219 900642 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :I remember old shachaf < 1334461223 733319 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :old shachaf said hi < 1334461232 971664 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Well, old shachaf is no more. < 1334461239 310505 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :what did you do old shachaf < 1334461329 553179 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: I don't know. :-( < 1334461339 690754 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric ::( < 1334461437 220801 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :so you have kind of a macro set up, encoding your input as unicode right? is there an escape char to prefix a unicode char? if you know what i mean < 1334461473 787269 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :hagb4rd: I have a secret macro that encodes EVERYTHING I TYPE -- EVEN THESE VERY CHARACTERS -- AS UNICODE. < 1334461478 100015 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Where by Unicode I mean UTF-8. < 1334461604 969041 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :i see < 1334461695 760872 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :is there an escape char to prefix a unicode char? IF YOU KNOW WHAT I MEAN NUDGE NUDGE WINK WINK < 1334461744 114584 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :`chr 55 < 1334461750 294548 :HackEgo!codu@codu.org PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: chr: not found < 1334461754 779482 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :>chr 55 < 1334461872 302127 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :shachaf: it did not hilight < 1334462025 768534 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :maybe thats because it is so secret < 1334462047 47210 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Is hagb4rd = itidus21? < 1334462067 83318 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :no, i'm just a bot < 1334462080 104523 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :What a coïncidence! < 1334462091 865368 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :really? < 1334462103 394720 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :explain please < 1334462178 906138 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :haha < 1334462191 486902 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :shachaf: you are not the first person to wonder that < 1334462222 400701 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :kmc, is it you < 1334462251 504775 :oerjan!oerjan@sprocket.nvg.ntnu.no QUIT :Quit: Cohi < 1334462260 521716 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :kmc: Uh-oh. < 1334462302 74076 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Welp, the person I was babbling my battery test reports at logged off, so I have to report them at #esoteric now. < 1334462312 879349 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :EPISODE ELEVEN COMPLETE. REPORTED BATTERY LEVEL: 37% < 1334462324 402957 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Erm, episode TEN complete. < 1334462364 861837 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Coming up on four straight hours of video. < 1334462410 731622 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :shachaf: what's up with itidus21? you haven't hurt him, did you? < 1334462683 318898 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :i will strike down upon thee with great vengeance and furious anger those who attempt to poison and destroy my brothers < 1334462776 695507 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :hagb4rd: Are you sure you're not itidus21? < 1334462843 813628 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :indeed i am < 1334462869 803894 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Good job on the ambiguity there < 1334463110 249754 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :@karma- shachaf < 1334463110 426735 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :shachaf's karma lowered to 12. < 1334463124 804439 :elliott!~elliott@unaffiliated/elliott JOIN :#esoteric < 1334463151 419378 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :21:11 < hagb4rd> @karma- shachaf < 1334463151 596467 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :21:11 < lambdabot> shachaf's karma lowered to 12. < 1334463160 24041 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Look at what hagb4rd did. < 1334463183 79265 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :@karma+ shachaf < 1334463183 256250 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :shachaf's karma raised to 13. < 1334463245 969024 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :@karma- lambdabot < 1334463246 183745 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :lambdabot's karma lowered to 6. < 1334463260 442810 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :squealer :P < 1334463291 344647 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@karma+ lambdabot < 1334463291 521687 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :lambdabot's karma raised to 7. < 1334463310 248497 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :lambdabot once had 50 karma. < 1334463312 873886 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Then I @karma-'d it all. < 1334463355 223580 :rvchangue!~rvchangue@unaffiliated/rvchangue QUIT :Ping timeout: 260 seconds < 1334463507 298439 :rvchangue!~rvchangue@unaffiliated/rvchangue JOIN :#esoteric < 1334463575 155242 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :(Passed the four hour mark fifteen minutes ago) < 1334463663 788037 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Episode eleven complete, reported battery level 28%. < 1334463716 849122 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: Do you know what the type of a closure is??? < 1334463761 172917 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :elliott: why are you asking that < 1334463777 372424 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: Um, A -> B? < 1334463778 450814 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: It's one of those questions where I already know the answer, I'm just repeating it a lot, you see? < 1334463786 681229 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Mostly so I can do this: < 1334463789 697634 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: WRONGGGGGGGGGGGG < 1334463792 280627 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It's really satisfying. < 1334463821 509805 :cswords!~cswords@c-98-223-234-80.hsd1.in.comcast.net JOIN :#esoteric < 1334463879 455144 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: The best part was the part where you were wrong all along. < 1334463880 324946 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :yes, great attitude < 1334463900 330706 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: Yes. But then I became right! < 1334463922 316630 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Apparently http://prokofiev.org/ may harm my computer. :-( < 1334463936 737505 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: AFTER I MADE YOU RIGHT < 1334463963 597059 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: Yes, but would you have made me right without the inspiration and genius I showed to you with my original, slightly incorrect form? < 1334463978 697464 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Probably. < 1334463984 841317 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :No. < 1334463988 49670 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Also, I wasn't really exactly wrong, as such. < 1334463993 802945 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I said struct Closure. < 1334464011 722336 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :struct Closure { void *data; void (*fn)(void *); }; < 1334464062 22924 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :data a -> b = K (∃f. (f, a) -># b) < 1334464106 338975 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Exactly. < 1334464107 675560 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: That needs MagicHash, man! < 1334464110 243029 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :So unportable. < 1334464114 507816 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :By the way, that's wrong too. < 1334464118 346193 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :You mean: < 1334464121 467054 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :data a -> b = K (∃f. (f, (f, a) -># b)) < 1334464132 456412 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: kmc always needs MagicHash. < 1334464147 56156 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Wait! I think I get the joke! < 1334464151 106785 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Is the joke: drugs? < 1334464155 866646 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :itt: drugs < 1334464163 955058 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :yeah you're right elliott < 1334464172 324155 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION geniouse < 1334464185 104410 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Isn't it great how you corrected kmc with the exact same thing I used to correct you earlier? < 1334464199 570753 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Yes. < 1334464210 245226 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :WHOSE GENIOUSE NOW?? < 1334464226 536905 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I don't like how kmc's definition couples the concept of function with the concept of closure. But OTOH I can't see any useful way to use my original type without the product in there. :( < 1334464230 589255 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :shachaf: aim hecker :( < 1334464249 38389 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Have I mentioned that my systems language uses kmc's (->#) as its function arrow? < 1334464263 752768 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :"my systems language" < 1334464284 121235 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :is it @ < 1334464284 597641 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :kmc: did i hckecek ur aim???? < 1334464292 508979 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :s/kmc/bobthemonkey13/ < 1334464298 155022 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :shachaf: WHY ARE YOU STILL ANGRY ABOUT PHP < 1334464300 908333 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :lol nerds get a life < 1334464331 358516 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc's aim is so hecked that he doesn't technically have an aim any more < 1334464338 366711 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :shachaf: yesterday I went sailing in the Charles River Basin < 1334464356 323932 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@time < 1334464357 374449 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for elliott is Sun Apr 15 05:33:07 < 1334464360 163406 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Oh boy! < 1334464382 2404 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :kmc: Was it good? < 1334464402 338323 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :i didn't sink < 1334464413 628737 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Guess what sunk???? < 1334464415 456093 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :THE TITANIC. < 1334464425 322096 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :i went with KeithW so if we did sink, that would pretty much be the end of Mosh < 1334464431 978058 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :we need a critical personel policy < 1334464443 77685 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :zomg kmc = famousmc < 1334464494 823786 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: I think that would require a bus to drive into the basin with you, and then hit you. < 1334464504 950615 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :That is, as I understand, the procedure. < 1334464506 111423 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :that could very easily happen < 1334464522 284051 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Buses? In my Charles River Basin? < 1334464534 645908 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It's not your Charles River basin, shachaf. < 1334464536 348825 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It's God's. < 1334464540 847488 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :hi god < 1334464542 498794 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :oh no :( < 1334464551 694593 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Did I mention I quit hi? < 1334464570 13073 :MDude!~fyrc@c-174-55-44-190.hsd1.pa.comcast.net NICK :MSleep < 1334464588 401687 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :more like Cam River basin < 1334464602 264570 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :does anyone here know how to make good currywurst sauce < 1334464646 643198 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Step 1. Make some curry. < 1334464651 414654 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Step 2. No, like, the worst curry. < 1334464653 119059 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Step 3. < 1334464670 288628 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :HA HA HA HA HA HA HA HA < 1334464670 898507 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :HA HA HA HA HA HA HA HA < 1334464672 209706 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :HA HA HA HA HA HA HA HA < 1334464672 851117 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :HA HA HA HA HA HA HA HA < 1334464720 367836 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :thanks kmc < 1334464768 343638 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: You should implement my language. < 1334464772 423874 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :@? < 1334464774 140885 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Do you know if Codensity can ever make Extend or Comonad? < 1334464797 683600 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :ubuntu freebsd < 1334464823 176568 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: No, not @. :( < 1334464826 869431 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Not *everything* I do is @. < 1334464829 63832 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Only most things. < 1334464843 487229 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :kmc: You should help to implement my language as well, but not until the specification is written so that we can know how it should be < 1334464917 168406 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: I... I apologise. < 1334464923 272893 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I did not know the consequences of my actions. < 1334464989 754601 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Episode twelve complete, reported battery level 21%. < 1334465048 782488 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: Can you implement my language? < 1334465050 953557 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :In not JavaScript. < 1334465145 602062 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :kmc: Also, did you ever tell me about DDC? < 1334465147 428350 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :/Can/ I? < 1334465147 937772 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Honestly, you people. < 1334465149 383601 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Probably. < 1334465246 908628 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :no < 1334465256 161902 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :honestly < 1334465258 281687 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you people < 1334465273 245188 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :now he's finally going mental < 1334465281 652447 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :You should at least read this paper for me so I can close its window. < 1334465363 13427 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"We use the type bool as a shorthand to denote the type < 1334465363 227373 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :1 + 1 and use left () to be true and right () to be false." < 1334465367 557672 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :No! That's the wrong way around. :( < 1334465399 323501 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :hagb4rd++ < 1334465432 100017 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@karma kmc < 1334465432 550338 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :kmc has a karma of 7 < 1334465436 195929 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@karma elliott < 1334465436 604149 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :You have a karma of 18 < 1334465439 29204 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION is a superior person to kmc < 1334465443 447097 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :ACTION punk't < 1334465473 108011 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*punk't < 1334465473 947852 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*punk'te < 1334465703 285309 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@time < 1334465704 233902 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for elliott is Sun Apr 15 05:55:34 < 1334465704 410686 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@ping < 1334465704 767261 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :pong < 1334465743 540973 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :what paper is this is it a good paper < 1334465770 404327 :augur!~augur@208.58.5.87 QUIT :Remote host closed the connection < 1334465771 108693 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :reveal your paper elliott < 1334465820 127436 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://www.cs.indiana.edu/~sabry/papers/rational.pdf < 1334465825 7756 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :its a-b and a/b for types "fune" < 1334465849 342764 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :also it has diagrams < 1334466000 771919 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :aaaaaaaahhhhhhhhhhhhhhhh < 1334466006 127247 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: waht < 1334466009 138233 :augur!~augur@208.58.5.87 JOIN :#esoteric < 1334466059 757765 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :its hte a-b and a/b for types fune < 1334466077 804494 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fun is not aaaah!!!! < 1334466284 12575 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Episode thirteen complete, reported battery level 19%. < 1334466306 2914 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :I was not expecting this to be an all night marathon X_X < 1334466357 53696 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: how predictable ! < 1334466371 44420 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: hi < 1334466377 132304 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: help < 1334466380 14651 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :help me resist < 1334466401 933534 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :hlep, < 1334466405 787644 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you are both wrong!!!! < 1334466480 838321 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"I agree with your clarifications so far. Thank you, ehird." :') < 1334466490 165302 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :im pasteurised < 1334466506 967496 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :im parephrased < 1334466597 550676 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ACTION , paraphrased < 1334466610 195832 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: Remember when elliott drew a self-portrait of me? < 1334466614 835363 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :(BECAUSE I = ELLIOTT) < 1334466743 212453 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Oh god entering hour six O_O < 1334466904 564566 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :elliott: do you have the haskell code mentioned to be "organized for better presentation" on page 2? < 1334467046 335042 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nope < 1334467574 662193 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Episode fourteen complete, reported battery level 17%. < 1334467588 562940 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Must ... test ... battery ... completely ... < 1334467594 963240 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Must ... not ... fall ... asleep ... < 1334467733 822694 :elliott!~elliott@unaffiliated/elliott QUIT :Ping timeout: 248 seconds < 1334467792 24617 :asiekierka_!~asiekierk@178235039209.elblag.vectranet.pl JOIN :#esoteric < 1334468576 145163 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :ACTION engages the synaptic cooling system < 1334468591 41279 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :this is far-out stuff < 1334468600 572054 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :need a break < 1334468655 993379 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :python unicode escapes are BMP-only? < 1334468669 640365 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :print u'\u1f63a' < 1334468671 18736 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :laaaaame < 1334468738 281580 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :kmc: try capital u < 1334468745 693147 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :\U0001f63a < 1334468751 104255 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :convention is \uxxxx \UXXXXXXXX < 1334468782 333936 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :oh cool that works < 1334468783 931674 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :thanks coppro < 1334468828 793611 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :i guess they need to be fixed length < 1334468855 629708 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :What is RocketJSquirrel watching? < 1334468886 957373 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Sgeo: Not relevant, I'm testing the battery life of this tablet. < 1334468895 814314 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Episode fifteen complete, reported battery level 13%. < 1334468925 533861 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :SMILING CAT FACE WITH OPEN MOUTH? < 1334468956 612953 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :yeah < 1334469116 417213 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :RocketJSquirrel, but they must be episodes of something < 1334469161 734611 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :Unless RocketJSquirrel is watching STATIC: THE MOVIE: THE SHOW < 1334469169 227694 :MoALTz!~no@host-92-8-148-182.as43234.net QUIT :Ping timeout: 250 seconds < 1334469243 792539 :MoALTz!~no@host-92-2-118-203.as43234.net JOIN :#esoteric < 1334469339 586878 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Sgeo: They MIGHT be MLP:FiM ;) < 1334469407 239523 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :kmc: It's CAPITAL u because it's Unicode BIG endian. < 1334469416 119135 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :There's a logic behind the scenes. < 1334469826 791927 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :yes < 1334469855 432449 :asiekierka_!~asiekierk@178235039209.elblag.vectranet.pl NICK :asiekierka < 1334469947 356132 :MoALTz_!~no@host-92-8-145-21.as43234.net JOIN :#esoteric < 1334470001 155316 :MoALTz!~no@host-92-2-118-203.as43234.net QUIT :Ping timeout: 250 seconds < 1334470112 769659 :elliott!~elliott@unaffiliated/elliott JOIN :#esoteric < 1334470114 648857 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hi guys im back < 1334470138 233490 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :we missed you < 1334470145 951240 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :me 2 < 1334470187 35230 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Episode sixteen complete, reported battery level 10%. < 1334470260 993261 :MoALTz_!~no@host-92-8-145-21.as43234.net QUIT :Ping timeout: 250 seconds < 1334470311 155211 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :why are you doing this to yourself < 1334470456 410648 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :RocketJSquirrel: what are you watching? < 1334470564 810710 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :it's the ultimate endurance test for his new toy.. "it's perfectly crisp, bright, etc" < 1334470641 759438 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :coppro: Not relevant, I'm testing this tablet's battery life. < 1334470670 469204 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i bet it drains the battery and never turns on again < 1334470690 910301 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: I've already drained the battery once ;) < 1334470725 145053 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :yea, he used to ring the bell for about 8 hours < 1334470736 75889 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: how predictable ! < 1334470779 432374 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :This wasn't supposed to be an endurance test for me, I really didn't think the damned thing would last seven hours X_X < 1334470780 156219 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: hi < 1334470788 836700 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: help, < 1334470795 924400 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :How do I convince my gf that I'm not good at everything < 1334470824 828238 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :that's easy: just mess it all up < 1334470825 5259 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :you have a gf? < 1334470841 684316 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :who thinks you're good at everything? < 1334470850 741110 :MoALTz!~no@host-92-8-147-252.as43234.net JOIN :#esoteric < 1334471337 839917 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :sgeo: if all else fails, beat her, calling her a bitch or sth. that should lower her expectations rapidly < 1334471351 60486 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: Is 2:0.10.0-2 < 1334471354 794630 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Crawl version 2:0.10.0-2 < 1334471360 567917 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Really outdated? < 1334471441 232356 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :are you playing crawl? < 1334471449 554841 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Not right now. < 1334471453 196780 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :What's a good version < 1334471460 97977 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Is Crawl version 2:0.10.0-2 < 1334471463 527641 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :none of them (laughs) < 1334471464 54633 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :goode? < 1334471465 565468 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :Why not play on the server? < 1334471470 984765 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I HATE THE SERVER < 1334471480 405541 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Sgeo: When I play on the server, it starts beeping my IRC client. < 1334471483 382963 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :if you play on the server I can watch you, and sgeo can watch you too < 1334471493 316983 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: 0.11 is most recent if you have any decency < 1334471501 578970 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Episode seventeen complete, reported battery level 8%. < 1334471503 387801 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :"oh, shachaf has died. oh, someone just killed shachaf's ghost. oh, shachaf was killed by a jellyfish" < 1334471516 568712 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :just change your name, or play on an account with a funny name < 1334471522 928753 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :did you know that crawl sucks < 1334471525 83539 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :And then EVERY TIME SOMEONE SEARCHES FOR !topkills by a jellyfish... < 1334471533 424250 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Guess what happens? < 1334471537 309487 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :HINT: MY IRC CLIENT BEEPS < 1334471542 833339 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :elliott: yes, but maybe shachaf doesn't < 1334471553 794120 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: do i :( < 1334471555 834378 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :I like Crawl < 1334471559 85388 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :HLEP,pad < 1334471564 985398 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :oop,se < 1334471596 880628 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :At any rate, I can't play NetHack on NAO < 1334471601 44162 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :I have a good game going < 1334471610 213080 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :And don't want to screw it up < 1334471626 963952 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: Do I have decency? < 1334471661 953482 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :you're playing crawl, so no. (laughs) < 1334471666 366612 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :I dunno, man!! < 1334471667 438513 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :do you? < 1334471670 215823 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :do you have it in you < 1334471681 209209 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: Can't I just install what's in APT>;f a;df;:_-( < 1334471701 191691 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :if you don't play on the servers everyone in ##crawl will mock you < 1334471715 944006 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: But I haven't been playing on the server for years! < 1334471726 206940 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :In fact I haven't played a single game of Crawl for the last $TIME. < 1334471734 504422 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :if you play crawl but don't play on the servers, I should say < 1334471734 681457 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Including on the server. < 1334471740 565888 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :oh :( < 1334471744 851592 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :zzo38: Do you play Crawl? < 1334471752 835320 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you know what would be more entertaining than watching shachaf play crawl < 1334471756 933177 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :watching me play nethack while sleep-deprived < 1334471762 708064 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :sure < 1334471765 308021 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: NONSENSE. NETHACK IS BORING. < 1334471767 320210 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :I don't like nethack either though < 1334471768 554775 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@time elliott < 1334471769 100917 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for elliott is Sun Apr 15 07:36:39 < 1334471773 678186 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :GO TO SLEEP ELLIOTT < 1334471786 913513 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yeah but < 1334471797 244349 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nethack is bad in a way that i understand < 1334471798 648171 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ie < 1334471801 850181 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i know how to play nethack sort of < 1334471804 771554 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :this is not true of crawl < 1334471809 729052 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :anyway < 1334471812 563503 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: But have you ASCENDED NETHACK ATHEIST WISHLESS < 1334471813 873213 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :LIKE I HAVE < 1334471817 148131 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: you realise you can just termcast the crawl game < 1334471820 46923 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :even if it's not on the server < 1334471855 484817 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: http://alt.org/nethack/userdata/s/shachaf/dumplog/1248250553.nh343.txt < 1334471859 367936 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: http://alt.org/nethack/userdata/s/shachaf/dumplog/1248250553.nh343.txt < 1334471870 185628 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: what's a nethack < 1334471872 570411 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric : You were an atheist < 1334471875 87673 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :and how do I play it ?? < 1334471876 642632 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric : You used no wishes < 1334471879 129144 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric : You never genocided any monsters < 1334471881 200101 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric : You never polymorphed an object < 1334471882 423745 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :just kidding i don't want to play nethack < 1334471892 162889 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :shachaf: but you polyselfed? < 1334471900 338915 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :coppro: IT WAS AN ACCIDENT < 1334471902 157447 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :(I think?) < 1334471915 601410 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I have polyselfless ascensions too. < 1334471922 374515 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :http://alt.org/nethack/userdata/s/shachaf/dumplog/1212252167.nh343.txt < 1334471938 217498 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok so < 1334471939 475903 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :http://alt.org/nethack/userdata/s/shachaf/dumplog/1289699027.nh343.txt < 1334471942 542529 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :http://alt.org/nethack/userdata/s/shachaf/dumplog/1289294462.nh343.txt < 1334471946 77178 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :shachaf: I have played Crawl before; both on the computer and on the Nintendo DS < 1334471946 254370 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :http://alt.org/nethack/userdata/s/shachaf/dumplog/1212543239.nh343.txt < 1334471946 254567 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :zzo38: You have 3 new messages. '/msg lambdabot @messages' to read them. < 1334471946 432092 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :im going to play nethack < 1334471951 322100 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :really badly < 1334471954 828265 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :who will < 1334471955 275318 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :?messages < 1334471955 452525 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :dmwit said 5d 2h 31m 45s ago: how to use ?tell < 1334471955 452680 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :dmwit asked 5d 2h 31m 23s ago: if he knows how to use ?ask < 1334471955 452781 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :edwardk said 49m 47s ago: i pushed a new kan-extensions with the Applicative instance for Density < 1334471955 629545 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :watch me < 1334471957 99603 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :are you naoing or termcasting or what < 1334471958 887672 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :i'll watch < 1334471968 59462 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: ill termcast because uh nao is really slow in europe < 1334471971 497892 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :actually < 1334471974 514881 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i don't think ic an install nethack < 1334471976 325191 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Instead of naoing you should later. < 1334471977 18536 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :because my packages are broken < 1334471979 717005 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so NAO IT IS!!!! < 1334471993 692861 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Did you know I WROTE A NETHACK PATCH < 1334471996 180338 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :WHICH RUNS ON NAO < 1334471997 982348 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :RIGHT NAO < 1334472005 154788 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :elliott: you should be playing NH4 < 1334472014 746258 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :why isnt telnetting to nethack.alt.org working help < 1334472015 82373 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :nh4?????? < 1334472016 493575 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :The documentation is not available yet < 1334472018 692385 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :coppro: i knew about that BEFORE IT CAME OUT YO < 1334472026 196517 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, ping me when you're on < 1334472027 139545 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: sure here's the release announcements: < 1334472031 24424 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :elliott: Maybe it uses a different port numbers? < 1334472036 410633 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :elliott: oh yeah dgamelaunch has a problem < 1334472037 292524 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Let's play a coöperative game of NetHack. < 1334472037 922376 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: http://groups.google.com/group/rec.games.roguelike.nethack/browse_thread/thread/261849837d0d8e42# < 1334472041 460114 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: http://groups.google.com/group/rec.games.roguelike.nethack/browse_thread/thread/ade3da9173a7cc2a# < 1334472043 781074 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: http://groups.google.com/group/rec.games.roguelike.nethack/browse_thread/thread/cb0da1bf9d2c0ba1# < 1334472051 664685 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(nethack switched to a rapid-release model) < 1334472057 76899 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: is that where i press keys but you all yell at me what to do < 1334472058 527958 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :elliott: you have to set your TERM environment variable to something it recognizes < 1334472060 819326 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :'cuz i'm down 4 that < 1334472064 444339 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: oh thanks < 1334472068 180622 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: what's a good thing it recognises < 1334472069 213694 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: No, it's shared-screen-nethack. < 1334472069 571593 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :im using urxvt < 1334472071 491886 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :uhh < 1334472077 790437 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: WANT TO DO IT < 1334472080 662808 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :FIGHT OVER THE KEYBOARD < 1334472081 194238 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :I use TERM=rxvt-unicode to get it to work < 1334472081 371217 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION tries "xterm" < 1334472084 424243 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: oh ok thx < 1334472086 429012 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :i thin < 1334472087 700182 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :er < 1334472091 878326 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy thin < 1334472101 697106 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :without that it's rxvt-unicode-256color qqhich does not work < 1334472113 698555 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok < 1334472115 3046 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'm on nao < 1334472115 931229 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Sgeo: ping < 1334472121 570753 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok < 1334472122 762782 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what < 1334472122 953652 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Sgeo: ping < 1334472126 716191 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :race role gender alignment < 1334472127 938804 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :should i pick < 1334472141 826924 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :also uh < 1334472144 989173 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :elliott: how multiplayer nethack works is that you and the other player take turns if you're on the same level < 1334472145 817461 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :my terminal is oddly-sized < 1334472147 460196 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so sorry about that < 1334472149 476128 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :and crash if you do anything that interacts < 1334472153 85200 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :coppro: i know < 1334472156 340889 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :coppro: ais523 told me about it ages ago < 1334472158 201856 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: wizard elf male chaotic < 1334472165 660302 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: ok thanks for ur vote < 1334472167 260326 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: ur vote pls < 1334472168 460043 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Sgeo: ur vote pls < 1334472169 939734 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: valkyrie human female neutral < 1334472171 13637 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :ACTION recompiles his compiler < 1334472177 592113 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: samurai < 1334472183 205692 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, too busy fighting with my computer < 1334472185 603221 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :coppro: doesn't crash, it would if it were allowed, but it isn't < 1334472191 365830 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :ais523: haha < 1334472192 961871 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :doppelganger yeoman < 1334472198 20382 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :ais523: that's how it was described to me :P < 1334472199 625641 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@slap monqy < 1334472199 804573 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :I don't perform such side effects on command! < 1334472205 675099 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :HELP < 1334472205 854336 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: lawful dwarf female valk < 1334472206 239606 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy the traitor :'( < 1334472209 780585 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: that's boring!!! < 1334472214 124153 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'm aiming for Fun here < 1334472219 361100 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: TOURIST < 1334472223 454622 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :MAXIMAL FUN < 1334472224 932005 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, gnome healer, then < 1334472229 629440 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :WHY WON'T YOU ALL AGREE < 1334472233 167429 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: DIG FOR VICTORY! < 1334472238 927335 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I want to watch elliott try to DfV. < 1334472252 43536 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :convict < 1334472265 854138 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :coppro: haha < 1334472266 299719 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :ais523, so is NiceHack an actually viable Nitro+Ace merger? < 1334472272 374543 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok what role < 1334472273 468056 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :c'mon < 1334472274 117777 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :role < 1334472276 628584 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :also < 1334472278 628902 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: * < 1334472279 655778 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :Or is even the tarball just say april folls or something < 1334472281 291363 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Sgeo: it's called NetHack 4, but yes < 1334472281 469550 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'll resize this terminal to be 80x24 < 1334472287 812082 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :um < 1334472288 277953 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Real programmers always choose * < 1334472289 725343 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what size is it now < 1334472293 613808 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :also how do i make NAO redraw < 1334472294 52190 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: how difficult do you want? < 1334472300 751897 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :control-R, but resizing during a game doesn't work < 1334472301 810385 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: 100000000000000000000×100000000000000000000000000000000 right now < 1334472302 477363 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: as difficult as possible < 1334472307 392811 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and resizing during the dgamelaunch screen screws up < 1334472310 717749 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what do you mean during a game? < 1334472312 235393 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok wait < 1334472318 468059 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :uhh < 1334472319 159428 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :in a different way < 1334472321 452746 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: First pick a role. < 1334472323 742660 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :is there a command line program to print the current terminal size < 1334472330 216890 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also, difficult as in lowest win chance, or as in dificult throughout the game < 1334472333 922642 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and yes, but I can't remember what it is offhand < 1334472342 879785 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: the aim is comedy, i'm sleep deprived and terrible at nethack < 1334472353 215127 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: urxvt shows terminal size when you resize < 1334472356 399527 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :gnome healer, then, because it gets worse and worse as it goes on < 1334472361 73048 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :aha, its tput < 1334472372 825676 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: IT'S ECHO $ROWS, $COLS < 1334472411 14754 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :tput cols; tput lines < 1334472411 192260 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok < 1334472413 237997 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: is gnome healer good < 1334472415 158716 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shoudl i be < 1334472416 764663 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :gnom haller < 1334472430 74987 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Be * < 1334472436 96583 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Seriously. * is maximal comedy. < 1334472438 589114 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh fuck it < 1334472438 766715 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :* * * * < 1334472440 153554 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok < 1334472440 613848 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fine < 1334472446 173931 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Sgeo: monqy: are you watching btw < 1334472453 656029 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yes < 1334472454 236594 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :random all might produce a good combo by chance < 1334472454 716265 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: In fact, press Q, then press Y instead of N. < 1334472462 685786 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :lawful male human samurai? < 1334472462 964763 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :today I probably won the 'weirdest question asked of proctor' award < 1334472463 844014 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: That's part of the fun! < 1334472464 574743 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that's not comedy at all < 1334472468 2187 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :hey, how can i join/watch? < 1334472468 599189 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that's boring < 1334472472 496370 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, is it still asking for role? < 1334472477 731575 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :hagb4rd, telnet to nethack.alt.org < 1334472477 909486 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :coppro: What is that? < 1334472490 2764 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net PRIVMSG #esoteric :ok < 1334472491 632939 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :I had a hangnail, so I asked if I could remove a set of nail clippers from my bag < 1334472492 871075 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: what NAO username? < 1334472498 415595 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: ehird, and currently laughing < 1334472509 293685 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ACTION jettyplay dgamelaunch://nethack.alt.org/ehird < 1334472520 443023 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: If I play on NAO will you watch me. :-( < 1334472524 578807 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: yes < 1334472529 347026 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Instead of elliott :-( < 1334472531 21336 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :no!!! < 1334472532 514367 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: huh, why is color off? < 1334472533 500848 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::'( < 1334472533 704154 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :I'll watch you both < 1334472535 974878 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it isn't < 1334472536 903487 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :at the same time < 1334472544 197027 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :is it a monqy superpower < 1334472555 65770 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yes < 1334472557 469161 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well you have a terminal that uses bizarre nonstandard color codes then < 1334472563 748050 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :it works for me < 1334472564 6956 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it's just rxvt-unicode < 1334472574 700786 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Turn off DECgraphics. < 1334472580 582696 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i like decgraphics < 1334472580 759633 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Real programmers use plain graphics. < 1334472586 61111 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, you died already < 1334472588 966981 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :on purpose < 1334472591 317332 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :boring role < 1334472592 737710 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :My turn! < 1334472594 918484 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: what's the terminal for xterm 256 colours < 1334472598 338634 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Now all y'all get to watch me. < 1334472599 22382 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :TERM that is < 1334472606 135166 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: xterm, I think < 1334472610 959953 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@poll-add nethack < 1334472611 136964 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Added new poll: "nethack" < 1334472617 172928 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :there's xterm-color, but that only seems to work on BSD < 1334472620 67833 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :properly, that is < 1334472621 558299 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :OK, I'm on again < 1334472622 274975 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@choice-add nethack Wiz_Elf_Mal_Cha < 1334472622 452235 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :New candidate "Wiz_Elf_Mal_Cha", added to poll "nethack". < 1334472622 452413 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Finally, in D&D game, I have found the emerald monster (it seems to be some kind of large humanoid demon); it is my job to kill him but the other people in the party should not kill him although they can harm him if they want; it is solely has to my job to kill him however. He is in some large octagon room, in some evil religion I cannot recognize. What to do? < 1334472626 642082 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'll go with a gnome healer < 1334472631 790527 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@vote nethack Wiz_Elf-Mal_Cha < 1334472631 968061 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :"Wiz_Elf-Mal_Cha" is not currently a candidate in this poll < 1334472633 792442 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@vote nethack Wiz_Elf_Mal_Cha < 1334472633 969391 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :voted on "Wiz_Elf_Mal_Cha" < 1334472636 612027 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :actually, naw < 1334472637 333561 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :tourist < 1334472654 797588 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :O, lambdabot has votes? < 1334472657 759064 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: does colour work now? < 1334472666 652216 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I didn't know lambdabot has votes. < 1334472669 614587 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it works in gnome-terminal, trying jettyplay < 1334472674 55389 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :zzo38: Do you know it now? < 1334472685 23645 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i liike how i've forgotten all the keys < 1334472686 359505 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yep, works in jettyplay too < 1334472689 361012 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :shachaf: Partially I know it now. < 1334472690 887568 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :how do you walk somewhere again < 1334472691 489083 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: h j k l y u b n < 1334472692 941800 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :no < 1334472693 644759 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i mean < 1334472695 722146 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :automatically < 1334472702 494348 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :H J K L Y U B N < 1334472705 446119 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :no < 1334472707 224561 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :more automatic than that < 1334472707 224742 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :_ < 1334472707 473808 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :_ < 1334472709 429920 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :thx < 1334472712 471142 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :hjklyubn < 1334472731 350923 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Did you fountaindrink. :-( < 1334472736 543919 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes i love fountains < 1334472738 142566 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :help < 1334472762 844908 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :My turn! < 1334472764 208032 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :LET'S TRY THT AGAIN < 1334472765 159081 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*THAT < 1334472765 458908 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf are you playing too < 1334472768 846076 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :hrm < 1334472769 386398 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Will all y'all watch me now? < 1334472774 346376 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :I'll watch everyone < 1334472775 254470 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wh < 1334472777 560867 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :why is there a goblin < 1334472783 588405 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :help < 1334472784 50722 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I'll play if monqy watches. < 1334472784 940663 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :I vaguely recall a player dying to a demon named 'where's my wish' < 1334472787 181243 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :And ais523 watches. < 1334472788 654908 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :that was funny < 1334472789 725305 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :And Sgeo watches. < 1334472790 949530 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :I'll watch < 1334472792 626192 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :And elliott watches. < 1334472797 150889 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :coppro can watch too. < 1334472820 724039 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :but only if mail is on < 1334472822 310923 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Episode eighteen complete, reported battery level 7%. ... ... the last 10% is purgatory. < 1334472825 824804 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :elliott: Probably because it happens at random that you find goblins and so on isn't that now NetHack works? < 1334472827 993151 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :coppro: i have mail on < 1334472829 705017 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :just sayin'!!! < 1334472853 737022 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i forget can you mail in-game < 1334472855 623637 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i guess not < 1334472918 43463 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :I didn't write that! < 1334472920 414343 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :can you make notes in game < 1334472966 358290 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :What happened to the mail I sent? < 1334473002 637452 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :Two messages on the same scroll? < 1334473016 562537 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* I have one of his books, but it is torn. * I have his dagger too. * It is some evil religion I cannot recognize. * The only known exit is through another room, up the stairs, into some water. * Someone else in my party has an emerald sword too. * This room is octagonal with 30 ft each side. * This fortress is a long way away from anything. < 1334473028 332845 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :Sgeo: the mail demon doesn't block on one client < 1334473031 473718 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what happened to my weapons!!! < 1334473033 137475 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and things < 1334473035 603960 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: you can use the extended command thing to send messages back < 1334473057 352581 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :elliott: you just type a message after the # < 1334473063 922059 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :well that's boring < 1334473069 567301 :hagb4rd!~perdito@koln-4d0b723e.pool.mediaWays.net QUIT :Quit: need to restart < 1334473089 577797 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Wow, did you just heal the fox? < 1334473092 613377 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott++ < 1334473092 992756 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i < 1334473093 704413 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :thinks o < 1334473097 245485 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :elliott: Maybe they evaporated; but, I think in NetHack you can get bonus points if you never use weapons so try that < 1334473110 422528 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :zzo38: Want to watch me play NetHack? < 1334473115 433605 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fuck yeah hermes < 1334473122 453261 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :come ON < 1334473127 457334 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :RIP elliott < 1334473130 722321 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: The scalpel... < 1334473134 235758 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :(not actually yet) < 1334473136 641807 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i think the fox just died from biting me < 1334473138 261606 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :ais523: is there a server running the most recent NH4? < 1334473138 830982 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Elbereth? < 1334473143 816696 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh elbereth < 1334473145 41724 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :forgot about that < 1334473154 90289 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ELBERETH MAKES THE GAME BROING < 1334473156 765338 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :shachaf: Not at this time. But if I do, how to connect (including terminal modes and so on)? < 1334473161 483429 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :a elbereth gilthoniel! < 1334473169 260000 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :zzo38: telnet nethack.alt.org < 1334473186 420926 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :silver pen mire owl < 1334473201 944892 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :riggfhtghtt?? < 1334473214 925588 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what shachaf fails to realise is that i am the pinnacle of nethack comedy < 1334473218 983997 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: Will you watch my game? < 1334473221 58340 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :awwww yeah < 1334473235 201906 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: do you have a game < 1334473246 551715 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: If I have one will you wahfhchatchchh < 1334473249 992267 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yes < 1334473256 648392 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :WHERE am the SHOPS!!!! < 1334473258 217085 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: I have a game. < 1334473261 629791 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Sned me mail:_( < 1334473265 334864 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: come on that's like watching a stupid person and an awesome person simultaneously!!! < 1334473266 634431 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :im the best < 1334473272 859946 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: do you have any advice for me in this tough situation < 1334473278 618764 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: By the way, I pressed 'y' on the "pick for me" screen. < 1334473292 838439 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :what tough situation? < 1334473297 868457 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, did you die and start again? < 1334473306 977071 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf is competing against me :( and also i can't find the things on the level < 1334473314 365640 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, may I show someone else your game? < 1334473315 736774 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, search the right end of the rightmost room < 1334473321 364288 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Sgeo: no its absolutely forbidden (yes) < 1334473328 726624 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :not 100% that the door's there, but above 50% < 1334473336 599480 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :why do first-sacrifice gifts vary so wildly in quality? < 1334473358 925716 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: i dont think its here :'( < 1334473372 830213 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :search the north wall of that room then < 1334473380 589170 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yaaaey < 1334473381 686074 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :aha < 1334473386 236788 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :I mean, snickersnee is kind of lame < 1334473390 382418 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: advice pls:( < 1334473392 361460 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :might as well get excalibur < 1334473439 284037 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :help < 1334473452 190173 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :mjollnir is situational < 1334473464 422287 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :and Cleaver's also pretty bad < 1334473494 228924 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :WAIT < 1334473499 518706 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: Should I set up INTERHACK < 1334473501 570287 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: Should I set up INTERHACK < 1334473503 336064 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: Should I set up INTERHACK < 1334473505 348905 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :zzo38: Should I set up INTERHACK < 1334473507 175566 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Sgeo: Should I set up INTERHACK < 1334473507 975197 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :What is INTERHACK? < 1334473508 243617 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :shachaf: no, it's out of date < 1334473511 964027 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :HELP < 1334473519 669652 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i drunk frmo a fountain four times and now im help < 1334473521 995334 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: How can you be out dater than NetHack? < 1334473527 564917 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: why were you drinking from a fountain? < 1334473533 828686 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: refreshing < 1334473538 652194 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :im < 1334473541 397825 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :sensing the presence of monsters < 1334473546 918483 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :shachaf: First you have to answer a question what is INTERHACK before I answer your question too < 1334473558 452870 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :is this good or bad < 1334473559 603825 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i cant tell < 1334473570 334926 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :zzo38: Ask ais523. < 1334473571 233649 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net JOIN :#esoteric < 1334473573 154993 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :zzo38: a telnet client designed specifically for playing NetHack < 1334473582 625289 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that tries to maintain information about the game but sucks because it uses regexes for parsing < 1334473587 889195 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: it's about neutral < 1334473594 932131 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :that's how ESR parses things < 1334473596 440530 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :it can't be bad < 1334473600 687756 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :he wrote the book on how to be a hacker!!! < 1334473620 636434 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :help < 1334473622 524137 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :is neko dead < 1334473658 693399 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nooooOOOOoooooooooOOOooooooooooo < 1334473664 544776 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :in fact, why do so many terrible artifacts exist? < 1334473668 330730 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, you're not Dudley, are you? < 1334473687 925959 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :elliott: did neko leave a corpse? don't let it go to waste < 1334473697 279705 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :they woke up :') < 1334473701 666334 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :don't eat domestic animal corpses < 1334473703 933872 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :monqy's advice sounds like bad advice < 1334473714 69797 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i remember when id id that < 1334473714 853607 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it was fun < 1334473715 764079 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :ais523: What happens in this game if you do? < 1334473715 960651 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ESR parses with regexes? seriously? < 1334473721 437473 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :he didn't in C-INTERCAL < 1334473724 870316 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :HLEP < 1334473729 186090 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :zzo38: nothing, the information's just displayed in a more convenient way < 1334473731 143714 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I just meleed floating eye < 1334473733 416901 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I die... :-( < 1334473740 420477 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf..................... < 1334473743 813458 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :no................................ < 1334473749 160488 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :shachaf: Then don't do that next time < 1334473757 901494 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :zzo38: But it was accident. :-( < 1334473762 705065 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: still meleeing with your scalpel? :) < 1334473773 320647 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: hey it worked much better than whatever i was using before < 1334473783 593943 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Potion of healing? < 1334473788 567532 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I imagine so. < 1334473794 340831 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :no that broke < 1334473799 660716 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :oh god my computer is linking clang < 1334473808 425897 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :also ais523, you didn't answer my question earlier < 1334473810 846074 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :mmm < 1334473812 131594 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :the king of lin < 1334473812 959130 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :partly eaten lichen corpse < 1334473817 436819 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :coppro: which? < 1334473818 13952 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :is there an up-to-date NH4 server running somewhere? < 1334473825 593549 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, no, there isn't < 1334473828 225965 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hopefully there will be soon < 1334473834 839322 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :HELP WHERE'S CAT < 1334473843 452796 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :CAT IS DEAD < 1334473843 969139 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :great, your client is perfectly working ais523 :) < 1334473845 617421 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :LONG LIVE CAT < 1334473863 379045 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :http://news.ycombinator.com/item?id=923660 < 1334473901 262940 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :HELP < 1334473935 560193 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :can i berfiend the h < 1334473938 20905 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Hey, PacifistRobin is playing! < 1334473947 689549 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: Watch PacifistRobin < 1334473947 866703 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: not easily < 1334473957 545110 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you need to micromanage your pets as a healer and ge them to do the fighting early < 1334473963 968366 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :as you can't win many combats by yourself < 1334473968 995171 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that's why I thought you'd find this Fun < 1334473971 712453 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :its ok i ran away by holding down the h key really fast < 1334473976 323964 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :shachaf: is pacifistrobin you? are you pacifistrobin? < 1334473977 160604 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: but i just lost my pet!!! < 1334473980 479492 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i dont know WHERE they wente < 1334473987 566355 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :monqy: maybe :( < 1334474017 601155 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nobody has sent me mail in like < 1334474019 632867 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :1000 turns :( < 1334474046 224827 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :can i heat hobbit corpsen < 1334474084 960381 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@time elliott < 1334474085 491288 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for elliott is Sun Apr 15 08:15:16 < 1334474100 514125 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :CAN I EATEN HOTTIBETEN CORPSEN < 1334474133 914567 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :if you want to < 1334474148 660647 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :: ( < 1334474155 743502 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i killed it < 1334474161 859987 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oyu should eat it < 1334474170 65436 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it didn't become corpse < 1334474205 336348 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :http://geekz.co.uk/lovesraymond/archive/show-them-the-code < 1334474209 146443 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, you should know not to eat zombies < 1334474223 169664 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i dont really know anything < 1334474225 707002 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :oh man < 1334474227 746137 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: is this enjoyable by the way < 1334474230 724451 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :clang finished linking1 < 1334474270 196253 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :OH BOY < 1334474277 178324 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it's a floating eye! < 1334474279 641737 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :maybe i'll melee it < 1334474282 822262 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :elliott: I can't tell, I'm doing too many things at once to isolate the enjoyment im deriving from watching you play nethack < 1334474292 345966 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :how fatal is that usually < 1334474293 96956 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i forget < 1334474303 105815 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, grid bugs are deadly < 1334474311 273279 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :At least after you melee a floating eye < 1334474326 945351 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :awesome < 1334474344 267854 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :oh and then after the meanies on HN made fun of his code, he wrote a pompous blog post about how his way is right http://esr.ibiblio.org/?p=1387 < 1334474374 569613 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Sgeo < 1334474375 513491 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i said what < 1334474376 84694 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :"CORRECTION: The snotty kid (or snotty-kid soundalike) isn’t from Y Combinator. That’s actually a relief – I know Paul Graham, I like Paul Graham, and the crew around him usually has more sense." < 1334474380 101224 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :yes < 1334474382 595249 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :bffs < 1334474384 616460 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, you said something liek it exists < 1334474453 674226 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oops < 1334474458 866259 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oops < 1334474460 224260 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oops < 1334474463 273332 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :help < 1334474465 980206 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :can i pray in the middle of a thing < 1334474468 22601 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :rip < 1334474493 993963 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::'( < 1334474508 213740 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, the new John Egbert? < 1334474509 90327 :MoALTz_!~no@host-92-2-134-59.as43234.net JOIN :#esoteric < 1334474515 305284 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :what < 1334474521 773381 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :whos that < 1334474538 731702 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :its a pop star < 1334474540 354398 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :like zed shaw < 1334474542 983383 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :I was going to send a mail with < 1334474543 899819 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :or hannah montana < 1334474544 76817 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :aw, jettyplay seems to freeze after i select rawdata :( < 1334474546 668883 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :hi ~monqy < 1334474546 976849 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote zed shaw < 1334474555 847797 :HackEgo!codu@codu.org PRIVMSG #esoteric :561) elliott_, oh they are people known in the ruby community? Vorpal: Uh... you mean Hannah Montana? elliott_, yeah. And Zed Shaw. Either they are that or they come from popular culture. < 1334474576 627794 :MoALTz!~no@host-92-8-147-252.as43234.net QUIT :Ping timeout: 250 seconds < 1334474588 429597 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok im going to play as a wizard < 1334474590 746107 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: wizards are fun right < 1334474598 369573 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :they can be < 1334474598 547767 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :ok fine < 1334474603 133413 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :quite squishy early < 1334474604 210927 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :i will add bronchodilators to my <3 list < 1334474607 979582 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :chaotic female orcish wizard < 1334474614 961682 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :lol orc wizard < 1334474616 160804 :coppro!~scshunt@denardo.csclub.uwaterloo.ca PRIVMSG #esoteric :good luck < 1334474649 692889 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :a cream pie on my FIRST TURN??? < 1334474654 812739 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :thinsg are lookin g good for ehird the evoker < 1334474693 255628 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :http://hannahmontana.sourceforge.net/ < 1334474707 854770 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: But iwantntt a cmreal pie :( < 1334474719 805843 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: canivehave creamrpie :( < 1334474720 352020 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :btw < 1334474725 119916 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i don't know how to cast spells properly < 1334474728 941195 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i know you zap wands and shit but that's about it < 1334474734 554061 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: It's like zapping. < 1334474737 150363 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :"Q : Will you be supporting other computer architectures like AMD64, SPARC, MIPS? < 1334474739 370421 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Except it's Zapping. < 1334474740 878105 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :" < 1334474754 709787 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :It's either z or Z < 1334474757 846280 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :To zap a spell < 1334474761 929447 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :ACTION is helpful! < 1334474764 273417 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :yeah why can't i run hannah montana linux on my sgi indy < 1334474769 403016 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :THAT'S NOT FAIR < 1334474801 769547 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Sgeo: HOW MANY TIMES HAVE YOU ASCENDED NETHACK, MR HELPFUL < 1334474825 860694 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :I have a good game going on NAO that I started a few years ago! < 1334474829 436091 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i < 1334474835 156756 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :don't want to zap my wand of secret door detection < 1334474836 154005 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :The sad thing is I'm not even joking. < 1334474838 653627 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i want to zap my wand of hurt things < 1334474871 710046 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :help!! < 1334474872 51477 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :For what it's worht I always bplay withzards < 1334474875 830801 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hwo do i use my spell boks < 1334474882 902097 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, read them < 1334474892 988446 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :After you forgot what they say < 1334474894 399795 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :Not before < 1334475113 927015 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :sgeo < 1334475116 264033 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i read the bellbok < 1334475120 581522 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :but im still cant force bolt < 1334475131 768980 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :Z < 1334475132 947196 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :or z < 1334475136 926431 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :I'm pretty sure < 1334475151 627471 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :Z < 1334475151 935489 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :its Z tahkno you < 1334475160 606191 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :I said that before < 1334475172 281874 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :so you select spell (green mark) and cast it with z, right? < 1334475184 90757 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :take that innocent goblin < 1334475227 824688 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :almost kicked my cat oops < 1334475263 477438 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :aw cmon < 1334475266 689178 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :my cream pie was poisoned? < 1334475341 664723 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :mmm < 1334475342 928835 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :acid blob < 1334475351 885732 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :yummy < 1334475483 793363 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :whats flail < 1334475522 594597 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: :'( < 1334475544 265168 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :hi < 1334475546 763479 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :whats flail < 1334475548 138778 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :a weapon < 1334475556 85651 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :thgansk < 1334475719 867105 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oopse < 1334475732 329553 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :how do you cure that, < 1334475742 652649 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: how do i cure deathly sick food pois < 1334475767 573179 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :maybe a poition? < 1334475789 391340 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :do you have any? < 1334475826 13812 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :;__; < 1334475828 19252 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :im so lonely < 1334475829 761964 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :not even any mail < 1334475857 364076 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :FoodPois < 1334475862 112005 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I don't think you want mail. < 1334475865 742818 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Did you try praying? < 1334475869 703587 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Don't you have a full healing potion? < 1334475877 181205 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :no that was uh < 1334475878 518181 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :in a past life < 1334475890 108828 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what! < 1334475908 406180 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :severe < 1334475919 736082 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: try praying < 1334475923 488990 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :if you have no better options < 1334475924 385335 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: can I snedndd you mailol now :( < 1334475936 303967 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :otherwise, eucalyptus leaf, or sufficiently strong healing potion < 1334475938 429668 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: too busy dying frmo my illness < 1334475938 696108 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: Instead of praying, he just did nothing for N turns until dying. < 1334475950 974299 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i thought my health would go down first!!!! < 1334475951 954419 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh < 1334475956 888090 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :no, it's an instadeath < 1334475996 297160 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: hoow entertnainingnggg. :( < 1334476020 983610 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok this time im play as chaotic monk < 1334476108 700850 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what! < 1334476109 782045 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :im a monk < 1334476113 687263 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :were suppsed to pray regualrlyl < 1334476308 597126 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yessss < 1334476313 921913 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: is hallu yiur favourite thing < 1334476314 672022 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :its mine < 1334476323 925554 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :oh wow < 1334476326 399447 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :great stuff < 1334476373 666900 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :00:52 < asdfasdf> pl (\x= x+1) < 1334476424 423428 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :00:53 < asdfasdf> pl \x -> x+2 < 1334476448 545163 :MoALTz_!~no@host-92-2-134-59.as43234.net QUIT :Ping timeout: 250 seconds < 1334476472 185817 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy should i kill the shk < 1334476486 795320 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :can you < 1334476502 450025 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :is the shope good < 1334476502 912975 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523 < 1334476504 857926 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :can i kill the shk < 1334476506 222525 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :i dont know much about nethacke < 1334476613 457584 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523 < 1334476613 856924 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i < 1334476616 220056 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :want to kill the shke < 1334476621 764733 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :kill it kill it < 1334476628 978843 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliottte < 1334476636 230042 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :youe aree thee shke < 1334476663 341258 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: you will probably fail if you try < 1334476667 977305 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :the INVISIBLE shopkeeper??? < 1334476670 981329 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :without some dedicated shk-killing kit < 1334476672 723562 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i don't know if i can handle an invisible shopkeeper < 1334476737 700611 :MoALTz!~no@host-92-2-129-109.as43234.net JOIN :#esoteric < 1334476754 206359 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: dide youe diee < 1334476762 242037 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes < 1334476762 704175 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@time < 1334476763 634881 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for elliott is Sun Apr 15 08:59:54 < 1334476774 629858 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net PRIVMSG #esoteric :one more game < 1334476795 107864 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@time monqy < 1334476796 41282 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for monqy is Sun Apr 15 00:59:55 2012 < 1334476798 650576 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :whoah < 1334477670 715268 :KingOfKarlsruhe!~chatzilla@p5B133CA9.dip.t-dialin.net JOIN :#esoteric < 1334477904 54011 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net QUIT :Quit: hello < 1334478998 898216 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :How was elliott killed by a wand? < 1334479038 799708 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :Well, that's silly. < 1334479040 651092 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :waht < 1334479054 394880 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net PRIVMSG #esoteric :I don't usually expect 3 inches of snow in April. < 1334479064 940061 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i emant < 1334479065 457429 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :sgeo < 1334479097 419 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :elliott, your death screen said killed by a wand < 1334479102 529489 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :This may have been a whloel ago < 1334479103 389748 :Sgeo!~sgeo@ool-ad034d00.dyn.optonline.net PRIVMSG #esoteric :while < 1334479171 382696 :Tiktalik!tikfreenod@unaffiliated/tiktalik NICK :Sleeptalik < 1334479369 673452 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ah < 1334479370 690445 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :the shk < 1334479374 486348 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :killed me < 1334479476 402163 :azaq23!~derivecto@unaffiliated/azaq23 JOIN :#esoteric < 1334479981 334435 :Madoka-Kaname!~moe@inportb/loli/cirno-chan PRIVMSG #esoteric :Legendary miners in Minecraft are SCARY < 1334480736 238262 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I try to decide what the law of counterpoint :: x -> f (f x); will be; perhaps this: contramap counterpoint . counterpoint = id = contramap counterpoint . ccmap counterpoint (where ccmap = contramap . contramap) < 1334480841 639188 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :But if that is the law, then, I don't know which (if any) of the instances I have will follow such laws, except Finalize which is trivial < 1334481247 68822 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :One instance I did have I removed since I know is wrong; the instance for Const < 1334481779 592092 :KingOfKarlsruhe!~chatzilla@p5B133CA9.dip.t-dialin.net QUIT :Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643] < 1334482781 256575 :zzo38!~zzo38@24.207.49.17 QUIT :Remote host closed the connection < 1334482842 643136 :Ngevd!~Taneb@host-78-146-175-182.as13285.net JOIN :#esoteric < 1334482851 999472 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :Hello! < 1334482923 525409 :MoALTz_!~no@host-92-2-133-83.as43234.net JOIN :#esoteric < 1334482937 725307 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hi Ngevd < 1334483000 1379 :MoALTz!~no@host-92-2-129-109.as43234.net QUIT :Ping timeout: 250 seconds < 1334483130 552920 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: please help me figure out what to make of this edit http://esolangs.org/w/index.php?title=Talk:DNA-Sharp&curid=2722&diff=31925&oldid=31923 < 1334483169 894275 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :put an {{unsigned}} on it < 1334483184 365008 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that's a response, not a making! < 1334483193 831911 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well, I think he's trying to agree with you < 1334483195 691944 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :in an annoyed way < 1334483201 785323 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm interpreting it as "yeah :(" < 1334483206 69282 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@time elliott < 1334483206 952849 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for elliott is Sun Apr 15 10:47:17 < 1334483207 371298 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@time < 1334483210 841372 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for shachaf is Sun Apr 15 02:46:47 2012 < 1334483214 480450 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: make meo got sle pp :( < 1334483221 920144 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: but i was like, totally helpful! :''( < 1334483223 274163 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: slep < 1334483228 813901 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: no. < 1334483228 991073 :Taneb!~Taneb@host-78-146-175-182.as13285.net JOIN :#esoteric < 1334483239 478190 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :shachaf: are you tired? < 1334483241 891750 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: slep < 1334483243 147520 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: slep < 1334483243 590941 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: slep < 1334483244 35843 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: slep < 1334483244 298120 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: Yes. < 1334483248 78349 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: nononono < 1334483252 404372 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: /kick shachaf slep < 1334483256 839404 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :shachaf: do you think that if you attempt to go to sleep, you will? < 1334483267 715995 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: I don't know. < 1334483275 932898 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :aren't you /really curious/ to find out? < 1334483284 165676 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :exciting science possibility < 1334483288 947004 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :hi science < 1334483290 339795 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :oops :( < 1334483300 14318 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: hlep, , mem geto fffff hi < 1334483302 755570 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :plsz < 1334483309 853172 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: /kick shachaf slep < 1334483318 704025 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: /kick me :( < 1334483326 452971 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :me isn't even in the channel! < 1334483327 641193 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: he seems tired enough that he'll fall asleep at the computer if he doesn't go to bed < 1334483328 746058 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :If you kick me it won't make me go to sleep any faster. < 1334483344 130763 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: IS THAT A CHANNELGE < 1334483348 568999 :Ngevd!~Taneb@host-78-146-175-182.as13285.net QUIT :Read error: Connection reset by peer < 1334483351 995342 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :shachaf: don't take it as one < 1334483352 898878 :Taneb!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :FINALLY < 1334483355 768449 :Taneb!~Taneb@host-78-146-175-182.as13285.net NICK :Ngevd < 1334483358 229489 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: no that's his poor imitation of monqy's style < 1334483364 765718 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ngevd: u realise u can /ns ghost ???? < 1334483368 413807 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :/ns ghost ngevd password < 1334483373 235577 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I careth not! < 1334483378 239458 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I enjoy playing the waiting game < 1334483382 759143 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :"I careth" :-( < 1334483382 936107 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: anyway, if you kick him he might shut up about wanting to be kicked :P < 1334483402 725618 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Ngevd: lernnrl2 enlgishsihs < 1334483412 52811 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Itsitstsi plsplelttt "care" < 1334483415 758845 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :shachaf: why don't you tell Ngevd your IRC password so he can refuse to ghost you? < 1334483420 694944 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :(Seriously, "careth" is wrong.) < 1334483427 60247 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Ngevd: My IRC password is hi monqy < 1334483436 142610 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :I feel bad every time I type it. :-( < 1334483448 545253 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :No it isn't < 1334483456 14083 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :you found me out :( < 1334483467 814321 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf's account name is Shachaf < 1334483468 860930 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :just sayin < 1334483479 428531 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Ngevd: you tried? :) < 1334483502 605729 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I ALWAYS TRY < 1334483502 903014 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: can you op me? < 1334483503 958826 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Doesn't nickserv tell you when someone tries and fails to ns identify as you? < 1334483506 337944 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :just for five seconds or so < 1334483512 71876 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :FOR I AM NGEVD < 1334483516 31908 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: I can, but I have the feeling it would be a bad idea < 1334483522 580702 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :ais523: DO IT < 1334483523 693383 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :shachaf: only tries and succeeds, IIRC < 1334483523 870413 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: come on, i'm responsible! < 1334483528 193457 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :Life is for adventures. < 1334483534 460424 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'm even a lambdabot admin! < 1334483540 114387 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: you're acting like kerio, stop it < 1334483541 542264 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@admin - elliott < 1334483544 276997 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::( < 1334483549 702993 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf isn't a lambdabot admin. < 1334483552 163309 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :he is a fake lambdabot admin. < 1334483556 642743 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you should kick him for abuse of fake powers. < 1334483565 686878 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@admin + elliott < 1334483586 40973 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: That worked? < 1334483590 703976 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :@flush < 1334483603 968309 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@msg #esoteric /op elliott < 1334483604 321825 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :/op elliott < 1334483606 142333 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what! < 1334483608 120634 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you can't do that, that's a side effect! < 1334483609 433910 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :@type Just < 1334483610 493391 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :forall a. a -> Maybe a < 1334483617 616953 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: you can't op someone with a privmsg < 1334483620 615708 :ChanServ!ChanServ@services. MODE #esoteric +o :lambdabot > 1334483620 956512 NAMES :#esoteric < 1334483628 551853 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@msg ChanServ op #esoteric elliott < 1334483637 903581 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@raw MODE #esoteric +b elliott < 1334483638 364473 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Maybe you meant: faq map rc read run yow < 1334483642 871860 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wait < 1334483644 223583 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :+b isn't +o < 1334483646 927379 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :good thing that didn't work < 1334483654 285419 :ChanServ!ChanServ@services. MODE #esoteric -o :lambdabot > 1334483654 331489 NAMES :#esoteric < 1334483655 365324 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :@msg ChanServ kick shachaf slep < 1334483657 165518 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh come on < 1334483660 663555 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :It would have been funny if it did < 1334483667 208611 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: you are missing the point of @/msg/ < 1334483669 504147 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it sends /messages/ < 1334483673 526161 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: yes? < 1334483675 27840 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :kick, ban, op, etc aren't messages < 1334483675 848381 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i was messaging chanserv < 1334483677 743553 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes they are < 1334483680 767869 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :if you're a chanserv op < 1334483685 149793 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: lambdabot isn't on the access list < 1334483691 899650 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes, but i had to try :( < 1334483692 76976 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so can't send commands through chanserv < 1334483704 590 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you should put lambdabot on the access list < 1334483706 169033 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i mean, it's lambdabot! < 1334483766 723078 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :lambdabot: how predictable ! < 1334483774 731792 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :hi monqy < 1334483827 398885 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :enigma contains different floors ! < 1334483841 156765 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(note: I recently discovered that this is actually a misquote, the original quote had no punctuation) < 1334483845 878209 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(but who cares, it's a great misquote) < 1334483906 915410 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: how about opping me for less than a second? that's not enough time to do any mischief < 1334483932 641526 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :elliott: How about ZERO SECONDS < 1334483945 346476 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :shachaf: I thought you *wanted* to be kicked. < 1334483948 362720 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Not that I would kick you. < 1334483952 378908 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Just commenting. In general. < 1334484015 379405 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: Op me so I can kick anyone who kicks shachaf. < 1334484022 555858 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :See, that's public defense... < 1334484025 50321 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*defenke < 1334484047 816506 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"As a side note, I seem to remember their being a message that came up when I created my account in saying accounts got deleted if the user didn't log in within 30 days (or something along them lines)." er... < 1334484067 182281 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: do we have a message along those lines? < 1334484072 656962 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: in which context? Esolang? < 1334484077 938419 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes < 1334484081 288889 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :not that I know of < 1334484087 512515 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION greps http://esolangs.org/w/index.php?title=Special%3AAllMessages&prefix=&filter=all&lang=en&limit=5000 < 1334484090 542730 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's possible there's a secret one, though < 1334484104 880925 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nope, nothing like that on allmessagse < 1334484208 558232 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: hey, would it violate our privacy policy to disclose the last time someone logged in? < 1334484226 327421 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :not sure, what /is/ our privacy policy? < 1334484237 879553 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it might violate UK law, if we don't explicitly say we're going to do that, though < 1334484247 334603 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: we don't have one; in fact, i explicitly removed a redlink to one from the footer < 1334484261 237377 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, but the record was made when Graue owned the site < 1334484281 430568 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh well, "they haven't used that accoutn since 2009" seems harmless and vague enough to me < 1334484283 108924 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, right, you can't (in the UK) disclose private info about someone without warning them before you collecte dit < 1334484283 285860 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*account < 1334484285 497959 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it might violate UK law, if we don't explicitly say we're going to do that, though < 1334484289 833987 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*collected it < 1334484293 55628 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric : it might violate UK law, if we don't explicitly say we're going to do that, though < 1334484296 300532 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :are you an amnesiac? < 1334484301 499900 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :no, Konversation bug < 1334484305 734170 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :not quite bug, but big usability problem < 1334484311 444646 :cheater__!~cheater@g230225011.adsl.alicedsl.de JOIN :#esoteric < 1334484317 788786 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :in that a trivial typo just before I press return leads to copying recent previous lines < 1334484322 425559 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :with no way to undo it < 1334484331 839589 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :have you not noticed me randomly repeat lines before? < 1334484338 476612 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i just assume you're weird < 1334484357 239750 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it's in the logs now, but "nope, they haven't used that account since 2009" is okay to disclose, right? < 1334484360 858075 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :sometimes I think of using correction stars < 1334484364 311645 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION MUST NOT UPSET HYPOTHETICAL PERSON WHO DOESN'T CARE ABOUT THE WIKI ANY MORE < 1334484364 558907 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: not sure < 1334484372 413504 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: oh, I meant morally-okay, not legally-okay < 1334484376 213862 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I suppose you're a terrible person to ask for that < 1334484380 358709 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you know how ridiculously paranoid I am about that sort of thing < 1334484389 766059 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and yes, I am < 1334484402 334428 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :"has not edited since 2009" is morally OK to disclose IMO, though < 1334484425 720400 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :well, /that's/ a bit obviou < 1334484426 60668 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :s < 1334484455 828748 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :how about "That account hasn't been used in years"? < 1334484468 470350 :derdon!~derdon@p5DE88EFB.dip.t-dialin.net JOIN :#esoteric < 1334484473 779314 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :"has not edited since 2009?" your aliby is a LIE mr. hypothetical. the court must find you guilty < 1334484478 361100 :Slereah_!x@ANantes-259-1-197-170.w90-49.abo.wanadoo.fr JOIN :#esoteric < 1334484543 373567 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :pah < 1334484547 542224 :cheater_!~cheater@g229023164.adsl.alicedsl.de QUIT :Ping timeout: 276 seconds < 1334484558 384721 :Ngevd!~Taneb@host-78-146-175-182.as13285.net QUIT :Read error: Connection reset by peer < 1334484578 615504 :Ngevd!~Taneb@host-78-146-175-182.as13285.net JOIN :#esoteric < 1334484601 999431 :Slereah!x@ANantes-259-1-251-47.w83-195.abo.wanadoo.fr QUIT :Ping timeout: 265 seconds < 1334484742 79461 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :most recent contrib by ais523 is 7th april 2012 about the whole NBF2C.c fiasco < 1334484742 256386 :Ngevd!~Taneb@host-78-146-175-182.as13285.net QUIT :Read error: Connection reset by peer < 1334484757 604938 :Ngevd!~Taneb@host-78-146-175-182.as13285.net JOIN :#esoteric < 1334484798 171152 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :but something is logged on 9th april 2012 where he deleted NBF2C.c < 1334484834 941184 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :deletions are contributions too < 1334484860 194052 :Ngevd!~Taneb@host-78-146-175-182.as13285.net QUIT :Read error: Connection reset by peer < 1334484878 12863 :Ngevd!~Taneb@host-78-146-175-182.as13285.net JOIN :#esoteric < 1334484942 857531 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: wut? < 1334484964 207826 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :oh < 1334484965 460552 :Ngevd!~Taneb@host-78-146-175-182.as13285.net QUIT :Client Quit < 1334484982 398541 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: you could be a deletionist with words like those < 1334485339 808991 :MoALTz_!~no@host-92-2-133-83.as43234.net QUIT :Ping timeout: 250 seconds < 1334485475 180843 :MoALTz!~no@host-92-8-237-165.as43234.net JOIN :#esoteric < 1334486434 758900 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: oh, btw, http://esolangs.org/wiki/Talk:Pict if you didn't see it < 1334486911 371012 :derdon!~derdon@p5DE88EFB.dip.t-dialin.net QUIT :Remote host closed the connection < 1334487508 994369 :KingOfKarlsruhe!~chatzilla@p5B133CA9.dip.t-dialin.net JOIN :#esoteric < 1334488747 488552 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://en.wikipedia.org/wiki/MY_Titanic Apparently there is actually a ship named after Titanic. < 1334488753 94613 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :...In 2009. < 1334489668 658427 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :if it sinks today, it's the perfect celebration of the 100th anniversary < 1334489788 832044 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Anyone own an iceberg? < 1334489905 552820 :shachaf!~shachaf@li227-219.members.linode.com PRIVMSG #esoteric :i am iceberbregegg < 1334490448 334397 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :comex: I think you have a doppelganger: http://www.reddit.com/user/comox < 1334490824 80860 :MoALTz_!~no@host-92-8-237-165.as43234.net JOIN :#esoteric < 1334490955 342240 :MoALTz!~no@host-92-8-237-165.as43234.net QUIT :Ping timeout: 250 seconds < 1334491509 670577 :elliott_!~elliott@95.149.229.194 JOIN :#esoteric < 1334491513 124776 :elliott_!~elliott@95.149.229.194 QUIT :Remote host closed the connection < 1334491517 479194 :elliott_!~elliott@95.149.229.194 JOIN :#esoteric < 1334491531 174485 :elliott_!~elliott@95.149.229.194 PRIVMSG #esoteric :RocketJSquirrel: How much do you need to owe prgmr before they start sending you nastygrams? < 1334491531 351622 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :elliott_: You have 1 new message. '/msg lambdabot @messages' to read it. < 1334491534 611850 :elliott_!~elliott@95.149.229.194 PRIVMSG #esoteric :...just askin; < 1334491535 472844 :elliott_!~elliott@95.149.229.194 NICK :Guest66938 < 1334491541 681213 :Guest66938!~elliott@95.149.229.194 PRIVMSG #esoteric :wat < 1334491553 603605 :Guest66938!~elliott@95.149.229.194 QUIT :Changing host < 1334491553 780847 :Guest66938!~elliott@unaffiliated/elliott JOIN :#esoteric < 1334491567 863694 :Guest66938!~elliott@unaffiliated/elliott NICK :elliott_ < 1334491639 172882 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :the pellet with the poison is in the vessel with the pestle, the chalice from the palace has the brew that is true < 1334491775 481898 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 JOIN :#esoteric < 1334491816 320606 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hi Phantom_Hoover < 1334491819 706303 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'm murdering pyralspite < 1334492125 105141 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :wat < 1334492125 323322 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Phantom_Hoover: You have 4 new messages. '/msg lambdabot @messages' to read them. < 1334492126 194527 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :wju < 1334492162 598180 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'm < 1334492164 355237 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :murdering pyralspite < 1334492674 65906 :hagb4rd!~perdito@koln-5d81f546.pool.mediaWays.net QUIT :Quit: hagb4rd < 1334492716 77460 :hagb4rd!~perdito@koln-5d81ecad.pool.mediaWays.net JOIN :#esoteric < 1334493699 687016 :MoALTz_!~no@host-92-8-237-165.as43234.net QUIT :Ping timeout: 260 seconds < 1334493921 109180 :elliott_!~elliott@unaffiliated/elliott QUIT :Remote host closed the connection < 1334494047 471545 :elliott_!~elliott@unaffiliated/elliott JOIN :#esoteric < 1334494283 97171 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so er < 1334494300 259646 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :does anyone have any idea how to transfer 617 megabytes from prgmr to my machine without going insane < 1334494418 696362 :kmc!~keegan@c-65-96-1-204.hsd1.ma.comcast.net PRIVMSG #esoteric :what is insane about that < 1334494443 269150 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :my internet connection < 1334494444 338481 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :is slow < 1334494459 571546 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and i want to cancel the vps while i owe prgmr $40 rather than $60 < 1334494662 721943 :oklopol!~nnscript@dyn58-57.yok.fi JOIN :#esoteric < 1334494679 950785 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Huh, the last time I was on this computer is when McCarthy died. < 1334494714 134554 :itidus20!~itidus21@120.148.51.163 JOIN :#esoteric < 1334494782 761884 :Deewiant!~deewiant@cs181243217.pp.htv.fi PRIVMSG #esoteric :No more use for the server? < 1334494821 537804 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: Well, I'm not paying for pyralspite *and* solidity. < 1334494835 190745 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I can run a Minecraft server on solidity, but I think most people are on Gregor's server nowadays? < 1334494866 850577 :Deewiant!~deewiant@cs181243217.pp.htv.fi PRIVMSG #esoteric :If you have two servers, can't you move your 617 megabytes to the other one? < 1334494947 201830 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: I don't have an immediate use for the 617 megabytes; it's the Minecraft world (plus months of incremental backups). < 1334494966 501624 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I mean, I could move it to solidity, but I'd probably want to move it straight off again to make room. < 1334494975 561661 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(Not that I don't have lots of room free.) < 1334494984 490256 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Also, the privkeys for both are on different computers, and I'm lazy. < 1334495037 38258 :Deewiant!~deewiant@cs181243217.pp.htv.fi PRIVMSG #esoteric :If you just want to get the stuff off pyralspite quickly, solidity seems like the best choice, even if you then slowly transfer it to your own computer immediately thereafter. < 1334495089 881933 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :You and your logic. < 1334495093 138876 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi JOIN :#esoteric < 1334495103 888466 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'd have to fiddle to transfer one of the privkeys safely. :( < 1334495138 874463 :Deewiant!~deewiant@cs181243217.pp.htv.fi PRIVMSG #esoteric :Why'd you get another server anyway? < 1334495168 378311 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Deewiant: The whole "taking over esolangs.org" thing. prgmr is slower than I wanted. < 1334495178 54818 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :And the network connection isn't very good, especially from here in the UK. < 1334495214 292555 :Deewiant!~deewiant@cs181243217.pp.htv.fi PRIVMSG #esoteric :So where's solidity at? < 1334495222 186986 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Linode. < 1334495225 396795 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Home of stolen bitcoins! < 1334495225 847998 :Deewiant!~deewiant@cs181243217.pp.htv.fi PRIVMSG #esoteric :(Or from, whatever the proper term is.) < 1334495292 659351 :itidus21!~itidus21@120.148.51.163 QUIT :*.net *.split < 1334495292 944804 :oklofok!~nnscript@dyn58-57.yok.fi QUIT :*.net *.split < 1334495293 379451 :lambdabot!~lambdabot@li85-105.members.linode.com QUIT :*.net *.split < 1334495309 443997 :pikhq_!~pikhq@71-219-232-21.clsp.qwest.net QUIT :Ping timeout: 245 seconds < 1334495401 621306 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :minecraft/old/old-backup-system/old-backup/ < 1334495405 685926 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :What a great directory name. < 1334495650 987676 :lambdabot!~lambdabot@li85-105.members.linode.com JOIN :#esoteric < 1334495661 185643 :pikhq!~pikhq@71-219-225-216.clsp.qwest.net JOIN :#esoteric < 1334495665 69843 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: is your internet connection so slow that 617MB will not be done before you have to pay more for your VPS? < 1334495715 206367 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :minecraft.tar.xz 3% 28MB 365.5KB/s 35:14 ETA < 1334495718 221608 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :'tis not, apparently! < 1334495758 815917 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :btw, I think you can do server-to-server scp nowadays, might only require having keys on the client that starts the transfer < 1334495943 481759 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :hmm, I wonder what this message means... "error: error running non-shared postrotate script for /var/log/acpid of '/var/log/acpid '" < 1334495954 693146 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it had an error < 1334495981 612349 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :yeah, it should've just said "error: error" < 1334496271 226613 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :ah, it's trying to send SIGUSR1 to acpid, but acpid is not running < 1334496346 620637 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :oh, it's ... not even installed < 1334496735 333376 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :lol < 1334497036 334529 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :I had about a million packages in that "removed with residual config files" state < 1334497216 439757 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :what distro are you using? < 1334497226 160383 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :ubuntu < 1334497325 81820 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :I tried it once and didn't really like it. Too heavy < 1334498111 101072 :derdon!~derdon@p5DE88EFB.dip.t-dialin.net JOIN :#esoteric < 1334498307 146406 :MoALTz!~no@host-92-2-131-188.as43234.net JOIN :#esoteric < 1334498440 2113 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :are thewre < 1334498460 341104 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :does someone want to adopt a server < 1334498464 927558 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i feel so bad about putting it down < 1334498468 740662 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :*there any amigaOS, morphOS or AROS users? < 1334498493 300987 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :elliott_: specs? < 1334498493 627006 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :cpressey used amigaos < 1334498507 588485 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nortti: uhhhhhhhhhhhhhhhh not very speccy < 1334498514 570356 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it's just a $20/mo VPS from prgmr < 1334498523 279948 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :but i love it < 1334498523 632391 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :all < 1334498524 161012 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :the < 1334498524 517873 :elliott_!~elliott@unaffiliated/elliott PRIVMSG #esoteric :same < 1334499364 78703 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :But he's rabid. < 1334499406 737067 :itidus20!~itidus21@120.148.51.163 NICK :itidus21 < 1334499597 632053 :elliott_!~elliott@unaffiliated/elliott QUIT :Quit: Leaving < 1334499686 678177 :KingOfKarlsruhe!~chatzilla@p5B133CA9.dip.t-dialin.net QUIT :Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643] < 1334499718 15836 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It is done. < 1334499770 456881 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :nortti: I have used RiscOS < 1334499774 595478 :sebbu2!~sebbu@ADijon-152-1-54-2.w83-194.abo.wanadoo.fr JOIN :#esoteric < 1334499776 162233 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but a really long time ago, can't remember much about it now < 1334499777 44214 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: You're a man now, Elliott. < 1334499780 987043 :sebbu2!~sebbu@ADijon-152-1-54-2.w83-194.abo.wanadoo.fr QUIT :Changing host < 1334499781 163913 :sebbu2!~sebbu@unaffiliated/sebbu JOIN :#esoteric < 1334499781 604111 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :it bothers me that the progress bar of a youtube video is not related to horizontal letterboxing of a youtube video < 1334499785 666975 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: I haven't killed it yet. < 1334499789 209603 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Just copied its memory. < 1334499793 640999 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Like a real mad scientist. < 1334499795 705875 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's what my primary school used, back before Windows had really caught on < 1334499797 839803 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: You're not a man yet, Elliott. < 1334499821 793644 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :just had to get that off my chest < 1334499825 997372 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: What's the URL for prgmr management... < 1334499838 40796 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: ssh < 1334499859 147807 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: No, I mean, the page with all the billing stuff. < 1334499863 726196 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Oh < 1334499872 849617 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :I forget :) < 1334499880 523889 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :they should do that over ssh too :) < 1334499917 978923 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :That would require PayPal-over-ssh :P < 1334499933 436035 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :paypal? seriously? < 1334499959 608241 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: billing-external.prgmr.com < 1334499959 874792 :sebbu!~sebbu@unaffiliated/sebbu QUIT :Ping timeout: 246 seconds < 1334499964 501496 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :in general they should have an option to letterbox the youtube videoplayer interface when it is windowed mode, so that you don't have to spend screen realestate on the letterboxed bits < 1334499970 641879 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :ais523: We already had this argument, let's not deja vu. < 1334499973 261295 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Ah, https://billing-external.prgmr.com/ < 1334499976 723970 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Thanks in the past RocketJSquirrel < 1334499984 651634 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but the outcome was awesome enough that I don't care < 1334500003 657914 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :itidus21: YouTube tell people not to upload with letterbox bars already on the encode < 1334500006 917613 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but they do anyway < 1334500019 857408 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: There seems to be no way to cancel an account through this interface >_> < 1334500183 577962 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :ais523: Do you know what version it ?was < 1334500194 904915 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :*was? < 1334500197 169307 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :nortti: of what? < 1334500201 738805 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :also, weird typo < 1334500218 570142 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :RISC OS < 1334500224 362702 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :no, I don't < 1334500230 349208 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I was pretty young then < 1334500248 393254 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it was back when RISC OS was actually a viable choice for the primary OS of an organisation < 1334500311 50216 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :yeah. I am thinking about using it as my main os for some time after it gets ported to Raspberry Pi < 1334500380 141407 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :from what I remember and what I've heard about it, it doesn't seem that unviable, but the filename conventions are bizarre by modern standards and nothing understands them, and I doubt application availability is too great atm… < 1334500390 284529 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :ais523: this is basically what i have in mind http://oi42.tinypic.com/1949sh.jpg < 1334500424 907538 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :notice how nice it looks having the toolbar lined up with the letterboxing.. either that or i'm a tad mad < 1334500434 620699 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :netsurf runs on it and so does gcc < 1334500447 876234 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :itidus21: then why is the letterboxing there at all? < 1334500466 22337 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :hmm < 1334500495 46113 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and actually, I prefer it to be the whole width < 1334500502 309520 :hagb4rd!~perdito@koln-5d81ecad.pool.mediaWays.net QUIT :Disconnected by services < 1334500502 880676 :hagb4rd2!~perdito@koln-5d81e52f.pool.mediaWays.net JOIN :#esoteric < 1334500519 938384 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :a video I'm watching at the moment is using less than a third of the width, if the seek bar were a similar proportion seeking would be three times as difficult < 1334500526 646917 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :lol < 1334500544 431132 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: HOW DO I CANCEL X_X < 1334500552 510817 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :you... ask a good quetsion.. why IS the letterboxing there at all >.> < 1334500562 328861 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: You can check out any time you want, but you can never leave. < 1334500589 904194 :hagb4rd2!~perdito@koln-5d81e52f.pool.mediaWays.net PRIVMSG #esoteric :hotel california < 1334500596 684646 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :ais523: ok ... i'll let it go right now < 1334500601 739462 :hagb4rd2!~perdito@koln-5d81e52f.pool.mediaWays.net NICK :hagb4rd < 1334500752 316485 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :ais523: do you know that RISC OS has no memory protection and it uses co-operative multitasking < 1334500753 967042 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Come ooon, I don't wanna gotta email support about this. < 1334500759 313036 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :They'll be all "WHY DID YOU PAY TWO MONTHS LATE" < 1334500770 870817 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :speaking of curious gui design decisions, firefox recently started displaying images in the center instead of the top-left. < 1334500771 588172 :cheater__!~cheater@g230225011.adsl.alicedsl.de QUIT :Ping timeout: 276 seconds < 1334500870 838342 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :nortti: no but I'm not surprised < 1334500916 352345 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :itidus21: like every recent image viewer? < 1334500968 972348 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :ais523: I don't really think that is a really bad thing but many people disagree and have laughed at me after I told them that about RISC OS < 1334500971 592737 :cheater__!~cheater@g230225011.adsl.alicedsl.de JOIN :#esoteric < 1334500998 810930 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :meh, win3.1 is coop multitasking with no memory protection too, IIRC < 1334501003 770472 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and it's entirely usable < 1334501061 435250 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Uhh, no. < 1334501069 253378 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Windows 3 is preëmptive. < 1334501071 221930 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :ais523: and so is system 1-Mac OS 9 < 1334501124 955494 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :RocketJSquirrel: ah, OK < 1334501187 214671 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the docs I was working from were written as though cooperative versions of Windows were still in use < 1334501570 167437 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :anyway, IMO, preëmptive multitasking is just a workaround for buggy programs < 1334501577 327535 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and cooperative would be better if programs were written correctly < 1334501591 985991 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(wow, we both diaresised the e independently? I didn't check to see if you'd done it until after I did) < 1334501592 201916 :variable!root@freebsd/developer/variable NICK :invariable < 1334501594 698715 :invariable!root@freebsd/developer/variable NICK :const < 1334501615 960268 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :ais523: Welcome to #esoteric . < 1334501623 256947 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :indeed :) < 1334501625 443849 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :ais523: I am thinking about writing my own hy < 1334501684 869340 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: cancel my prgmr for me thanks < 1334501688 779557 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :-hy+hobby os the way it uses co-operative multitasking, but it can preempt task that is not respondig/giving up cpu time < 1334501715 323751 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :nortti: That is how all preëmptive OSes work. < 1334501799 629663 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it'd be silly if processes had to go into a busyloop waiting to be preëmpted < 1334501819 208449 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hmm, is the opposite of preëmptive coöperative? < 1334501972 550045 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :RockeJSquirrel: no. it will have clock inteerupt incrementing counter and if it reaches 16 for example it sensd plesase give up cpu time signal to the program and if it doesn't do it for another 16 clock interrupts it will be marked not respondig and then it will be preempted, but program can give up cpu at any time if it wants < 1334501985 547837 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :*sends < 1334502021 352001 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :nortti: SIGXCPU works pretty much exactly like that in Linux (although it gets killed, not pre-empted) < 1334502022 762960 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :nortti: OK, so what you've added to a preëmptive system is a nag signal. < 1334502033 968461 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :bleh, I broke the chain < 1334503124 46965 :Patashu!~Patashu@c122-106-155-219.carlnfd1.nsw.optusnet.com.au QUIT :Quit: MSN: Patashu@hotmail.com , Gmail: Patashu0@gmail.com , AIM: Patashu0 , YIM: patashu2 , Skype: patashu0 . < 1334503196 830654 :Capster!~ujjaq@24.157.218.97 JOIN :#esoteric < 1334503214 365961 :sebbu2!~sebbu@unaffiliated/sebbu NICK :sebbu < 1334503341 282073 :MSleep!~fyrc@c-174-55-44-190.hsd1.pa.comcast.net NICK :MDude < 1334503629 278466 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`welcome Capster < 1334503634 939551 :HackEgo!codu@codu.org PRIVMSG #esoteric :Capster: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: http://esolangs.org/wiki/Main_Page < 1334504153 409235 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :http://www.osnews.com/comment.php?news_id=25818 < 1334504680 88598 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Ohyeah, so the final report is almost exactly seven hours of battery life during video playback. < 1334505259 708085 :asiekierka!~asiekierk@178235039209.elblag.vectranet.pl QUIT :Remote host closed the connection < 1334505451 524565 :cheater__!~cheater@g230225011.adsl.alicedsl.de QUIT :Ping timeout: 276 seconds < 1334505506 392534 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://stackoverflow.com/questions/10162297/i-need-to-create-a-tic-tac-toe-game-on-c-with-gui-can-someone-tell-me-what-i < 1334505510 928756 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'm about to delete this question. < 1334505517 631754 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Everyone enjoy it while it's still there. < 1334505558 235487 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*poof* < 1334505601 238791 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :delete, not just close? < 1334505675 160343 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It was already closd. < 1334505676 430439 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*closed. < 1334505710 715990 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :I missed it :( < 1334505719 924018 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Other than the broken grammar in the title, I know of nothing wrong with it. < 1334505726 446349 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Don't worry! < 1334505737 871329 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://ompldr.org/vZGR2Yw/stackoverflow.com-q-10162297.html < 1334505739 517861 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I AM HERE TO HELP < 1334505758 116763 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :lol < 1334505758 885172 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(Yes, the entire question body is inexplicably in a blockquote tag.) < 1334505780 626678 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(ompldr happily serves up raw HTML???) < 1334505783 700412 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(That's as useful as it is insecure.) < 1334505803 630421 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: exactly equal? < 1334505815 80741 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's both useful and insecure, but it'd be a huge coincidence if it were both in equal ammounts < 1334505857 410370 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :It's not /enormously/ insecure, it's not like you could ompload PHP and it'll just run on the server. < 1334505879 437196 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :It's just a same-origin-policy issue. < 1334505901 25881 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: Exactly equal! < 1334505914 279694 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: Weeell, let's put it this way < 1334505932 962529 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://ompldr.org/vZGR2Yw <-- do you expect clicking this link might lead you to a javascript nastygram? < 1334505940 943146 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Right, exactly. < 1334505944 317091 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Or Last Measure? < 1334505950 535781 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Wait, that /is/ a javascript nastygram. < 1334505959 4647 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Or Goatse? < 1334505961 312954 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Oh wait < 1334505964 744979 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: More of a "same trust" issue than a same origin policy issue :P < 1334505971 525003 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Fair enough. < 1334505979 928875 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :And yeah, yeah, but a billion popups are worse than one distended anus. < 1334505986 469132 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you could steal sessions with it, presumably? < 1334505996 64045 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: I don't think ompldr has any sessions. < 1334505996 533574 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :not sure if an ompldr session is worth anything < 1334505997 947207 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :`addquote a billion popups are worse than one distended anus. < 1334506002 27304 :HackEgo!codu@codu.org PRIVMSG #esoteric :835) a billion popups are worse than one distended anus. < 1334506032 181219 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: I specifically crafted that to get quoted but you have to obey the RULES dammit < 1334506073 470084 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :is there a way to browse trought those quotes? < 1334506078 845955 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`pastequotes < 1334506081 964431 :HackEgo!codu@codu.org PRIVMSG #esoteric :http://codu.org/projects/hackbot/fshg/index.cgi/raw-file/tip/paste/paste.3288 < 1334506088 267444 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506088 671667 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506089 70150 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506089 470844 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506089 863188 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506096 744709 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: wait, do we do 4 or 5? < 1334506108 32779 :HackEgo!codu@codu.org PRIVMSG #esoteric :803) BF derivatives are a cancer running throughout the fringes of the esolang community, and as the fringes vastly outweigh the core, we're screwed. < 1334506113 938737 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: 5 < 1334506119 605925 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :how can you fail to remember that? < 1334506137 76298 :HackEgo!codu@codu.org PRIVMSG #esoteric :Failed to clone the environment! < 1334506138 512068 :HackEgo!codu@codu.org PRIVMSG #esoteric :420) You just went from "no sexualized ads" to "we have ads for dildos, but they're different for ads for Orangina" X-D < 1334506139 140272 :HackEgo!codu@codu.org PRIVMSG #esoteric :129) Gregor-P: I don't think lambda calculus is powerful enough < 1334506144 1034 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :>_< < 1334506154 778096 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: If you used Transactional HackEgo... < 1334506163 378365 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506164 211059 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506170 860042 :HackEgo!codu@codu.org PRIVMSG #esoteric :346) I just thought you might have meant the Ramanujan tau and I was WOAH he weilds heavy weapons < 1334506174 776946 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: (then it would never clone the environment, and thus there would be no bugs) > 1334506359 587333 JOIN :#esoteric < 1334506359 835900 :glogbot!codu@codu.org JOIN :#esoteric < 1334506359 837466 :kornbluth.freenode.net NOTICE #esoteric :[freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp < 1334506360 370991 :HackEgo!codu@codu.org JOIN :#esoteric > 1334506363 732976 JOIN :#esoteric > 1334506364 249714 JOIN :#esoteric < 1334506382 263292 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :why do the ID's change all the time? < 1334506388 584404 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nortti: because they're just based on file position < 1334506392 833755 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so deleting a quote renumbers all the ones after it < 1334506399 518183 :Capster!~ujjaq@24.157.218.97 PART :#esoteric < 1334506399 926877 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: a prefix of a hash could work, yes < 1334506417 158639 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :first five base-36 digits of an sha sum, say < 1334506419 854987 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506420 199119 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506420 559194 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506420 927694 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506421 536835 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506442 54453 :HackEgo!codu@codu.org PRIVMSG #esoteric :711) the parser would be even simpler if I didn't try to do type inference in it < 1334506442 389132 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :what would happen on hash collision? < 1334506454 88334 :HackEgo!codu@codu.org PRIVMSG #esoteric :121) AnMaster: intercal-72 c-intercal clc-intercal j-intercal yes all versions all versions < 1334506454 310277 :HackEgo!codu@codu.org PRIVMSG #esoteric :696) VMS Mosaic? I hope that's not Mosaic ported to VMS. Hmm. It's Mosaic ported to VMS. < 1334506454 470433 :HackEgo!codu@codu.org PRIVMSG #esoteric :247) mtve, now he's an expert idler. mtve: kitty kitty kitty < 1334506454 470575 :HackEgo!codu@codu.org PRIVMSG #esoteric :430) decrypt 'illustrates the "can do" approach of conservatism in a patriotic way' < 1334506454 933492 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nortti: I think that would be pretty unlikely. < 1334506472 413335 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :247 is worst in that set < 1334506493 961665 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :711 is funny, 121 is fungot-amusing, 696 is funny, 247 is... yeah, not that good, although the image amuses me < 1334506494 121202 :fungot!~fungot@a91-152-37-146.elisa-laajakaista.fi PRIVMSG #esoteric :elliott: here, i'll prove it, too, will take what i can get a little of that back with them, dromiceiomimus < 1334506498 491588 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :121 is pretty low-quality for fungot, though < 1334506498 651276 :fungot!~fungot@a91-152-37-146.elisa-laajakaista.fi PRIVMSG #esoteric :ais523: this, my friends, is the malaise of the glutton at life's buffet, building complicaters? domino frustraters? wobbley times u.s.a.? um, maybe if i told his jokes < 1334506501 295581 :RocketJSquirrel!codu@codu.org JOIN :#esoteric < 1334506503 997846 :glogbackup!~glogbacku@64.31.59.246 JOIN :#esoteric < 1334506507 159813 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and 430 is a direct Conservapedia quote, which is totally cheating, but I guess we'll have to live with it < 1334506558 895791 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :https://github.com/farbrausch/fr_public whoa < 1334506566 776007 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: meh, I'll roll again out of stubbornness < 1334506567 532830 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506567 837778 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506568 214603 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506568 566407 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506569 47157 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506581 590588 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :without deleting 247? < 1334506584 40310 :HackEgo!codu@codu.org PRIVMSG #esoteric :352) boston cream pie? sounds related to a cleveland steamer < 1334506588 301379 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :or is it good enough to keep? < 1334506595 476827 :HackEgo!codu@codu.org PRIVMSG #esoteric :664) "Facekicker" Hird is a member of the Hird family Ngevd, world-renowned detective. < 1334506596 627612 :HackEgo!codu@codu.org PRIVMSG #esoteric :587) You mean it'd be Tau Zero but without the spaceship? < 1334506597 784421 :HackEgo!codu@codu.org PRIVMSG #esoteric :500) [2008] i'm testing Haiku and it appears that it is a major shit 5+7+5, not 5+11, nooga < 1334506598 451364 :HackEgo!codu@codu.org PRIVMSG #esoteric :780) "Category 4 ("professional") fireworks are for sale only to fireworks professionals. They have no restrictions," OK I need to become a pyrotechnician. Phantom_Hoover: that's like wanting to become a locksmith so that you can legally own lockpicks Did I mention when I wanted to become a locksmith? < 1334506601 852267 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: I don't dislike any of them strongly enough to delete now < 1334506616 627867 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :352 and 780 are naff < 1334506628 278006 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :bleh, is there any way to adblock a favicon? < 1334506633 562194 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what < 1334506636 116580 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :WAI HALLO THAR < 1334506649 795598 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: I use adblock and noscript as generalised annoyance-blockers < 1334506657 254069 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but this favicon is pissing me off, and adblock can't aim at it < 1334506662 489478 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :When are favicons annoying < 1334506663 698930 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :what < 1334506666 904393 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :what does it show < 1334506685 800074 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it shows < 1334506686 416701 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :death < 1334506687 15785 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :itself < 1334506689 291481 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's animated < 1334506706 7388 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :OK, I can get rid of it in the URL bar by editing the URL < 1334506709 182318 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :but not the copy in the tab < 1334506718 314253 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :meh, let's try this again < 1334506718 964410 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506719 328808 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506719 785836 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506720 680392 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506722 551012 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506731 989775 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it's getting harder, which means either the quotes are getting better, or my standards are getting lower < 1334506744 464697 :HackEgo!codu@codu.org PRIVMSG #esoteric :814) Lent is a bad habit that people find very difficult to give up. < 1334506753 704639 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::D < 1334506781 489852 :HackEgo!codu@codu.org PRIVMSG #esoteric :419) * perlmonkey is pursuing the line of reasoning that eating raw foods can improve cognitive function perlmonkey, well, it certainly makes you think about what you'd rather be eating. < 1334506781 649530 :HackEgo!codu@codu.org PRIVMSG #esoteric :159) you should be eating corpses more < 1334506781 815569 :HackEgo!codu@codu.org PRIVMSG #esoteric :92) oklopol geez what are you doing here ...i don't know :< i actually ate until now, although i guess i also did other things... < 1334506782 400032 :HackEgo!codu@codu.org PRIVMSG #esoteric :185) catseye: Please wake up. Not recorded for this timezone. The big spider is not your dream < 1334506795 339282 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :haha at the juxta of 419 and 159 < 1334506806 667386 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 159 < 1334506809 325641 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :not haha at 159 itself, alas < 1334506815 971762 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :although I suspect I'm to blame for that one < 1334506819 620723 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's a clear NetHack reference < 1334506820 236595 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* you should be eating corpses more < 1334506828 455548 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so it's only funny to people who don't know the context < 1334506832 874801 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :elliott, how the hell did you not eat corpses all the time? < 1334506848 386478 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506848 888857 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506849 697766 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506850 185953 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506850 833989 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506854 965429 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: are you /sure/ it's 5? < 1334506856 357844 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I keep doing four < 1334506858 355461 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :I compulsively eat everything I kill, unless it's a lichen, in which case I pick it up. < 1334506859 505673 :HackEgo!codu@codu.org PRIVMSG #esoteric :216) oerjan: What, can girls aim their penises better? < 1334506862 414102 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: yes < 1334506871 251115 :HackEgo!codu@codu.org PRIVMSG #esoteric :491) itidus20: i saw a dancing cgi skeleton named malaria. i danced and played with him. < 1334506874 445832 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :why is HackEgo < 1334506874 446000 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so < 1334506874 446107 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :slow < 1334506879 476533 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i remember malaria! < 1334506884 778680 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so do I! < 1334506885 183243 :HackEgo!codu@codu.org PRIVMSG #esoteric :259) who is guido van rossum you could say he's a man who grew a beard but acquired none of the associated good properties < 1334506885 381360 :HackEgo!codu@codu.org PRIVMSG #esoteric :256) ais523: Maybe it is better, because I don't think the octopus will live very well in the tree. But the difference is that the Internet is lying and you cannot see such things; you could make modified picture, though, in order to lie more clearly, at least. < 1334506888 165373 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that was the old old monqy < 1334506888 661707 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :i dont < 1334506892 877881 :HackEgo!codu@codu.org PRIVMSG #esoteric :37) i'm my dad's unborn sister < 1334506893 974608 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :before he got corrupted into old monqy by bad influences < 1334506907 785241 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I don't like 259 or 37 < 1334506912 941400 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :the other three are good < 1334506931 877157 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :259 is good, 37 is bad but traditional < 1334506932 323830 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm < 1334506953 843908 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :"traditional" is a reason to keep quotes? < 1334506959 292977 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes! < 1334506960 426237 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :bah, if this doesn't turn up a really crap one I'm going to go on an indiscriminate quote massacre: < 1334506961 912566 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506962 397395 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506962 851250 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506963 243945 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506964 629252 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334506981 777259 :HackEgo!codu@codu.org PRIVMSG #esoteric :803) the allocation is done by the "Dynamic" in DRAM before that we used SRAM where everything was preallocated in the factory olsner: So what's this SDRAM then? fizzie: synchronized, it's for multithreading < 1334507004 796605 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :I remember that one < 1334507009 845900 :HackEgo!codu@codu.org PRIVMSG #esoteric :672) That was me being *nice*. I could have made the request by word of mouth to my My Little Pony toys and it would count. < 1334507010 51079 :HackEgo!codu@codu.org PRIVMSG #esoteric :787) the possession of diamonds by the bourgeois is more about establishing their bourgeoisness more than wanting a malleable metal oops i forgot i said diamonds instead of gold < 1334507010 317293 :HackEgo!codu@codu.org PRIVMSG #esoteric :666) It's missing the "bear scat showing a diet of prime numbers" picture. < 1334507011 24751 :HackEgo!codu@codu.org PRIVMSG #esoteric :191) fizzie: I can never tell with OpenBSD! everything looks like an error anyway < 1334507031 207824 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :787 is pretty bad < 1334507038 880551 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and I don't get 666 < 1334507051 287192 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 666 < 1334507053 318033 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :not funny out of context < 1334507057 572739 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :also, demonic < 1334507065 894623 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* It's missing the "bear scat showing a diet of prime numbers" picture. < 1334507078 805662 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334507079 359342 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334507079 825725 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334507080 289755 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334507080 656283 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334507086 15586 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what a wonderful way to wile away an afternoon this is < 1334507103 858018 :HackEgo!codu@codu.org PRIVMSG #esoteric :785) elliott: to be honest, it doesn't exist in a state of almost perpetual stalemate, and expands to a larger board and more exotic collection of what he refers to as a thermal hull, instead of some kind of clock pun. no, dammit, will this breakfast injure his shrill, bearded, scraggly old men in space. jade's radioactive, omnipotent, space-warping dog named... < 1334507120 569091 :HackEgo!codu@codu.org PRIVMSG #esoteric :523) what i mean by afk is i can see how dumb it is.. ill make a coffe instead < 1334507129 717611 :HackEgo!codu@codu.org PRIVMSG #esoteric :816) Phantom_Hoover: gsi-ffs.scm just has a tendency to give procedures meaningful, spelled out, names, unlike " fnord)" < 1334507135 557620 :HackEgo!codu@codu.org PRIVMSG #esoteric :23) IN AN ALTERNATE UNIVERSE: In an alternate universe, I would say "In an alternate universe, ehird has taste" < 1334507136 900742 :HackEgo!codu@codu.org PRIVMSG #esoteric :284) 320 quotes and still not a funny one yet! < 1334507152 874666 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :multiple ones need to go there < 1334507160 64765 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm < 1334507161 553874 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :284: now even funnier? < 1334507166 741246 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :actually, I feel like keeping 284 because of the incrongognointosity < 1334507170 2527 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :of the quote number < 1334507170 297969 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :so < 1334507172 264770 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 523 < 1334507177 663354 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* what i mean by afk is i can see how dumb it is.. ill make a coffe instead < 1334507190 188115 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok someone else spin the slot machine this time < 1334507202 446890 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :`quote < 1334507204 41954 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :`quote < 1334507204 567433 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :`quote < 1334507205 102243 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :`quote < 1334507205 287321 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :`quote < 1334507208 938925 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :thanks oklopol < 1334507210 786324 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you're a real pal < 1334507213 347778 :HackEgo!codu@codu.org PRIVMSG #esoteric :24) so i can only conclude that it is flawed, or the world is utterly bonkers < 1334507218 870062 :HackEgo!codu@codu.org PRIVMSG #esoteric :78) I used to have salt licks for my horses. They would make cool abstract sculptures with them. < 1334507228 290198 :HackEgo!codu@codu.org PRIVMSG #esoteric :449) Dear eHow: Please don't assume that my toilet works like that Or, at least, my toilet looks different < 1334507229 906179 :HackEgo!codu@codu.org PRIVMSG #esoteric :243) are you always careful to have a small enough margin so that it can't contain the proof? nddrylliog: i usually use latex, and make sure my hd is almost full < 1334507231 409459 :HackEgo!codu@codu.org PRIVMSG #esoteric :Failed < 1334507241 963061 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :that last one isn't funny at all < 1334507244 746003 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delete Faile < 1334507247 795705 :HackEgo!codu@codu.org PRIVMSG #esoteric :​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: delete: not found < 1334507249 9342 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*delquote < 1334507250 801173 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334507254 69920 :HackEgo!codu@codu.org PRIVMSG #esoteric :373) sgeo do you actually know what sex looks like i am just checking here I think so < 1334507264 994302 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 78 < 1334507268 381922 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* I used to have salt licks for my horses. They would make cool abstract sculptures with them. < 1334507419 386825 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: You should spin it! < 1334507620 61111 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Spin what? < 1334507648 261936 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :HackEgo. < 1334507697 856124 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :scroll up man! < 1334507710 683965 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :ais523: http://alpha61.com/primenumbershittingbear/ is kinda what it referred to. < 1334507743 819460 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It's Exactly What It Says on the Tin. < 1334507764 248397 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I don't quite recall what the "it" was in the context, though. < 1334507776 634678 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Some mirror, I think. < 1334509128 16241 :zzo38!~zzo38@24.207.49.17 JOIN :#esoteric < 1334509139 191882 :Nisstyre!~yours@c-208-90-102-250.netflash.net NICK :TheSussman < 1334509157 148418 :TheSussman!~yours@c-208-90-102-250.netflash.net NICK :Nisstyre < 1334509157 477066 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :?messages < 1334509157 753695 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :You don't have any new messages. < 1334509314 461293 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :ais523: What browser are you using? Some have an option to turn off favicons entirely so that they will not be displayed at all < 1334509498 331374 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: WELCOME TO JAVA < 1334509524 753929 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :zzo38: Firefox < 1334509785 428251 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :You know who we should disown? < 1334509787 779695 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :People who use bold-italics. < 1334509794 812041 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Except when bolding the title of a work. < 1334509850 32441 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :what about doing them as parody? < 1334509865 207760 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric : there's nothing wrong with doing something like this occasionally  < 1334509873 731506 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :except that most clients don't interpret tab as toggle-italic, like Konversation does < 1334510006 747587 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :My client interprets CTRL+B as bold, but doesn't interpret CTRL+I and just displays it "I" black on purple as it does with any unrecognized control character < 1334510040 297438 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :irssi shows I in reverse color < 1334510073 916253 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :seems like I is displayed as I here < 1334510230 460693 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Installin' Debian on my tablet. 'cuz hell yeah. < 1334510294 248512 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: I think parody should be banned, too. < 1334510314 823017 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well it doesn't display bold italics for anyone using a different client to me < 1334510319 938730 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so how can you tell it actually is bold italics? < 1334510324 353684 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I could be spoofing my version string < 1334510727 958830 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :@time fizzie < 1334510729 301257 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for fizzie is Sun Apr 15 20:25:28 2012 < 1334510734 735443 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :@time < 1334510738 32755 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for nortti is Sun Apr 15 23:17:09 2012 < 1334510763 657083 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :oh shit. I think I fucked up my time settings < 1334510812 62461 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :or fizzie did < 1334510879 528928 :cheater!~cheater@g230225011.adsl.alicedsl.de JOIN :#esoteric < 1334511407 375941 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Here it is CTRL+V which shows reverse video (although it isn't really reverse video; it is black on yellow, while normal long-parameter-text is bright blue) < 1334511501 702891 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :@time < 1334511504 895248 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for nortti is Sun Apr 15 23:36:51 2012 < 1334511550 40518 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :@time < 1334511553 332671 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :Local time for nortti is Sun Apr 15 20:37:40 2012 < 1334511566 613328 :Taneb!~androirc@host-78-146-175-182.as13285.net JOIN :#esoteric < 1334511587 595138 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :Hello! < 1334511600 875346 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hi Taneb! < 1334511647 727939 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :bye Taneb < 1334511664 663445 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I'm on my phone < 1334511769 247221 :nortti!~juhani@a88-113-14-106.elisa-laajakaista.fi QUIT :Read error: Operation timed out < 1334511847 687400 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I can IRC and everything < 1334511873 936801 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wow < 1334511964 113128 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :This is The Future < 1334511985 9989 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :ais523, what news on Feather? < 1334511993 852770 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Taneb: none! < 1334511998 446645 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :isn't that encouraging? < 1334512005 380787 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :Yay! < 1334512063 505559 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :It's just like I thought it would be! < 1334512095 201344 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :this is amazing < 1334512107 255803 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I can talk to my phone and it puts it in the chat < 1334512117 797003 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :ha ha ha ha ha ha ha ha ha < 1334512146 174798 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Taneb: try a tonguetwister < 1334512185 528588 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :she sells seashells on the seashore < 1334512188 705318 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :or just try to do my nick through the voice thing, it probably isn't in its dictionary < 1334512197 602565 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :x 523 < 1334512225 174445 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :/close/ < 1334512231 332968 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :can i call you x from now on? < 1334512236 661537 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais is such a mouthful < 1334512236 993128 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :coleridge and < 1334512243 189963 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote coleridge and < 1334512243 738539 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :can you guess is that was meant to be < 1334512246 118354 :HackEgo!codu@codu.org PRIVMSG #esoteric :832) coleridge and < 1334512281 664360 :dbelange!~dbelange@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :`addquote asdfasd;lkfj < 1334512284 686762 :HackEgo!codu@codu.org PRIVMSG #esoteric :833) asdfasd;lkfj < 1334512301 363717 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :that's not a fun depot < 1334512302 664247 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :dbelange: Stop! Drive sideways. < 1334512311 887772 :dbelange!~dbelange@taurine.csclub.uwaterloo.ca PRIVMSG #esoteric :hammertime < 1334512324 820993 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 833 < 1334512327 745244 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* asdfasd;lkfj < 1334512343 799532 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :voice changer to remove ads from transit as well as intended < 1334512355 967534 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 832 < 1334512358 755580 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* coleridge and < 1334512362 722031 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote coleridge and [...] 18<Taneb> voice changer to remove ads from transit as well as intended < 1334512363 943339 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :argh < 1334512366 122441 :HackEgo!codu@codu.org PRIVMSG #esoteric :832) coleridge and [...] .18.<.Taneb.>.. voice changer to remove ads from transit as well as intended < 1334512367 910839 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 832 < 1334512371 55360 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* coleridge and [...] .18.<.Taneb.>.. voice changer to remove ads from transit as well as intended < 1334512375 768504 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote coleridge and [...] voice changer to remove ads from transit as well as intended < 1334512378 720117 :HackEgo!codu@codu.org PRIVMSG #esoteric :832) coleridge and [...] voice changer to remove ads from transit as well as intended < 1334512388 63481 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hmm, that ruins coleridge and :( < 1334512407 407699 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Why does it have the CTRL+C and CTRL+H in your message there? < 1334512429 430750 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :colours < 1334512461 318906 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :the killers dancer in my c*** < 1334512489 119365 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I would suggest with even though I was meant to say try < 1334512509 525211 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I think I'll stick to keyboard input now on < 1334512700 600250 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 832 < 1334512702 68086 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric : the killers dancer in my c*** < 1334512702 811426 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* coleridge and [...] voice changer to remove ads from transit as well as intended < 1334512702 972139 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :WJAT < 1334512705 782966 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Argh. < 1334512706 649620 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote coleridge and < 1334512708 430326 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Caps lock. < 1334512709 764468 :HackEgo!codu@codu.org PRIVMSG #esoteric :832) coleridge and < 1334512712 186285 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote voice changer to remove ads from transit as well as intended < 1334512715 122263 :HackEgo!codu@codu.org PRIVMSG #esoteric :833) voice changer to remove ads from transit as well as intended < 1334512717 392818 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote the killers dancer in my c*** < 1334512721 26655 :HackEgo!codu@codu.org PRIVMSG #esoteric :834) the killers dancer in my c*** < 1334512749 450519 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: i think the caps were appropriate < 1334512750 549885 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :I didn't see the context when I first looked, so I thought he was talking about the Killers song "Dancer in my Cunt". < 1334512756 375573 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :There were so many questions. < 1334512783 218083 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i had to google to check that wasn't actually real < 1334512791 633138 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :just in case < 1334512839 190154 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :doesn't seem like it was < 1334512857 270383 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :l is it real < 1334512869 454533 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I am < 1334512879 938915 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :taneb never stop < 1334512883 481530 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :talking like this < 1334512893 146673 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Breaking news, Taneb 'real'. < 1334512964 163173 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :@pl \n c -> n * 10 + toInteger (digitToInt c) < 1334512964 457881 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :(. (toInteger . digitToInt)) . (+) . (10 *) < 1334512971 772700 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :did you type that with speech < 1334512973 780189 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :please say yes < 1334512983 479722 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :because of how on earth would I do that < 1334513021 432203 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi JOIN :#esoteric < 1334513058 139244 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :indeed < 1334513061 994179 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :I love how it worked at first and then went straight to hell. < 1334513079 845959 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I dont even no idea what I'm saying < 1334513080 166092 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :wait when did it work < 1334513100 694746 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote l is it real I am [...] because of how on earth would I do that [...] I dont even no idea what I'm saying < 1334513104 461733 :HackEgo!codu@codu.org PRIVMSG #esoteric :835) l is it real I am [...] because of how on earth would I do that [...] I dont even no idea what I'm saying < 1334513121 751856 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :apparently it is good idea to have swap turned on when running linux on machine with 64MB of menory < 1334513143 770537 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :*memory < 1334513157 288471 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :apparently :) < 1334513167 184245 :Ngevd!~Taneb@host-78-146-175-182.as13285.net JOIN :#esoteric < 1334513167 682366 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :hang on I have bright idea < 1334513201 98764 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :navajo to f me 1 in 3 people < 1334513210 814318 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote hang on I have bright idea navajo to f me 1 in 3 people < 1334513213 778527 :HackEgo!codu@codu.org PRIVMSG #esoteric :836) hang on I have bright idea navajo to f me 1 in 3 people < 1334513226 886210 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :This speech recognition software does seem rather fond of the profane. < 1334513244 915880 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :profanity specialities < 1334513251 516430 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote profanity specialities < 1334513253 838583 :HackEgo!codu@codu.org PRIVMSG #esoteric :837) profanity specialities < 1334513264 71709 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :It knows it'll disgust him. < 1334513277 148508 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :there must be an easier way to just put everything taneb says in the quote database directly < 1334513330 633734 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: hey, how come sets and relations in type theory end up contravariant only, when they're both covariant and contravariant in set theory? < 1334513345 679438 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I think it's because making them covariant destroys constructivity or something but I'm not sure < 1334513363 272657 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :thank you verse I'm not quite innocent < 1334513367 154923 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: I don't know, don't make me think about it < 1334513421 856152 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: but it's a very special day for thinking about things like that! < 1334513425 976289 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote thank you verse I'm not quite innocent < 1334513428 830706 :HackEgo!codu@codu.org PRIVMSG #esoteric :838) thank you verse I'm not quite innocent < 1334513464 221707 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I don't even know set theory I haven't a clue what is going on < 1334513477 146784 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :wow got that 1 right < 1334513492 122308 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote I don't even know set theory I haven't a clue what is going on wow got that 1 right < 1334513494 800632 :HackEgo!codu@codu.org PRIVMSG #esoteric :839) I don't even know set theory I haven't a clue what is going on wow got that 1 right < 1334513498 95626 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I figure we can just remove the unfunny ones later < 1334513540 821337 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :it's funny what is gay right c*** < 1334513586 745056 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote it's funny what is gay right c*** < 1334513589 512296 :HackEgo!codu@codu.org PRIVMSG #esoteric :840) it's funny what is gay right c*** < 1334513593 881273 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It *is* funny. < 1334513599 624839 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I have no idea what gay right c*** is, to be honest. < 1334513602 704174 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'm not sure I want to know, either. < 1334513627 633113 :Taneb!~androirc@host-78-146-175-182.as13285.net PRIVMSG #esoteric :may I use my phone says it's nick to clarify < 1334513645 682266 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fuck it < 1334513647 42509 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote may I use my phone says it's nick to clarify < 1334513649 859745 :HackEgo!codu@codu.org PRIVMSG #esoteric :841) may I use my phone says it's nick to clarify < 1334513666 484450 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :`pastequotes < 1334513667 535496 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Fine call someone see if they will clarify it for you < 1334513669 410532 :HackEgo!codu@codu.org PRIVMSG #esoteric :http://codu.org/projects/hackbot/fshg/index.cgi/raw-file/tip/paste/paste.9504 < 1334513687 596446 :Ngevd!~Taneb@host-78-146-175-182.as13285.net NICK :ClarifyingNick < 1334513687 756595 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :It might not help much < 1334513712 919341 :ClarifyingNick!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :the gay right c*** was meant to be "It's funny what it can get right and what it can't" < 1334513715 899265 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 831 # VIOLATES GUIDELINES < 1334513718 453779 :HackEgo!codu@codu.org PRIVMSG #esoteric :No output. < 1334513725 416098 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ClarifyingNick: Uh huh. < 1334513733 419434 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ClarifyingNick: Stop trying to cover up your clear desire to know what is gay right c***. < 1334513760 67486 :ClarifyingNick!~Taneb@host-78-146-175-182.as13285.net NICK :Ngevd < 1334513764 497618 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :820) s'f'slg;sd'sdfjhklf;sdklfjdfklgj < 1334513768 929228 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Wh- oh, I added that. < 1334513784 956476 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Let's delete it < 1334513802 743105 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :No! < 1334513805 608515 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It's part of history now. < 1334513811 881112 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Let's delete something someone actually said instead. < 1334513812 543879 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513812 991414 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513813 452292 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513813 867174 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513814 207736 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513824 587698 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net JOIN :#esoteric < 1334513828 503898 :HackEgo!codu@codu.org PRIVMSG #esoteric :170) the pregnant ones are usually taken already. < 1334513832 401768 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :hi monqy we were just having a party < 1334513836 868347 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Yes; it is a part of the history but, it is keep history even if you delete it I think? Isn't it? < 1334513838 913449 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and are continuing to have said party < 1334513847 876775 :HackEgo!codu@codu.org PRIVMSG #esoteric :16) Finally I have found some actually useful purpose for it. < 1334513848 74503 :HackEgo!codu@codu.org PRIVMSG #esoteric :412) It's a Toy Story character, you uncultured fuck. < 1334513858 856871 :HackEgo!codu@codu.org PRIVMSG #esoteric :720) I like category theory because when you get over how damn weird it is it's still weird. < 1334513859 850350 :HackEgo!codu@codu.org PRIVMSG #esoteric :565) I keep asking random people for "friendship " and it's crippling < 1334513865 185534 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :i love parties < 1334513894 330258 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :170 and 720 are boring < 1334513896 457309 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: which one's worse? < 1334513907 245756 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :No, I like those ones < 1334513908 161237 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ACTION looks < 1334513915 136773 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :170 is worse < 1334513922 136103 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :And also 16 and 412 and 565 as well < 1334513925 615099 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :So keep all of them on < 1334513925 779445 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :funny, I thought 720 was worse < 1334513931 99181 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :elliott: what's a toy story character? < 1334513940 250328 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: a Debian release, I think < 1334513950 674668 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :monqy: yeah me too < 1334513953 139409 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 720 < 1334513954 768596 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :"democracy" < 1334513956 421037 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* I like category theory because when you get over how damn weird it is it's still weird. < 1334513965 668629 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513966 98968 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :66 and 69 are pretty lame < 1334513966 260118 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513966 668376 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513967 146830 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513967 577074 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334513982 600232 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :What is the command to insert quotations in a specified numeric position? < 1334513987 627932 :HackEgo!codu@codu.org PRIVMSG #esoteric :80) [Warrigal] `addquote hahaha, Lawlabee is running windows 'cuz it's pretty awesome. [Lawlabee] Warrigal: :( < 1334513997 708019 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :that means... debian has a release that is newer than 1995? < 1334514005 175196 :HackEgo!codu@codu.org PRIVMSG #esoteric :745) Here in Scotland we have a rigorous and well-tested theory of brothels. < 1334514011 275929 :HackEgo!codu@codu.org PRIVMSG #esoteric :623) yes 5 is very infixr < 1334514011 435872 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :zzo38: There is none. < 1334514013 103006 :HackEgo!codu@codu.org PRIVMSG #esoteric :377) scripting language. whole program analysis. together at last < 1334514013 300959 :HackEgo!codu@codu.org PRIVMSG #esoteric :310) elliott: hey, thinking's easier than using the Internet < 1334514019 370209 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :olsner: Wait... < 1334514022 154043 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :elliott: Then let's invent one. < 1334514024 723973 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I love 310 :) < 1334514031 621650 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: How come Debian adopted a Toy Story naming scheme despite being founded a few years before Toy Story came out? < 1334514042 541811 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I mean, who the heck decides "you know this film that JUST CAME OUT? Let's base our naming scheme on its characters -- forever" < 1334514048 686505 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :perhaps they didn't need a naming scheme until it came out < 1334514055 343578 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :then used the film in a hurry < 1334514056 932758 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :then it stuck < 1334514074 429311 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :80 and 623 are rubbish there < 1334514086 690360 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`delquote 623 < 1334514089 687827 :HackEgo!codu@codu.org PRIVMSG #esoteric :​*poof* yes 5 is very infixr < 1334514092 841499 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I read 80 several times trying to understand it, and failed < 1334514101 567067 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :whereas 623 looks like some haskell thing I don't know < 1334514104 187929 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: it's "..." Warrigal: X < 1334514111 525022 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :where "..." = `addquote hahaha, Lawlabee is running windows 'cuz it's pretty awesome. < 1334514119 252255 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and X = :( < 1334514123 284067 :Taneb!~androirc@host-78-146-175-182.as13285.net QUIT :Remote host closed the connection < 1334514124 604868 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I think Debian could not make up release names so they could not make up releases, yet, until they make up Toy Story 3 and then they are able to continue releasing Debian too, they are lucky that works < 1334514129 346344 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yep, I parsed that much, but still didn't understand it < 1334514130 363716 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :zzo38: They... < 1334514132 741450 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :zzo38: I hate to tell you this. < 1334514136 644367 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :zzo38: But they already made up Toy Story 3. < 1334514143 195970 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :zzo38: Two years ago. < 1334514144 272974 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :elliott: I know they did < 1334514147 530140 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Oh. < 1334514148 502225 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :zzo38: pixar, that is, not debian < 1334514151 795032 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :X-D < 1334514156 506879 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :elliott: I didn't mean to say they didn't < 1334514166 19284 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Okay. < 1334514167 332269 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I was confused. < 1334514169 249693 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Irrelevant fact: you can now get Toy Story 3 Lego. < 1334514172 855573 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :hmm, that's a clarification you don't get to use very often < 1334514192 658027 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :A Debian-made Toy Story sequel is something they could make when they run out of names next time, though. < 1334514203 687843 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :It'd be all about Linux-running toys or something. < 1334514209 75753 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Bahahah < 1334514225 469410 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: Dude. < 1334514229 899605 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :We made that joke, like, years ago. < 1334514240 159527 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I think it might have even been you who made it. < 1334514249 315255 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :I... don't recall, but that's no proof of anything. < 1334514268 150011 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`pastlog toy story.*debian < 1334514300 311479 :HackEgo!codu@codu.org PRIVMSG #esoteric :No output. < 1334514306 829616 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`pastlog debian.*toy story < 1334514331 420366 :HackEgo!codu@codu.org PRIVMSG #esoteric :2010-11-05.txt:19:03:25: * Phantom_Hoover realises the Debian releases are named after Toy Story characters. < 1334514339 646207 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Phantom_Hoover: ur stupid < 1334514349 637662 :tswett!~tswett@thay.Stanford.EDU PRIVMSG #esoteric :ais523: well, Dylan said "hahaha, Lawlabee is running windows", and then Lawlabee said "'cuz it's pretty awesome." < 1334514361 422569 :tswett!~tswett@thay.Stanford.EDU PRIVMSG #esoteric :Except that by "it", Lawlabee was referring to something entirely different. < 1334514369 758436 :tswett!~tswett@thay.Stanford.EDU PRIVMSG #esoteric :So when I added that quote, Lawlabee emotifrowned. < 1334514475 729670 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :"emotifrowned" < 1334514506 732910 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote ais523: well, Dylan said "hahaha, Lawlabee is running windows", and then Lawlabee said "'cuz it's pretty awesome." Except that by "it", Lawlabee was referring to something entirely different. So when I added that quote, Lawlabee emotifrowned. < 1334514508 923853 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :why not < 1334514509 774174 :HackEgo!codu@codu.org PRIVMSG #esoteric :840) ais523: well, Dylan said "hahaha, Lawlabee is running windows", and then Lawlabee said "'cuz it's pretty awesome." Except that by "it", Lawlabee was referring to something entirely different. So when I added that quote, Lawlabee emotifrowned. < 1334514551 913784 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :is tswett Warrigal? < 1334514602 159410 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote is tswett Warrigal? < 1334514604 481058 :HackEgo!codu@codu.org PRIVMSG #esoteric :841) is tswett Warrigal? < 1334514607 935337 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ok, time to delete some to make room for that crap < 1334514608 637959 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334514609 68640 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334514610 9812 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334514610 533909 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334514611 21653 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote < 1334514626 718530 :HackEgo!codu@codu.org PRIVMSG #esoteric :334) Oh, Hitler! You and your wacky antics! < 1334514650 705581 :HackEgo!codu@codu.org PRIVMSG #esoteric :351) here's a good multiplication algorithm 1010101 x 110 well I don't know how to do it but it starts like that < 1334514652 114603 :HackEgo!codu@codu.org PRIVMSG #esoteric :570) FFS, building a perpetual motion machine should not be this hard. < 1334514653 603776 :HackEgo!codu@codu.org PRIVMSG #esoteric :261) !bfjoust test (-)*10000 Score for Vorpal_test: 12.9 yay < 1334514655 85775 :HackEgo!codu@codu.org PRIVMSG #esoteric :607) what is nice about a pebble is that you can process it with your brain as a number by simply looking at it < 1334514676 126861 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :!bfjoust test (-)*10000 < 1334514690 338449 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :it's even missing a 0 :) < 1334514690 526775 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for ais523_test: 14.5 < 1334514711 264062 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yay < 1334514720 673481 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it just keeps getting better < 1334514727 396276 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :!bfjoust test (+)*10000 < 1334514732 515117 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for olsner_test: 14.5 < 1334514736 8663 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :What a curveball. < 1334514753 869912 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :!bfjoust test (-)*100000 < 1334514755 677623 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :fizzie: parity compensation < 1334514759 777643 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for ais523_test: 15.2 < 1334514766 99991 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :you'd expect the two paritied versions of the same thing to get the same result < 1334514780 141336 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :except the hill changed < 1334514785 87189 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :because olsner_test got added < 1334514791 499984 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :did those make it to the hill? < 1334514797 576376 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh, really? I'd expect all those to not make it < 1334514799 520225 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :!bfjoust test (>+)*2000 < 1334514802 308097 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for olsner_test: 0.0 < 1334514802 556641 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yikes < 1334514829 60111 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :hmm, did that break some rule and get killed or something? < 1334514837 78643 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :!bfjoust test >(+)*10000000 < 1334514838 323800 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :went off the edge? < 1334514840 566348 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :olsner: that goes off the right end of the tape before the opponent can zero its own flag < 1334514843 704158 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for Ngevd_test: 6.2 < 1334514844 202452 :KingOfKarlsruhe!~chatzilla@p5B132A4B.dip.t-dialin.net JOIN :#esoteric < 1334514846 250404 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :698) elliott: well how will you represent "The dog jumped over the lazy dog" then? < 1334514848 700859 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :this is still beautiful < 1334514864 136431 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :698 is indeed beautiful < 1334514868 43465 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm interested in the context < 1334514869 670752 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`quote 698 < 1334514872 953119 :HackEgo!codu@codu.org PRIVMSG #esoteric :698) elliott, cars aren't perfectly spherical. < 1334514933 358893 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :`quote jumped < 1334514936 504095 :HackEgo!codu@codu.org PRIVMSG #esoteric :697) elliott: well how will you represent "The dog jumped over the lazy dog" then? < 1334514961 205304 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :The quick brown fox jumps over the lazy dog. < 1334514972 117191 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :me too < 1334515083 166830 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Jackdaws love my big sphinx of quartz. < 1334515099 345401 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :what is !bfjoust? < 1334515126 558707 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :nortti: it enters a BF Joust into our running King of the Hill competition < 1334515130 73268 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*BF Joust program < 1334515138 727643 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :there's no penalty for submitting one that fails, it just won't get onto the hill < 1334515149 541473 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :so you need an actually good program to do better than that < 1334515172 374345 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :as in, something rather than nothing < 1334515190 30014 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :stats for how well your program did are available on (HTTP) request < 1334515205 651572 :Ngevd!~Taneb@host-78-146-175-182.as13285.net QUIT :Excess Flood < 1334515256 127265 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :There's also my Page of Plots (tm), I should maybe run it again one day on the current hill. < 1334515326 570768 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :fizzie: did you ever gcolour those things < 1334515343 408518 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :Which were the things? < 1334515397 571700 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i forget < 1334515559 567275 :Ngevd!~Taneb@host-78-146-175-182.as13285.net JOIN :#esoteric < 1334515745 172231 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :fizzie: what's the Page of Plots? < 1334515761 710992 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust >[(>[-]<[-]+[>[-]<[-]+] < 1334515762 67200 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Use: !bfjoust . Scoreboard, programs, and a description of score calculation are at http://codu.org/eso/bfjoust/ < 1334515769 551543 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust asdff >[(>[-]<[-]+[>[-]<[-]+] < 1334515772 248650 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for nortti_asdff: 0.0 < 1334515843 694913 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust asdff >[>[-]<[-]+[>[-]<[-]+] < 1334515846 343347 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for nortti_asdff: 0.0 < 1334515850 82342 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :!bfjoust 1 +[-+]++ < 1334515852 859608 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for zzo38_1: 9.4 < 1334515859 958359 :fizzie!fis@unaffiliated/fizzie PRIVMSG #esoteric :olsner: http://zem.fi/egostats/ but it's out-of-date. < 1334515914 561759 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nortti: your loop is unbalanced < 1334515973 539324 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust ++[+[>-+]>>] < 1334515973 828600 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Use: !bfjoust . Scoreboard, programs, and a description of score calculation are at http://codu.org/eso/bfjoust/ < 1334515989 51334 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust asdff >[>[-]]<[-]+[>[-]<[-]+] < 1334515992 753251 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for nortti_asdff: 17.0 < 1334516000 76841 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust notforlong ++[+[>-+]>>] < 1334516002 772289 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_notforlong: 11.3 < 1334516037 974788 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Is bfjoust with input implemented? Possibly it could be implemented using the same programs but its own scoreboard < 1334516121 482370 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :why can't I find my program on the stats? < 1334516135 193585 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :because it sucked too much and dropped off the hill < 1334516155 779589 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :see also http://codu.org/eso/bfjoust/breakdown.txt after running a program < 1334516164 847300 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :and http://codu.org/eso/bfjoust/egojsout/ for any kind of serious development < 1334516186 70993 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust asdff >[>[-]]<[-]+[>[-]<[-]+] < 1334516190 823290 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for nortti_asdff: 17.0 < 1334516219 106375 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust notforlong ++[+[<+>-][>-+]>>] < 1334516221 826330 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_notforlong: 0.0 < 1334516230 257764 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :i feel silly now with that name :D < 1334516261 810352 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :and more reasons < 1334516265 641530 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RED ALERT RED ALERT I'm about to delete http://stackoverflow.com/questions/10164689/linux-drivers-theory get it while it's hot. < 1334516271 699130 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: Phantom_Hoover: (That means YOU) < 1334516273 953922 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(You, plural.) < 1334516316 763199 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Aaaaaaaaaaaaand... < 1334516322 217772 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :*poof* < 1334516330 697854 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :rest peacefully, linux drivers theory < 1334516333 205114 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :Wow. < 1334516334 387079 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :"you will be missed" < 1334516345 79585 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: wow, that's a troll against Windows that's potentially valid? < 1334516354 258593 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :disguised as an FAQ question? < 1334516359 909608 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(this is not redundant, btw!) < 1334516377 902495 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hiushui +[>+>>->++>>+++>>+>>>+++>>++>>>>+---++>>>>-->>>+++>>>>+] < 1334516381 844163 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hiushui: 0.0 < 1334516391 700352 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :wtf? < 1334516397 259415 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: I cannot claim to know "is". < 1334516398 232813 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :as if i know what im doing < 1334516402 956221 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :It is pure form itself; it has no content. < 1334516413 644065 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I can merely meditate upon its existence. And also delete it < 1334516419 793338 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: I'm trying to work out what your ""is"" is < 1334516428 662530 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well, referring to, at least < 1334516430 597167 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: Bill Clinton once struggled with the same metaphysical question. < 1334516441 970439 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :did he beat it? < 1334516444 680662 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :!bfjoust tibute_to_itidus21 < < 1334516447 530557 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for monqy_tibute_to_itidus21: 0.0 < 1334516461 804812 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: Well, he stopped being President. < 1334516462 921974 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :!bfjoust woops_I_meant_tribute + < 1334516465 783681 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for monqy_woops_I_meant_tribute: 9.8 < 1334516470 657046 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :score! < 1334516474 981603 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :!bfjoust the_old_standby (>)*8(>[+])*21 < 1334516477 844469 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for ais523_the_old_standby: 22.3 < 1334516490 517515 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :if you can't beat that, you should probably think hard about how you design BF Joust programs < 1334516515 254914 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: ("It depends upon what the meaning of the word 'is' is." --Bill Clinton) < 1334516519 743472 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(admittedly, even rule of nine took a few days to discover) < 1334516520 763582 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust counter_tribute_to_tidus ++[[+++>++>][+++<++<]]+ < 1334516523 549652 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_counter_tribute_to_tidus: 9.9 < 1334516527 374485 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: oh, but he just had a single layer of quoting < 1334516533 67930 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I was asking about the meaning of ""is"" < 1334516540 764121 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Oh. < 1334516542 254816 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :(or ((is)) with Underload quoting) < 1334516544 804484 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Well, that's different. < 1334516548 426932 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :indeed < 1334516572 4581 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :Mmmmmmm, orange pez :) < 1334516581 39257 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: The "is" I was referring to was the "is" in your "wow, that's". < 1334516585 14597 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :if you can't tell the difference between ""is"" and """is"""… < 1334516586 381080 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :(i.e. the "is" in "that is".) < 1334516593 166431 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ah, OK < 1334516598 182377 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Thus, I cannot claim to know what that "is" is. < 1334516605 109787 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust perkele [++++] < 1334516607 952366 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for nortti_perkele: 13.3 < 1334516611 949170 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :wft < 1334516619 443770 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :works for truth? < 1334516635 367091 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :!bfjoust perkele_notsuiciding +[++++] < 1334516639 74736 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for ais523_perkele_notsuiciding: 15.5 < 1334516646 1380 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :^ obvious improvement < 1334516662 375044 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :http://stackoverflow.com/questions/10120428/is-it-possible-to-draw-a-graph-using-javascript < 1334516664 309815 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :GET IT WHILE IT'S HOT < 1334516682 435075 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: is there a cost for deletion? < 1334516704 804089 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :A cost? < 1334516713 408993 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :YOUR SOUL < 1334516716 11338 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust perkele [+++++] < 1334516716 919593 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :No. It takes at least three people to delete something. More if the question has more votes. < 1334516717 332893 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :like there is for downvotes < 1334516719 914650 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for nortti_perkele: 15.1 < 1334516721 216226 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ah, OK < 1334516730 195749 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I was wondering if you had to pay in deletons or something < 1334516731 954726 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :deletoids < 1334516734 642717 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :deletelets < 1334516737 239785 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :I'm just going through the "most delete votes" tab in the moderator tools. < 1334516746 755459 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :nice, "can anyone suggest me the proper script.This is a simple one" < 1334516758 116418 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :is there a don't-delete vote to counteract it? < 1334516761 304458 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :elliott: Gettin' a bit power-happy, don'tcha think? < 1334516761 717770 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :olsner: plz send me the codes < 1334516768 700997 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: no, but there's an undelete button afterwards < 1334516771 603007 :ion!ion@heh.fi PRIVMSG #esoteric :“This question was removed from Stack Overflow for reasons of moderation.” < 1334516777 611008 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :RocketJSquirrel: Soon I'll delete *your* *children*! < 1334516785 878345 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ion: TOOOO SLOW < 1334516787 127230 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ion: gah, trying to figure out if that's valid but very bad english, or if it's just wrong < 1334516807 331009 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :there's nothing wrong with that sentence! < 1334516822 847126 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ion: http://ompldr.org/vZGR6NQ < 1334516833 622863 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Annoying that that thing does not save the comments. < 1334516835 368896 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: isn't it equivalent to "this question was removed from Stack Overflow for moderate reasons"? < 1334516852 241520 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: err, only if you deliberately use the wrong meaning of "moderation"? < 1334516869 852853 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: the correct one doesn't fit into the sentence there < 1334516876 527968 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :sure it does < 1334516886 127491 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :there was too much of that question, now there is an appropriately moderate amount of it < 1334516892 948821 :ion!ion@heh.fi PRIVMSG #esoteric :elliott: heh < 1334516965 514889 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui >>>>>>>>>>>>>>>>>+[++>[-]<] < 1334516969 278859 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 0.2 < 1334517014 350332 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :!bfjoust congratulations_itidus21 - < 1334517015 409941 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :In the Dungeons&Dragons game, there is one room I was only able to enter because one of the guards in the arrow slot room knew about lockpicking and had the tools for it (he never exited the guard room). < 1334517017 103866 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for monqy_congratulations_itidus21: 9.7 < 1334517022 768085 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :congratulations itidus21! < 1334517070 486682 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :And I managed to trick a pursuer by teleporting myself to the same location but one minute forward in time. < 1334517071 742279 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :aha < 1334517075 250196 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :i see what i did wrong < 1334517093 175030 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui >>>>>>>>>>>>>>>>>+[++>[<->]<] < 1334517095 944930 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 0.2 < 1334517099 516836 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :dhhh < 1334517109 605904 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :just kidding, of course i didnt < 1334517151 20311 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :does anyone want to tell itidus21 about the rule of 9 < 1334517155 479391 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!help languahes < 1334517156 126310 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Sorry, I have no help for languahes! < 1334517165 569945 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!help languages < 1334517165 845687 :EgoBot!codu@codu.org PRIVMSG #esoteric :​languages: Esoteric: 1l 2l adjust asm axo bch befunge befunge98 bf bf8 bf16 bf32 boolfuck cintercal clcintercal dimensifuck glass glypho haskell kipple lambda lazyk linguine malbolge pbrain perl qbf rail rhotor sadol sceql trigger udage01 underload unlambda whirl. Competitive: bfjoust fyb. Other: asm c cxx forth sh. < 1334517206 236873 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric : I'm misinterpreting your answer as being to my question in an attempt to derail the conversation < 1334517211 2557 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :yes, it's got that bad < 1334517251 582136 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui >>>>>+[+>[<->]<] < 1334517255 202043 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 0.9 < 1334517266 755257 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :ok ill leave it alone < 1334517279 637302 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: by the way, what's the type of a closure? < 1334517282 773472 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :or did i already ask you that < 1334517292 99329 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: function type, typically < 1334517298 956325 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ACTION coughs < 1334517299 896433 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :or thunk type, in languages that have that < 1334517300 56624 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :WRONGE < 1334517335 737551 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :well, if the closure doesn't take arguments, then in a pure language you can't distinguish it from a value < 1334517343 667095 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :which is why function types are so common for closures < 1334517344 181182 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :the type of a closure is ∃s.(s, (s,a) → b) < 1334517616 135911 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui +[-+>[<-+>]<] < 1334517619 931768 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 10.8 < 1334517624 269961 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :ok now I have moved into pedantically nitpicking people's spelling hepl < 1334517644 543978 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm not good enough at trolling to derail a conversation that really badly needs derailing < 1334517655 553651 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what's it about < 1334517664 2906 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :feminism < 1334517671 69628 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I think, at least < 1334517678 739174 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :a discussion about feminism on IRC < 1334517681 466918 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :how could anything possibly go wrong < 1334517701 286944 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :note: it's entirely offtopic, and a very large proportion, possibly everyone, involved is male < 1334517713 371419 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :how shocking :) < 1334517724 452420 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :just /part, that's what I do when conversations are (a) hopeless and (b) hopelessly unstoppable < 1334517731 161181 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and it's got so heated and idiotic that people are repeatedly ragequitting < 1334517741 568937 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I'm hoping to salvage the channel before leave it permanently < 1334517758 213274 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :what channel is it, out of curiosity? I promise not to join :P < 1334517759 298433 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :*more people leave it permanently < 1334517761 993385 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :#tasvideos < 1334517785 12188 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :meh, you can join if you can think of a plausible way to change the subject < 1334517794 434543 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :preferably to something really boring so conversation dies < 1334517801 781109 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :nah, I suspect being witness to that conversation would just annoy me < 1334517896 376334 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :OK, someone's trying to derail the conversation by thinking of even /more/ controversial topics to deflect it onto < 1334517900 443196 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :I, umm, is that a bad idea? < 1334517904 449778 :derdon!~derdon@p5DE88EFB.dip.t-dialin.net QUIT :Remote host closed the connection < 1334517906 936523 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :yes < 1334517907 322644 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :Hello! < 1334517912 914134 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: did you know Intel stands for INTegrated ELectronics???? < 1334517915 928691 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :Intel facts < 1334517919 810142 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :elliott: no < 1334517929 456931 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: now you do < 1334517942 959991 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :how much harm can a long term offtopic do? < 1334517946 849797 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :did you know that AMD stands for Actually, More Daleks? < 1334517958 419653 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :elliott: I think you are wrong about AMD < 1334517961 512862 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric ::( < 1334517961 974309 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :no, presumably because it's false < 1334517969 810117 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :it's okay to know things that are false too! < 1334517971 156131 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :zzo38: I think he's lying, rather than wrong < 1334517972 177040 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :you have to have some variety < 1334517974 870289 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :he might also be wrong, I guess < 1334517989 239425 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :ais523: Even if you are lying, you will still be wrong < 1334518018 511628 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :OK, the going onto even more controversial topics, shockingly, is actually working, because everyone's adopting a parody of a position that basically nobody agrees with < 1334518027 464863 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :is it actually more efficient to know whats true than whats false, or is that a perceptual bias? < 1334518040 927275 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and in the parody one-upmanship, they've forgotten the subject < 1334518041 453334 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :it seems like a bias < 1334518056 640347 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :itidus21: are there more true things or false things? < 1334518075 937353 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :ais523: thats very zen really < 1334518088 274480 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: equal, except on saturdays < 1334518090 460699 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :no, it's more or less the opposite of zen < 1334518093 306498 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :when false things take a slight lead < 1334518104 933622 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :in zen, there is no false, there is no true, there is only oneness < 1334518111 596382 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :`addquote ais523: thats very zen really no, it's more or less the opposite of zen < 1334518115 902774 :HackEgo!codu@codu.org PRIVMSG #esoteric :842) ais523: thats very zen really no, it's more or less the opposite of zen < 1334518188 621416 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :I'd say there are more false things than true things < 1334518198 406177 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :you have too much of a life < 1334518210 712683 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Ngevd: but it's Sunday < 1334518211 699501 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Ngevd: Some things can be neither true nor false < 1334518233 487585 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :For every true thing, there can be many false things < 1334518241 121849 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :However, as both are infinite? < 1334518244 830675 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :Are they both countable? < 1334518271 558582 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ais523: he was just trying to increase the number of false things < 1334518272 661192 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :by saying one < 1334518284 267327 :Sleeptalik!tikfreenod@unaffiliated/tiktalik NICK :Tiktalik < 1334518284 784475 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :surely it exists even if it remains unsaid? < 1334518294 195906 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :how can you be sure? < 1334518304 452802 :oklopol!~nnscript@dyn58-57.yok.fi QUIT :Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com ) < 1334518405 843823 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :What do you know about psychic phenomena? I have heard of various experiences, experiments, and so on. Many fail to find any psychic phenomena, but Kuda Bux could walk on very hot fire that nobody else can. Some people suggest it is a trick, some say it is psychic; but I think the real reason is something unusual about his feet which medical science does not yet know. < 1334518447 24833 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :conciousness itself is probably a psychic phenomena < 1334518449 593818 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :>:) < 1334518472 52370 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :itidus21: Yes, that seems reasonable. But first let me finish by writing more messages, then we will know better. < 1334518573 134518 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :i'm gonna retreat to the tv now < 1334518619 919204 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Someone found a telephone number in a newspaper, of someone claiming to be psychic and no payment required. This was another city. He called the number, and the psychic said, please hang up, write ten yes/no questions which you know the answer to, and call me back tomorrow. He called back, they answered all ten questions correctly without knowing what they are, in the correct order. However, this is an isolated incident so we don't know if it means anything. ( < 1334518675 485645 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :zzo38: was the person who phoned the psychic? < 1334518698 893926 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :ais523: I don't know. < 1334518710 866907 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :that would be a simple enough explanation < 1334518726 760460 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :was the phone psychic < 1334518746 906260 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :Was the person phoned a weird stalker guy with cameras EVERYWHERE < 1334518775 98854 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :Ngevd: UK government? < 1334518781 140 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :POLITICAL COMMENTARY < 1334518786 621144 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :ais523, UK private sector < 1334518791 641764 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :POLITICAL COMMENTARY < 1334518792 201023 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :was the person a giraffe < 1334518796 480482 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :i'm just asking the quesitons nobody has thought of < 1334518798 793621 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :uncovering < 1334518800 847981 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :the trtuhrth < 1334518803 922528 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Ngevd: I think that is even less likely than the other explanations but possible < 1334518838 830246 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :was the person who phoned < 1334518840 648066 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :actually dead < 1334518853 215729 :elliott!~elliott@unaffiliated/elliott PRIVMSG #esoteric :ps. - the answer is 'yes' < 1334518919 500722 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Another thing done was a proper scientific experiment. They made a quantum noise random bit generator, connected to a red and green light. They saw the lights seem equal red/green approx. 50% each with many trials. Later on, a psychic came in and was asked to observe the lights and make it red all the time. It didn't turn out red all the time, but it did come red a statisticly significant 52% of the time. < 1334518954 247723 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :That person needs to try harder < 1334519015 817659 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :(The equipment wasn't faulty; it had been tested.) After that, another one was made up, but instead was recorded on a tape and printed out (the printout was only viewed casually by the scientists, to ensure that the ink is OK); a psychic then came in and was asked to do the same thing (not knowing it was recorded); the same thing happened, and the lights did match the printout. < 1334519119 211237 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :To me, after reading about the first experiment, this is the expected result (due to both spacetime relativity and quantum mechanics). Someone I told this to said he would not expect that; but I would think, spacetime is together rather than separate and relative rather than absolute (something shown by many mainstream experiments in the past). Perhaps this is one of the possible keys to unifying relativity with quantum mechanics. < 1334519162 618563 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :(Note: The report did not mention relativity; or at least, I did not read anything in the report about relativity; I may have not read the entire report. The relativity is my own conclusion.) < 1334519424 210787 :pikhq!~pikhq@71-219-225-216.clsp.qwest.net QUIT :Read error: Operation timed out < 1334519480 83000 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :elliott: I highly doubt the caller was dead. I think the caller is the one who wrote about this; so he may have been lying but not dead. < 1334519538 211684 :pikhq!~pikhq@71-219-234-16.clsp.qwest.net JOIN :#esoteric < 1334519728 80111 :oerjan!oerjan@sprocket.nvg.ntnu.no JOIN :#esoteric < 1334520098 575568 :KingOfKarlsruhe!~chatzilla@p5B132A4B.dip.t-dialin.net QUIT :Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643] < 1334520142 279867 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :did you know that almost half of people are worse at logical thinking than average? < 1334520163 870371 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :nortti: By "average", do you mean the mean or median? < 1334520194 511765 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :Or mode < 1334520256 602948 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :as is x1+x2+...+xn/n < 1334520264 57297 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :Mean < 1334520308 362231 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :*(x1+x2+...+xn)/n < 1334520322 508499 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I didn't know that. < 1334520336 28601 :elliott!~elliott@unaffiliated/elliott QUIT :Read error: Operation timed out < 1334520353 207074 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :But I suppose you are probably correct < 1334520392 209595 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :nortti: is that a joke? < 1334520396 262218 :Ngevd!~Taneb@host-78-146-175-182.as13285.net PRIVMSG #esoteric :So... logical thinking is an approximately symmetrical distribution? < 1334520416 61353 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :itidus21: yes < 1334520458 463505 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :can you sense how almost half of people have a lousier than average intuition? < 1334520488 742061 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: *than median? < 1334520503 274988 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oh no, you're using a different average deliberately for proof of symmetry < 1334520548 517754 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ais523: if your intuition is good enough to distinguish mathematical averages, i'll be impressed < 1334520581 37585 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :oerjan: in very skewed distributions, mode from mean is pretty easy to distinguish intuitively < 1334520590 40917 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :and in distributions with large outliers, median from mean is < 1334520609 303593 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION wonders if anyone has measured the distribution of intuition < 1334520941 718092 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Is it measurable? < 1334520974 87493 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :that was my second wondering. apart from the myers-briggs test (which is only binary for intuition), i don't know < 1334521228 872101 :Ngevd!~Taneb@host-78-146-175-182.as13285.net QUIT :Read error: Connection reset by peer < 1334521345 698501 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm wait it's probably not really binary, it's just that the INTP etc. classes have only N vs. S < 1334521633 179372 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :?dice 1d4 < 1334521633 426154 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :1d4 => 4 < 1334521649 819821 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Is that right? < 1334521662 361418 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :you'd think < 1334521680 435208 :pikhq!~pikhq@71-219-234-16.clsp.qwest.net PRIVMSG #esoteric :TIL: GTK can be switched over to Cyrllic transcription input. < 1334521682 167710 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :?dice 3d6 < 1334521682 414633 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :3d6 => 11 < 1334521689 953867 :pikhq!~pikhq@71-219-234-16.clsp.qwest.net PRIVMSG #esoteric :Cyrillic, too. < 1334521694 564446 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Yes, it is right < 1334521701 637822 :pikhq!~pikhq@71-219-234-16.clsp.qwest.net PRIVMSG #esoteric :Ас ёу цан имагине, тхис веирдед ме тхе фуцк оут. < 1334521760 118489 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :окаё < 1334521805 198127 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :?dice 13d13 < 1334521805 448372 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :13d13 => 64 < 1334521806 666132 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm wait ё is probably yo, not just y < 1334521848 706294 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :?dice 1000000d100 < 1334521849 25331 :lambdabot!~lambdabot@li85-105.members.linode.com PRIVMSG #esoteric :1000000d100 => 50516627 < 1334521979 204078 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :egojsout makes opera use infinite ram :( < 1334521993 262669 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I am advancing a D&D level which skill should I select? < 1334522032 387812 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :rocket science < 1334522045 760787 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :brain surgery < 1334522070 859207 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :There is neither skill < 1334522095 211316 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :brain surgery might be plausible, in a frankenstein monster way < 1334522096 934882 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Profession? Diplomacy? Decipher Script? Spellcraft? < 1334522189 497892 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Actually I already selected Decipher Script and should select one more < 1334522192 983670 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Dire Butterfly Collection < 1334522262 716776 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :whatever you do, don't remove those pins < 1334522284 997955 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :That's good, because I don't have any pins < 1334522309 327954 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :you need pins for dire butterfly collection, duh < 1334522313 46125 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :O, I know which one, I will select Disable Device < 1334522322 818787 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :preferably enchanted ones, i think < 1334522436 149776 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :Recipher Script, for when you realize reading that scroll was a _really_ bad idea < 1334522518 166969 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Which Illithid Savant Extras feature should I select? (Read the current situation if you want; also, I have the text of the Extras features in another file) < 1334522567 459878 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :you're an illithid? < 1334522589 637672 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :oerjan: Read it for full information about the game < 1334522611 987911 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :too lazy < 1334522629 60189 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :OK < 1334522635 668492 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I will ask someone else for suggestions < 1334522679 243559 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :that may be best, as i don't know much more about d&d than what i've learned through d&d comics and a little wikipedia < 1334522724 903148 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :The file "level20.tex" (and its compiled "level20.dvi") describes the complete story and all character sheets; it is possible to learn a few things about a game from such a transcript < 1334522731 767365 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :but there was an illithid in one of them, a fairly evil character < 1334522783 670444 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :actually there was an illithid in oots too but that was just an enemy encountered < 1334522821 369608 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :but yafgc has regular evil characters (but also good ones) < 1334522836 300700 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I have been assigned by a dwarf who freed me from being enslaved by other illithids, and also freed a doppelganger for the same assignment, to find and kill the emerald monster (some kind of demon); who has just been found now. The doppelganger is another player character who has quit < 1334522878 713852 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :(The dwarf was also a slave) < 1334522907 601035 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :This means I have been able to take absolutely nothing when escaping; so I am wizard with no spellbooko < 1334522956 538580 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :NOTE TO SELF: playing TF2 is hard if you don't heat your room. < 1334522998 266555 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :who needs working fingers anyway < 1334523034 533388 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Doing jigsaw puzzles with your feet is cheating! (At least, this is what someone at school once said) < 1334523220 565289 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i don't think it counts if you don't have working fingers < 1334523347 32381 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Do you like some of these ideas for D&D game scenario? < 1334523352 861313 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* The church has run out of money. < 1334523363 562397 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* The king is allergic to magic and wishes all spellcasters (arcane, divine, and psionic) destroyed (including the royal spellcasters). < 1334523379 626329 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* The king wishes to eliminate all beholders from the city, even though only (exactly) half of them have done anything wrong. The problem with this is that there are an odd number of them! < 1334523383 515775 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* Airplanes appear and nobody understands them. < 1334523388 79649 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* The sun rises in the wrong place. < 1334523416 967216 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* A dwarf walks in to a bar (ouch). Heal him, please. (From WoTC forums) < 1334523427 984924 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* Help a beholder find his lost monocle/glasses. (From WoTC forums) < 1334523484 715257 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :* The player character's equipment has been stolen and then another thief has stolen it from that thief too < 1334523743 522295 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION realizes tungsten and rhenium have high enough boiling temperatures that they might _not_ boil on the sun's surface < 1334523754 253130 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :just barely < 1334523799 597320 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :hm wait that ignores pressure < 1334523842 261401 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :ACTION is reading today's iwc annotation < 1334524605 815289 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I have selected "Learn Plans" < 1334524702 19502 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :I found a castle with no windows, and the road that leads to it leads nowhere else; there is dense forest around it. There is no water source either. < 1334524847 18124 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :oerjan: You have answered me before about the counterpoint :: x -> f (f x); stuff; do you know what kind of laws or other thing about it? Does this work? contramap counterpoint . counterpoint = id = contramap counterpoint . ccmap counterpoint (where ccmap = contramap . contramap) < 1334524935 800397 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :i'm sorry, my brain is not sufficiently awake for that < 1334524952 759331 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :What time do you wake up? < 1334524968 56781 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :it's not about sleeping, it's about being tired < 1334524977 322358 :oerjan!oerjan@sprocket.nvg.ntnu.no PRIVMSG #esoteric :(and not from lack of sleep) < 1334525025 830723 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :It resembles one of the monad laws with contramap counterpoint in place of join, counterpoint in place of return, and ccmap in place of fmap. < 1334525051 821982 :MDude!~fyrc@c-174-55-44-190.hsd1.pa.comcast.net QUIT :Quit: later chat < 1334525064 577862 :MDude!~fyrc@c-174-55-44-190.hsd1.pa.comcast.net JOIN :#esoteric < 1334525171 721008 :MDude!~fyrc@c-174-55-44-190.hsd1.pa.comcast.net QUIT :Read error: Connection reset by peer < 1334525188 516062 :MDude!~fyrc@c-174-55-44-190.hsd1.pa.comcast.net JOIN :#esoteric < 1334525812 674939 :hagb4rd!~perdito@koln-5d81e52f.pool.mediaWays.net QUIT :Quit: hagb4rd < 1334525859 877933 :hagb4rd!~perdito@koln-5d81e52f.pool.mediaWays.net JOIN :#esoteric < 1334528896 821635 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Hello < 1334528897 659269 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :OK < 1334529510 831840 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi QUIT :Quit: nortti < 1334529883 122398 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi JOIN :#esoteric < 1334529964 629705 :oklopol!~nnscript@dyn58-57.yok.fi JOIN :#esoteric < 1334529970 785605 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :sidjfidjfkdflewf < 1334529999 813687 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :What is that? < 1334530032 406258 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :it means exactly what it looks like. < 1334530038 195194 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :I think it means "hi" < 1334530044 167364 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :^ < 1334530256 441405 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :i have a lot of fingers < 1334530272 898321 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 PRIVMSG #esoteric :ACTION -> sleep < 1334530273 606910 :Phantom_Hoover!~Phantom@unaffiliated/phantom-hoover/x-3377486 QUIT :Quit: Leaving < 1334530298 185033 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :10 < 1334530301 465241 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :10 fingers < 1334530311 509491 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :that's so many ^^ < 1334530320 109251 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric ::D < 1334530326 393455 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :so fucking many! < 1334530348 312841 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :please comment on the amount of fingers in my hands < 1334530357 898406 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :(all of these fingers are in my hands) < 1334530363 690191 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :(all 10 of them) < 1334530401 183622 :ion!ion@heh.fi PRIVMSG #esoteric :Nine fingers was an awesome Amiga demo. It even ran on the Amiga 500. < 1334530418 50264 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :that sounds even more awesome than 10 fingers < 1334530464 742108 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :please tell me about this amount of fingers < 1334530469 307569 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :in the demo < 1334530655 502283 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :you are eing all < 1334530659 14204 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :asdfljk < 1334530674 774075 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :i think i may be drunk on orange juice. < 1334530689 670558 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :*being < 1334530704 74926 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :i'm gonna sleep, keep up the good work < 1334530721 959506 :oklopol!~nnscript@dyn58-57.yok.fi PRIVMSG #esoteric :the power of continuum will rise again < 1334530901 760276 :ion!ion@heh.fi PRIVMSG #esoteric :Enjoy being locked in your matrix of solidity. < 1334531068 171217 :Patashu!~Patashu@c122-106-155-219.carlnfd1.nsw.optusnet.com.au JOIN :#esoteric < 1334531261 78915 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :`quote < 1334531264 501380 :HackEgo!codu@codu.org PRIVMSG #esoteric :796) fungot: Yeah, "fungott" would [...] remind people of elliott. fizzie: now that could be nice for a simple language can be used < 1334531284 344985 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :`quote < 1334531287 243111 :HackEgo!codu@codu.org PRIVMSG #esoteric :556) i am out of all the fame loops and the australien soap opera loops so much loop / s omcuh < 1334531619 829400 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :`quote < 1334531622 956758 :HackEgo!codu@codu.org PRIVMSG #esoteric :534) software patents strike again that's got to be at least three times, now are they out yet? < 1334531679 255198 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :`quote < 1334531679 958505 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :`quote < 1334531682 477888 :HackEgo!codu@codu.org PRIVMSG #esoteric :570) FFS, building a perpetual motion machine should not be this hard. < 1334531694 987770 :HackEgo!codu@codu.org PRIVMSG #esoteric :267) oerjan: Tell us what (a(b{c}d)*2e)%2 expands to <-- ababcdbcdedbabcdbcdede, i think oerjan: What - the - fuck < 1334531745 240035 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :`quote < 1334531748 240249 :HackEgo!codu@codu.org PRIVMSG #esoteric :141) incest is best < 1334531754 391230 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :`quote < 1334531756 691153 :HackEgo!codu@codu.org PRIVMSG #esoteric :352) 3 = 7/2 < 1334531796 782346 :augur!~augur@208.58.5.87 QUIT :Remote host closed the connection < 1334531814 875333 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :`quote < 1334531818 111367 :HackEgo!codu@codu.org PRIVMSG #esoteric :763) [...] we choose only die fittest people of nigeria [...] < 1334531824 557604 :augur!~augur@208.58.5.87 JOIN :#esoteric < 1334531858 561988 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :`quote < 1334531861 591923 :HackEgo!codu@codu.org PRIVMSG #esoteric :837) I don't even know set theory I haven't a clue what is going on wow got that 1 right < 1334531923 873557 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :most amusing < 1334531972 517117 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :`quote < 1334531975 306662 :HackEgo!codu@codu.org PRIVMSG #esoteric :828) elliott: Apparently Rowan Williams is Primate of All England. CHECKMATE CREATIONISTS < 1334532011 91525 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :`quote < 1334532014 104482 :HackEgo!codu@codu.org PRIVMSG #esoteric :783) * Phantom_Hoover moves 0.5 Phantom_Hoover into the Atlantic, and captures fizzie's upper body with 0.5 Phantom_Hoover. Glurk. < 1334532085 598848 :augur!~augur@208.58.5.87 QUIT :Ping timeout: 252 seconds < 1334532447 722937 :itidus20!~itidus21@120.148.51.163 JOIN :#esoteric < 1334532567 967266 :itidus21!~itidus21@120.148.51.163 QUIT :Ping timeout: 265 seconds < 1334532775 561903 :itidus20!~itidus21@120.148.51.163 NICK :itidus21 < 1334532784 417000 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui +[-+>[<+>]<] < 1334532789 509472 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 12.9 < 1334532838 109448 :Tiktalik!tikfreenod@unaffiliated/tiktalik NICK :Tiktalik|FOOOOOO < 1334532858 669042 :Tiktalik|FOOOOOO!tikfreenod@unaffiliated/tiktalik NICK :Tiktalik|Food < 1334533006 930802 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui +[-+>[>[-]<<+>]<] < 1334533010 738920 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 10.4 < 1334533032 123519 :qfr!~kafir@unaffiliated/yw PRIVMSG #esoteric :Haskell is prospering, there are no boundaries to what faith can achieve! CHECKMATE ATHEISTS! < 1334533068 113857 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui +[-+>[>[-[-[-]]]<<+>]<] < 1334533070 896537 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 10.4 < 1334533080 387922 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :<--- clueless. < 1334533149 817081 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui +[-+>[>[-[+[-[+]]]]<<+>]<] < 1334533152 556348 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 12.7 < 1334533177 125959 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :itidus21: what are you doing < 1334533186 22615 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :as if i know < 1334533253 478191 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :i think i ... didnt think this through monqy < 1334533269 69932 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :i forgot these were loops < 1334533271 420441 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :!bfjoust suicide -*128 < 1334533274 170638 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for RocketJSquirrel_suicide: 9.7 < 1334533281 537696 :ais523!~ais523@unaffiliated/ais523 PRIVMSG #esoteric :RocketJSquirrel: < is more suicidy < 1334533288 241192 :RocketJSquirrel!codu@codu.org PRIVMSG #esoteric :ais523: True. < 1334533332 171880 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :i was imagining that they were non looping conditionals < 1334533444 778210 :ion!ion@heh.fi PRIVMSG #esoteric :What’s bfjoust? < 1334533617 828233 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui +[-+>[>[-]>[-]<<<+>]<] < 1334533620 647932 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 9.9 < 1334533712 515367 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :ion: check wiki artice about BF joust < 1334533793 800806 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui +++++++++++++++++++++++++++++[-+>[<+>]<] < 1334533797 596037 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 16.2 < 1334533826 280065 :ion!ion@heh.fi PRIVMSG #esoteric :nortti: Ok, thanks < 1334533875 689160 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust perkele [+]>>>>>[ < 1334533878 372806 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for nortti_perkele: 0.0 < 1334533942 627392 :nortti!~androirc@a88-113-14-106.elisa-laajakaista.fi PRIVMSG #esoteric :!bfjoust perkele [+++] < 1334533945 286316 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for nortti_perkele: 15.2 < 1334533950 62141 :olsner!~salparot@c83-252-161-133.bredband.comhem.se PRIVMSG #esoteric :!bfjoust test (+.>[+[+]])*31+[-[-]]. < 1334533952 648411 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for olsner_test: 14.2 < 1334533953 543583 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :CHECKMATE CREATIONISTS? CHECKMATE ATHEISTS? No, you are both wrong. < 1334533973 121347 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :checkmate, everyone < 1334533983 136060 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :monqy: Are you good to play chess game? < 1334533985 790989 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :checkmate, nobody? < 1334533993 70459 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :I'm not a chess guy < 1334534000 870301 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Shogi? Xiangqi? < 1334534004 834895 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :nope :( < 1334534136 307938 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui [++]++++++++++++++++++++++[-+>[<+>]<] < 1334534139 21537 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 15.6 < 1334534220 680959 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui [-]+++++++++++++++++++++++++++++[-+>[<+>]<] < 1334534224 526786 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 16.3 < 1334534239 982271 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric : 8-} < 1334534286 257964 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yes < 1334534307 94614 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Yes, sir! < 1334534315 28005 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :Just "yes" is not good enough < 1334534343 409201 :monqy!~swell@pool-71-102-226-192.snloca.dsl-w.verizon.net PRIVMSG #esoteric :yessir < 1334534347 254460 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui [-]+++++++++++++++[[-+>[<+>]<]+] < 1334534350 984469 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 16.3 < 1334534351 855128 :zzo38!~zzo38@24.207.49.17 PRIVMSG #esoteric :OK < 1334534384 348438 :itidus21!~itidus21@120.148.51.163 PRIVMSG #esoteric :!bfjoust hudhewui [-]+++++++++++++++[[-+>[<+>]<]----------------] < 1334534387 965938 :EgoBot!codu@codu.org PRIVMSG #esoteric :​Score for itidus21_hudhewui: 16.3