←2015-11-26 2015-11-27 2015-11-28→ ↑2015 ↑all
00:00:00 <tswett> A "degenerate whatever" is something that's not actually a whatever, but is "on the edge", so to speak.
00:00:05 <hppavilion[1]> (though I've heard it argued that infinity=0 because the number line is a circle of infinite radius)
00:00:11 <hppavilion[1]> Ah
00:00:33 <hppavilion[1]> So a degenerate ellipse is either a line or a point? Infinitely large or infinitely small?
00:00:42 <hppavilion[1]> (I would guess)
00:00:59 <int-e> or perhaps two parallel lines or a parabola
00:01:16 <MDude> I would think the number ine being a circle would jsut make infinity equal negative infinity.
00:01:32 <tswett> Yeah, I suppose there are a lot of kinds of degenerate ellipses.
00:01:34 <MDude> But I guess it depends on how you handle overflows?
00:02:07 <tswett> Take an ellipse and reduce its minor radius towards 0, and it approaches being a line segment.
00:02:22 <tswett> Increase its major radius towards infinity, and it approaches being two parallel lines.
00:02:47 <hppavilion[1]> MDude: It depends on whether infinity is equal to 2*infinity and the like.
00:02:54 <int-e> move one of its focal points towards infinity and you may get a parabola
00:02:55 <tswett> Do both, it approaches being a line.
00:03:12 <tswett> And yeah. Keep one focus where it is and move the other towards infinity, and it approaches being a parabola.
00:03:19 <hppavilion[1]> So a line is a degenerate parabola is a degenerate ellipse?
00:03:38 <tswett> Sounds right.
00:03:43 <tswett> And I guess a ray is a degenerate parabola, too.
00:03:50 <hppavilion[1]> So everything just degenerates down?
00:04:14 <hppavilion[1]> I wonder if there's a "god-formula" that produces something that isn't a degenerate anything xD
00:04:23 <hppavilion[1]> I suppose a square is a generate superellipse
00:04:34 <tswett> Also sounds right.
00:04:35 -!- HackEgo has joined.
00:04:37 -!- aloril has joined.
00:05:52 <hppavilion[1]> A superellipse being x**n/a**n+y**n/b**n=r**n where n>2, and a square being where n=infinity
00:05:53 <tswett> I guess given any sort of object, you could probably think of a way to see that object as a degenerate something.
00:06:06 <hppavilion[1]> You know what we need to invent and start selling? The Mathemetician's Keyboard
00:06:15 <tswett> Let me see if I can just visualize that from the formula.
00:06:19 <hppavilion[1]> A USB-based keyboard extension that has additional symbols on it
00:06:25 <hppavilion[1]> I would buy it
00:07:00 <tswett> Yeah, I can, more or less.
00:07:04 <hppavilion[1]> tswett: A superellipse is, colloquially an ellipse with squared corners. Not perefectly round.
00:07:10 <tswett> Right.
00:07:32 <hppavilion[1]> And the higher n is, the squarier it gets, and eventually it is infinity
00:09:37 <hppavilion[1]> I want to make a program that draws [uber]ellipses of the form x**n/a**m+y**o/b**p=r**q, where you can enter values for n, m, o, p, a, b, r, and q, but I don't know how to make a computer calculate those points short of brute force, which wouldn't work because of uncountable infinities and rounding errors and stuff
00:10:12 <tswett> Good question.
00:10:20 <tswett> There should be a few ways to do that.
00:10:26 -!- mauris_ has quit (Ping timeout: 260 seconds).
00:10:57 <tswett> Two of them come to mind.
00:11:07 <hppavilion[1]> tswett: Such as?
00:11:35 <hppavilion[1]> I could use SymPy, but that doesn't come with all python distributions and is a bit cheaty, I feel.
00:11:37 <tswett> Number one, you could turn that into... crap, what are they called.
00:11:42 <tswett> Polar coordinates.
00:12:46 <hppavilion[1]> Alternatively, I could use a generalization of my ellipse drawing equation (that \oren\_ helped me with, at least for theta rotation) that can do superellipses, but I wouldn't know where to start because I only discovered how to draw circles (and by extension, ellipses) by accidentally fumbling in Scratch.
00:13:00 <tswett> So then you'd just calculate r for a bunch of values of theta and plot them.
00:13:20 <tswett> Number two...
00:13:36 <hppavilion[1]> AND it doesn't have any exponentiation used in it, so I wouldn't know where to put m/n/o/p/q
00:13:42 <tswett> Start with a point, and project it onto the uberellipse somehow.
00:13:52 <tswett> Which, again, I can think of two ways to do.
00:13:57 <tswett> Then plot that point you just got.
00:13:59 <hppavilion[1]> I could, of course, just roll my own CAS if I were feeling up to it.
00:14:25 <tswett> Find the slope of the uberellipse at that point, move the point a little bit in that direction, project it again. Plot that.
00:14:27 <tswett> Repeat.
00:14:27 <hppavilion[1]> ("Of course", "just")
00:14:33 <hppavilion[1]> True
00:15:52 -!- sixtustha5 has joined.
00:15:54 <hppavilion[1]> Should I include Roulettes in Euclid?
00:16:04 <tswett> You know, calculating a**m, b**p, and r**q won't really do anything. You'll just get a constant anyway.
00:16:14 <hppavilion[1]> tswett: Yeah, I suppose I would
00:16:38 <hppavilion[1]> But the x**m and y**n would be problematic
00:16:43 <tswett> Now, as for projecting it onto the uberellipse?
00:16:52 <tswett> Just use a little bit of calculus, that's all...
00:17:23 <tswett> hppavilion[1]: so, do you know what a derivative is?
00:17:35 <hppavilion[1]> tswett: Vaguely.
00:17:57 <hppavilion[1]> It is, if I remember correctly, the slope of the plot of a function between two given points
00:18:11 <tswett> Close.
00:18:17 <tswett> It's the slope of the plot of a function at *one* point.
00:18:17 <hppavilion[1]> Which are usually separated by an infinitessimal amount
00:18:29 <hppavilion[1]> tswett: Yes, my second message clarifies.
00:19:08 <hppavilion[1]> I meant to imply with the second one, at least, that they are practically one point (but that that doesn't really work so we need two that behave as one)
00:19:08 <tswett> I think Newton and Leibniz thought of it as being the slope of the plot of the function between two points separated by an infinitesimal amount.
00:19:43 <hppavilion[1]> tswett: That's what the snazzy wikipedia diagram I last saw a couple months back gave me the impression of.
00:19:57 <tswett> (Always infinitesimal, not just usually.)
00:20:52 <tswett> Problem is, nobody for the longest time could figure out how to make this infinitesimal thing work.
00:21:49 <hppavilion[1]> Ah
00:21:56 <hppavilion[1]> Surreal numbers? xD.
00:22:03 <hppavilion[1]> Those hadn't been invented back then, I know
00:22:06 <tswett> Eventually someone, I don't remember who, came up with a new definition of the derivative that *did* work formally.
00:22:26 <hppavilion[1]> I know as such because they were named by conway and invented by knuth (or was it vice versa?)
00:22:47 <hppavilion[1]> (I think it was vice versa)
00:24:57 <tswett> Something tells me the definition will probably make sense to you.
00:25:07 <hppavilion[1]> Yay! Calculus I understand!
00:25:14 <tswett> Suppose I want to find the slope of the function f(x) = x^2 at x = 3.
00:25:25 <hppavilion[1]> (Barring Arithmetic of the Functia, whihc may or may not be a calculus and I don't know which it is)
00:25:31 <hppavilion[1]> I WILL NOT SUPPOSE.
00:25:56 <tswett> Well, if you calculate the slope between x = 3 and x = 4, you'll get an approximation. If you calculate the slope between x = 3 and x = 3.1, you'll get a better approximation. Between x = 3 and x = 3.001, a better approximation still.
00:26:21 <tswett> Take the limit as the distance between the two points approaches zero.
00:26:26 <tswett> And that's the derivative.
00:27:57 -!- sixtustha5 has quit (Ping timeout: 265 seconds).
00:28:03 <tswett> In (more) symbols, it's the limit of (x^2 - 3^2)/(x - 3) as x approaches 3.
00:28:11 <hppavilion[1]> Interesting
00:28:29 <tswett> Now... can you figure out what number that is?
00:28:30 <hppavilion[1]> Though limits are not a concept I understand yet.
00:29:15 <hppavilion[1]> More out of apathy and lack of necessity and lack of interesting name so far than due to not being smart enough xD
00:29:39 <hppavilion[1]> Shall I google it, or will you explain?
00:29:44 <tswett> I'll explain.
00:29:52 <tswett> You'd better understand it eventually; limits (in general, not just in the real numbers) turn out to be one of the most important concepts in higher mathematics. :D
00:29:54 <tswett> Anyway...
00:30:17 <tswett> Essentially, the limit of a thing is whatever it is that that thing keeps getting closer to.
00:30:28 <hppavilion[1]> I google "Limit" and Duck Duck go suggests two (as well as a few other I didn't read) possibilities of what /kind/ of limit I was referring to in this order:
00:30:30 <tswett> Like, hey, consider this sequence: 4, 3.1, 3.01, 3.001, 3.0001, 3.00001, ...
00:30:38 <hppavilion[1]> 1) Limits (BDSM)
00:30:48 <hppavilion[1]> 2) Limit (Mathematics)
00:31:01 <tswett> What do you figure the limit of that sequence is?
00:31:01 <hppavilion[1]> It keeps getting closer to 3, it appears
00:31:07 <tswett> Yup.
00:31:11 <tswett> So the limit is 3.
00:31:11 <hppavilion[1]> Or 3.0...1
00:31:26 <hppavilion[1]> If infinitessimals are allowed, which I doubt
00:31:32 <tswett> 3.0...1 is definitely a natural guess, but it turns out that in the real numbers, there's no such thing.
00:31:48 <tswett> There are no infinitesimal real numbers, after all. Nor any infinite ones.
00:33:05 <tswett> Now, as for the limit of (x^2 - 3^2)/(x - 3) as x approaches 3...
00:33:10 <tswett> I dunno, can you figure out what that is?
00:33:59 <hppavilion[1]> Yes, of course, I've heard
00:35:51 <FireFly> Thanks to ECMA-48, my brain now reads BDSM as bidirectional support mode even though I know that's not what it means in most contexts :P
00:36:08 <FireFly> So maybe it's about limits in that!
00:36:29 <hppavilion[1]> for x=0, -9/-3=3, for x=1, 1-9/1-3=-8/-2=-4, for x=2 4-9/-1=-5/-1=5, so far I have made no progress because I was doing it wrong. Restarting
00:37:23 <tswett> How about for x = 3.00000001?
00:37:45 <hppavilion[1]> for x=2, 4-9/-1=-5/-1=5, for x=2.5, 6.25-9/-0.5=-3.25/-0.5=6.5
00:38:48 <tswett> By the way, do you know how to factor (x^2 - 3^2)?
00:40:50 <hppavilion[1]> For x=2.75, 2.75**2-9/-0.75=7.5625-9/-0.75=-2.5625/0.75~=-2.56/-0.75~=3.413
00:41:31 <hppavilion[1]> So x=2: 5, x=2.5: 6.5, x=2.75: 3.413. I made a mistake somewhere.
00:41:38 <hppavilion[1]> Either that or it's a bit erratic
00:42:15 <hppavilion[1]> tswett: x**2-3**2 is a difference of two squares, so it's (x+3)(x-3)
00:42:38 <hppavilion[1]> Oh, I see my mistake
00:42:53 <tswett> Right, so this expression is the same as (x + 3)(x - 3)/(x - 3).
00:42:59 <hppavilion[1]> OK
00:42:59 <tswett> Is that expression equivalent to just (x + 3)?
00:43:05 <hppavilion[1]> It is, isn't it
00:43:13 <tswett> Nope.
00:43:16 <hppavilion[1]> Oh.
00:43:17 <hppavilion[1]> Fail.
00:43:22 <tswett> The first one is undefined at x = 3, the second one is not.
00:43:25 <hppavilion[1]> Why not, may I ask?
00:43:27 <tswett> But *apart* from that, yep.
00:43:29 <hppavilion[1]> Ah
00:43:34 <tswett> And guess what?
00:43:39 <hppavilion[1]> What?
00:43:47 <hppavilion[1]> I do not like guessing.
00:43:56 <tswett> When we're taking the limit at 3, the expression's value at 3 doesn't matter.
00:44:02 <tswett> All that matters is its value *near* 3.
00:44:04 <hppavilion[1]> Wouldn't think so
00:44:31 <tswett> So for all the values we're actually concerned about, (x + 3)(x - 3)/(x - 3) is equivalent to just (x + 3).
00:45:23 <hppavilion[1]> So Euclid now works in 3D, but it allows you to work in 2D with great simplicity; that is, though it's 3D, a 2D point can be specified that is equal to any 3D point that you wish
00:45:36 <hppavilion[1]> Ah
00:45:38 <hppavilion[1]> OK then
00:45:58 <tswett> And what's the limit of x + 3 as x approaches 3?
00:46:05 <tswett> It's just 3 + 3.
00:46:24 <hppavilion[1]> So x=2, f(2)=5, f(2.5)=5.5, f(2.75)=5.75
00:46:25 <hppavilion[1]> Oh
00:46:27 <hppavilion[1]> That works
00:46:36 <hppavilion[1]> So 6 then
00:46:40 <tswett> Yup.
00:46:44 * hppavilion[1] has amazing arithmetic skillz
00:46:56 <tswett> I'm so impressed by your arithmetic skillz.
00:47:05 <tswett> So we've figured out that the derivative of the function f(x) = x^2 at x = 3 is 6.
00:47:25 <hppavilion[1]> tswett: Yay! Now I have a 0.001% advantage over everyone else in my future calculus (or maybe precalculus) classez!
00:48:22 <hppavilion[1]> tswett: Are you curious about how I got a 2D geometry language working in a 3D space?
00:48:45 <hppavilion[1]> Or did you figure it out already because I might've already explained it? xD
00:48:48 <tswett> Yeah, I am. Something about specifying a plane (or some other surface, perhaps) in the 3D space?
00:48:52 <hppavilion[1]> Yep
00:49:21 <tswett> Now, people who know calculus almost never actually take derivatives that way. There are two much easier ways of doing it.
00:49:26 <tswett> Only one of which is taught in high school.
00:49:38 <hppavilion[1]> You just use the "plane" keyword, followed by the formula for a plane, and you change the plane that future shapes defined exist on. And it's still declarative, because it's really just syntactic sugar
00:49:46 <tswett> Ah, sweet.
00:49:53 <hppavilion[1]> tswett: You aren't american, are you? Just wondering.
00:50:06 * hppavilion[1] mapoles tswett
00:50:12 <tswett> How did you guess?
00:50:15 <tswett> Actually I am.
00:50:18 <hppavilion[1]> tswett: Oh.
00:50:48 <hppavilion[1]> I was going to mention that it's american thanksgiving today for some reason. I don't know why.
00:50:58 <tswett> There's symbolic differentiation, where you apply a bunch of rules that they teach you in high school.
00:51:06 <hppavilion[1]> But only if you lived in a foreign country where you might not know. For some reason.
00:51:18 <hppavilion[1]> I probably won't know those rules of course.
00:51:19 <tswett> Yup. I had the day off today for thanksgiving.
00:51:26 <hppavilion[1]> Ah. That's good.
00:51:53 <tswett> I was actually planning to work today, but I changed my mind. :D
00:52:05 <tswett> The rules definitely aren't obvious.
00:52:08 <hppavilion[1]> Everyone should have a day off on thanksgiving. Thanksgiving is the american holiday I think all countries should have their own version of. It's a pleasant holiday.
00:52:23 <hppavilion[1]> Of course the rules aren't obvious xD
00:52:26 <tswett> Although the rule for addition is pretty easy.
00:52:42 <tswett> Now, as you may know, the derivative of a function f is often called f'.
00:52:47 <tswett> Here's the addition rule:
00:52:56 <tswett> The derivative of f(x) + g(x) is f'(x) + g'(x).
00:53:02 <hppavilion[1]> Oh, you can ALSO sepecify a 2D shape on a plane /without/ changing hte default plane with "<shape> on plane <plane equation>"
00:53:08 <tswett> Ah, I like that.
00:53:27 <hppavilion[1]> I did know that. Or, well, that's the ASCIIized symbol for it.
00:53:39 <tswett> Yeah. The Unicode symbol is, uh, lemme rustle it up.
00:54:02 <tswett>
00:54:21 <tswett> Now, here's the product rule, in case you were wondering.
00:54:35 <tswett> The derivative of f(x) g(x) is f'(x) g(x) + f(x) g'(x).
00:55:13 <tswett> At some point in the future, you will look at that rule and say "well, yeah, duh."
00:55:53 <tswett> Anyway, the other method of differentiation.
00:55:59 <tswett> I think it's called automatic differentiation.
00:56:26 <tswett> Here's the idea. Take the real numbers, and add in a number called e, with the property that e^2 = 0.
00:56:39 <hppavilion[1]> Is that where you let Wolfram|Alpha do it for you? xD
00:56:50 <hppavilion[1]> Oooh, nilpotent.
00:56:54 <tswett> Yup.
00:57:13 <tswett> If you want to find the derivative of f at x, you start by evaluating f(x + e).
00:57:27 <tswett> So, how about the derivative of x^2 at x = 3?
00:58:10 <tswett> Start by evaluating (3 + e)^2 = 3^2 + 2(3)e + e^2 = 9 + 6e + e^2 = 9 + 6e.
00:58:16 <tswett> Now, notice anything?
00:58:21 <tswett> The derivative is the coefficient of e.
00:59:11 <tswett> And hey, guess what. It always works. At least... given any ordinary function on the real numbers.
01:00:17 <hppavilion[1]> Oooooh
01:00:33 <tswett> All right, how about the derivative of, I dunno, 5x^2 + 7x + 11? Plug in (x + e), and so you get 5(x + e)^2 + 7(x + e) + 11, which reduces as...
01:00:38 -!- Jafet has joined.
01:00:54 <hppavilion[1]> tswett: Is there a way to generalize the dual numbers for automatic differentiation so it works on complex functions? Or no?
01:01:24 <hppavilion[1]> Even if it's so complicated that it isn't useful
01:01:38 <tswett> 5x^2 + 2(5)xe + 5e^2 + 7x + 7e + 11. Drop the e^2 term and factor out e, it's 5x^2 + 7x + 11 + (10x + 7)e.
01:01:47 <tswett> The derivative of 5x^2 + 7x + 11 is 10x + 7.
01:02:03 <tswett> To generalize to the complex numbers, I think you don't even need to do anything. Just use exactly the same method.
01:02:21 <hppavilion[1]> Oooh, now we get polynomial/whatever-the-more-general-term-is derivatives. That looks fun.
01:02:40 <hppavilion[1]> Is automatic differentiation the one they never teach? If so, why the /fuck/ would they not teach us this?
01:02:55 <tswett> Well, in this particular case, symbolic differentiation would have been much easier.
01:03:12 <hppavilion[1]> Other than because making up new numbers is weird, and it's not like we've seen that kind of thing before.
01:03:27 <hppavilion[1]> It's not like they've /already/ taught me about i (though I already knew about it long before)
01:03:55 <tswett> I can do symbolic differentiation of that polynomial in my head in five seconds, because I know that the derivative of x^2 is 2x, the derivative of x is 1, and derivatives add together and multiply with constants nicely.
01:04:29 <tswett> Strangely, it turns out that calculus on the complex numbers is ultimately much *simpler* than calculus on the real numbers.
01:04:44 -!- mauris has joined.
01:04:52 <tswett> The reason for this is that all of the "nasty" cases in the real numbers are impossible to generalize to the complex numbers.
01:05:24 <hppavilion[1]> Ah
01:06:12 <tswett> In the complex numbers, if a function is differentiable at a point, then it is also differentiable on an entire disk surrounding that point, arbitrarily many times.
01:06:18 <\oren\_> hi
01:07:11 <tswett> Functions in the real numbers have no such property. A function can be differentiable just once. It can be differentiable at just one point!
01:10:28 <\oren\_> so regions of the plane where a complex function is differentiable can only be open sets?
01:11:16 <\oren\_> cool
01:11:50 <tswett> \oren\_: yup.
01:15:58 <tswett> Unrelated:
01:16:09 <tswett> I honestly wonder if someone's going to see the output of `evil and actually take its advice.
01:16:17 <\oren\_> `evil
01:16:18 <HackEgo> THEY HAVE MADE THEIR LAST MISTAKE. PUNISH THEM.
01:16:30 <tswett> Like... all of its advice, not just the parts that aren't actually evil.
01:16:35 <tswett> That would be pretty bad.
01:16:36 <\oren\_> `evil
01:16:37 <HackEgo> SEIZE IT AND THRUST IT TO THE GROUND.
01:16:45 <tswett> Because it's bad advice.
01:17:18 <\oren\_> lol, エッチ
01:17:30 <tswett> And... y'know, harmful to other people if taken.
01:17:37 <\oren\_> `evil
01:17:38 <HackEgo> YOUR ENEMIES ARE WEAK. YOU ARE STRONG. OVERCOME.
01:17:41 <\oren\_> `evil
01:17:42 <HackEgo> THEY HAVE MADE THEIR LAST MISTAKE. PUNISH THEM.
01:17:44 <\oren\_> `evil
01:17:45 <HackEgo> THEY HAVE MADE THEIR LAST MISTAKE. PUNISH THEM.
01:17:48 <\oren\_> `evil
01:17:49 <HackEgo> PAIN IS NOTHING. PAIN CANNOT STOP YOU.
01:17:51 <\oren\_> `evil
01:17:52 <HackEgo> THEY HAVE MADE THEIR LAST MISTAKE. PUNISH THEM.
01:17:54 <\oren\_> `evil
01:17:55 <HackEgo> COMPASSION. EMPATHY. MERE WEAKNESSES.
01:17:58 <tswett> There's not very much of it.
01:18:04 <tswett> `ls evil
01:18:05 <HackEgo> 194 \ 295 \ 313 \ 455 \ 503 \ 602 \ 707 \ 714 \ 745 \ 960
01:18:14 <tswett> You've seen half of them.
01:19:02 <tswett> All right, let me take an extremely small vote, here.
01:19:08 <tswett> Should I add additional evil, or not?
01:20:02 -!- \oren\_ has changed nick to \oren\.
01:20:21 <hppavilion[1]> \oren\_: Why did you add an _ to your name?
01:20:24 <hppavilion[1]> Oh, xD
01:20:38 <hppavilion[1]> I didn't notice that until after I sent it.
01:20:48 -!- bb010g has joined.
01:20:49 <nchambers> tswett: I vote with the majority
01:22:01 <zzo38> I say yes, because there isn't enough and therefore it repeat too much. But, my opinion also is to instead use a larger database and then just add the category tag on as well, such as "evil" and so on.
01:22:18 <zzo38> (You could even have more than one per each; and you could use SQLite too)
01:22:35 <hppavilion[1]> There. Euler has 5, 6, 7, 8, 8, 10, or 12 different ways to import things, depending on how you look at it. I think. Not sure I counted right.
01:22:48 <hppavilion[1]> Or Euclid, I mean.
01:23:44 <hppavilion[1]> You can do "import <module>", "import <module> and <module> and <module>, etc.", or a whole host of other things
01:24:10 <hppavilion[1]> Including importing from a module into an existing namespace with "<import statement> into <namespace>"
01:24:22 <hppavilion[1]> Now I have to go thanksgiving. I'll be back in a bit.
01:26:20 <tswett> See you later.
01:28:25 * quintopi1 sets out the boily magnet
01:28:36 -!- quintopi1 has changed nick to quintopia.
01:29:02 -!- quintopia has quit (Changing host).
01:29:02 -!- quintopia has joined.
01:30:25 <tswett> All right... the fuck am I doing? I'm seriously thinking someone could look at this stuff, think about it, and turn into a mass murderer.
01:32:06 <tswett> There. I deleted all of the evil advice except one.
01:32:07 <Phantom_Hoover> `cat bin/evil
01:32:07 <HackEgo> cat "$(find evil -type f | shuf -n1)" | tr '[:lower:]' '[:upper:]'
01:32:11 <tswett> `evil
01:32:12 <HackEgo> KILL A PUPPY EVERY DAY.
01:32:24 <Phantom_Hoover> `ls
01:32:25 <HackEgo> ​:-( \ 0 \ 113500 \ a \ a.o \ a.out \ argv.py \ autowelcome_status \ bdsmreclist \ bin \ blah \ blah \ blah \ blah \ blah \ blah \ canary \ cat \ Complaints \ :-D \ dc \ dog \ emoticons \ error.log \ etc \ evil \ factor \ faith \ fu \ head \ hello \ hello.c \ hi \ hours \ ibin \ index.html?dl=1812 \ interps \ le \ letersort \ lib \ madness \ MaFV
01:32:33 <Phantom_Hoover> `ls evil
01:32:34 <HackEgo> 313
01:32:45 <tswett> If people come to HackEgo seeking evil advice, they will be told only to kill puppies.
01:33:11 <\oren\> derp derp derp dedederp derp derp dederp derp derp dedederp derp derp
01:33:19 <Phantom_Hoover> tswett is more of a cat person
01:33:28 <\oren\> https://www.youtube.com/watch?v=51bhB7EKHdQ
01:34:17 <\oren\> `quote
01:34:17 <HackEgo> 1021) <Tanea> ...I'm organising a picnic on Facebook in rhyming couplets
01:35:16 <tswett> `good
01:35:16 <HackEgo> ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: good: not found
01:35:31 <tswett> `run echo 'cat "$(find good -type f | shuf -n1)"' > bin/good
01:35:33 <HackEgo> No output.
01:35:33 <tswett> `run mkdir good
01:35:34 <HackEgo> No output.
01:36:25 <tswett> All right, someone give me a bunch of random 3-digit numbers.
01:36:40 <zzo38> Don't you have your own dice?
01:36:46 <tswett> 786 755 440 643 726 184 007 132 604 351. Thank you.
01:37:04 <tswett> `run echo 'Empathize. Always empathize.' > good/786
01:37:06 <HackEgo> No output.
01:37:07 <tswett> `good
01:37:08 <HackEgo> ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: /hackenv/bin/good: Permission denied \ /home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: /hackenv/bin/good: cannot execute: Permission denied
01:37:13 <tswett> `run chmod +x bin/good
01:37:15 <HackEgo> No output.
01:37:16 <tswett> `good
01:37:17 <HackEgo> Empathize. Always empathize.
01:37:33 <zzo38> Are you going to add AmigaMML into the list of software that is using tau instead of (or in addition to) pi?
01:38:31 <tswett> `run echo 'It takes strength to admit your own weaknesses.' > good/755
01:38:33 <HackEgo> No output.
01:38:33 <zzo38> tswett: Still my opinion I think you should put all in one file and then make SQL query to select them (I have used ORDER BY RANDOM() LIMIT 1 to select entry at random; add the WHERE clause as well to select or deselect tags or other stuff
01:38:59 <tswett> But SQL is obsolete, man.
01:39:11 -!- hppavilion[1] has quit (Ping timeout: 264 seconds).
01:39:15 <zzo38> I think not
01:40:49 <tswett> `run echo 'Your friends are strong. Take their help.' > good/295
01:40:51 <HackEgo> No output.
01:41:03 <tswett> I'm trying to think of a "good" suggestion corresponding to each "evil" suggestion.
01:41:30 <zzo38> Then maybe you should use the corresponding numbers too?
01:41:53 <Phantom_Hoover> tswett, you realise you'll have to downcase `good for symmetry
01:42:34 <tswett> `run echo 'Feel wronged? They made a mistake. See things from their side, and forgive them.' > 503
01:42:36 <HackEgo> No output.
01:42:39 <tswett> zzo38: I'm doing that.
01:42:46 <tswett> Whoops.
01:42:50 <tswett> `run mv 503 good/503
01:42:52 <HackEgo> No output.
01:43:53 <tswett> Hm. evil/503 and evil/960 are pretty similar; they'd pretty much have the same corresponding "good" suggestion.
01:46:04 <tswett> `run echo 'There is a way out. Finding it will be difficult. It may be the hardest thing you've ever done. Find it anyway.' > good/544
01:46:04 <HackEgo> bash: -c: line 0: unexpected EOF while looking for matching `'' \ bash: -c: line 1: syntax error: unexpected end of file
01:46:21 <tswett> `run echo 'There is a way out. Finding it will be difficult. It may be the hardest thing you'\''ve ever done. Find it anyway.' > good/544
01:46:23 <HackEgo> No output.
01:51:33 <zzo38> In SQL you can just write '' for a single ' and you don't have to do like that instead (I think also in Pascal you can write '' for a single ' too, but I am not sure)
01:53:49 <tswett> PowerShell too.
01:54:04 <tswett> Of course, I could have just used double quotes around the whole thing.
01:54:14 <tswett> But man, single quotes are so snazzy.
01:54:17 <Phantom_Hoover> yeah but that has its own issues
01:54:31 <Phantom_Hoover> i remember sam hughes tried to figure out how to quote a generic string in bash
01:54:43 <tswett> `run echo "I found $20 on the ground the other day."
01:54:44 <HackEgo> I found 0 on the ground the other day.
01:54:45 <Phantom_Hoover> he concluded that you had to just put \ before every non-alphanumeric
01:54:56 <tswett> Ooh boy.
01:55:24 <Phantom_Hoover> http://qntm.org/bash
01:55:27 <tswett> You're talking about the Canadian Minister of Militia and Defence during World War I, right?
01:55:42 <zzo38> If you use " in the shell scripts then it does other thing inside the quote too though anyways
01:57:50 <zzo38> (Such as the example above)
02:02:56 -!- hppavilion[1] has joined.
02:04:12 <\oren\> `run echo I\ found\ \$20\ on\ the\ ground\ the\ other\ day
02:04:12 <HackEgo> I found $20 on the ground the other day
02:04:29 <\oren\> `run echo \"I\ found\ \$20\ on\ the\ ground\ the\ other\ day
02:04:30 <HackEgo> ​"I found $20 on the ground the other day
02:04:44 <\oren\> `run echo \"I\ found\ \$20\ on\ the\ ground\ the\ other\ day\"\ he\ said\.
02:04:45 <HackEgo> ​"I found $20 on the ground the other day" he said.
02:04:52 <\oren\> yeah
02:05:35 -!- ^v has quit (Ping timeout: 264 seconds).
02:07:02 -!- mauris has quit (Ping timeout: 265 seconds).
02:07:06 <quintopia> print eval(chr(37).join([``'print eval(chr(37).join([``%s``]*2))[1:-1]'``]*2))[1:-1]
02:08:41 -!- andrew has joined.
02:15:41 -!- Phantom_Hoover has quit (Read error: Connection reset by peer).
02:18:18 -!- hppavilion[1] has quit (Ping timeout: 260 seconds).
02:26:55 <\oren\> `unidecode 巣
02:26:56 <HackEgo> ​[U+5DE3 CJK UNIFIED IDEOGRAPH-5DE3]
02:28:24 -!- boily has joined.
02:32:53 <\oren\> `` unidecode 底府度庫庭康建式役径待徒得 | sed -e 's/\(\[\|CJK\ \|UNIFIED \|IDEOGRAPH-[0-9A-F]\+\]\)/'
02:32:54 <HackEgo> sed: -e expression #1, char 50: unterminated `s' command \ close failed in file object destructor: \ sys.excepthook is missing \ lost sys.stderr
02:33:00 <\oren\> `` unidecode 底府度庫庭康建式役径待徒得 | sed -e 's/\(\[\|CJK\ \|UNIFIED \|IDEOGRAPH-[0-9A-F]\+\]\)//'
02:33:01 <HackEgo> U+5E95 CJK UNIFIED IDEOGRAPH-5E95] [U+5E9C CJK UNIFIED IDEOGRAPH-5E9C] [U+5EA6 CJK UNIFIED IDEOGRAPH-5EA6] [U+5EAB CJK UNIFIED IDEOGRAPH-5EAB] [U+5EAD CJK UNIFIED IDEOGRAPH-5EAD] [U+5EB7 CJK UNIFIED IDEOGRAPH-5EB7] [U+5EFA CJK UNIFIED IDEOGRAPH-5EFA] [U+5F0F CJK UNIFIED IDEOGRAPH-5F0F] [U+5F79 CJK UNIFIED IDEOGRAPH-5F79] [U+5F84 CJK UNIFIED IDEOGRA
02:33:05 <\oren\> `` unidecode 底府度庫庭康建式役径待徒得 | sed -e 's/\(\[\|CJK\ \|UNIFIED \|IDEOGRAPH-[0-9A-F]\+\]\)//g'
02:33:06 <HackEgo> U+5E95 U+5E9C U+5EA6 U+5EAB U+5EAD U+5EB7 U+5EFA U+5F0F U+5F79 U+5F84 U+5F85 U+5F92 U+5F97
02:36:13 <boily> he\\oren\. still kanjifying your font?
02:36:33 <\oren\> yah
02:37:37 -!- hppavilion[1] has joined.
02:38:29 <hppavilion[1]> Oh, NOW I'm back
02:40:27 <boily> hppavellon[1]!
02:41:33 -!- tromp_ has quit (Ping timeout: 272 seconds).
02:42:36 <hppavilion[1]> Hello boily!
02:42:42 <hppavilion[1]> Whoops
02:42:44 <hppavilion[1]> Helloily!
02:42:57 <boily> ^^
02:43:58 -!- tromp has joined.
02:43:59 <hppavilion[1]> boily: I'm making a usable programming language based on geometry!
02:44:03 <hppavilion[1]> (Declarative, naturally)
02:46:30 <hppavilion[1]> boily: https://docs.google.com/document/d/1sEyRHE3CLyVNwrkh-jsL32MIhtrdUjZ7WMVV8MAd2Kw/edit?usp=sharing
02:48:09 <newsham> hppavilion[1]: too late. euclid alreayd did it.
02:48:23 <boily> newshellom.
02:48:32 <hppavilion[1]> newsham: The language is /called/ Euclid, so yeah xD
02:48:55 <newsham> but this other language was /made by/ euclid
02:49:02 <newsham> a few thousand years ago
02:54:42 <hppavilion[1]> newsham: Yes, but it can't be used to make a computer say "Hello, World"
02:54:53 <hppavilion[1]> Unless you count a human as a computer, of course
02:56:21 <boily> IRP!
02:56:31 <newsham> "H" has two parallel segments and a perpendicular segment between them
02:56:36 <newsham> I think we could construct this :)
02:56:45 <newsham> I don't see much more challenging in "ello, World"
02:58:15 <hppavilion[1]> newsham: Yes, but can Euclid's system to asyncronous socketry?
02:59:36 -!- tromp has quit (Remote host closed the connection).
03:00:28 <boily> fungot: is your socketry asynchronous?
03:00:28 <fungot> boily: if gdb doesn't work on paragraph answers to your questions as useful?
03:00:46 <hppavilion[1]> boily: Design question: When sets or vectors have an operation performed on them, they have special meanings where it's the operation done on each item in them relative to the other value. I want to have special operators marked that don't behave like this, namely </>/>=/<=/=/!= for sets, but I also want the normal meaning to be available. How should I go about this? My current best idea is to specially mark the operators with a symbol,
03:00:46 <hppavilion[1]> e.g. the $ prefix or a . suffix. What do you think, as a randomly selected opinion?
03:02:06 <boily> pointwise operators from Matlab, eg with vectors u and v, u .* v will produce pointwise multiplication of them.
03:02:06 <hppavilion[1]> $ for "special" or "set" might work...
03:02:17 <hppavilion[1]> Yes
03:02:40 <hppavilion[1]> But I want to use typable characters for subset/superset/etc, and <> seem like the ideal characters.
03:03:09 <hppavilion[1]> But unless there's some sneaky but logical workaround, the only way to make it work is with a special marker in the operator name
03:03:13 <boily> "c" for subset. ɔ might be harder to get :P
03:03:36 <boily> (and of course c̄ for proper subset.)
03:03:53 <newsham> no sockets
03:03:59 <boily> but enough silliness, I'm yawning my jaw off. time to sleep.
03:04:00 <hppavilion[1]> boily: But that's not easily typable, unless you're in the future using the Mathematician's Keyboard that I'm going to make someone start selling
03:04:04 <hppavilion[1]> Fine
03:04:10 <hppavilion[1]> I'll just figure it out on my own xD
03:04:23 <newsham> at least i'm not aware of any ancient greek socket implementation
03:04:25 <boily> you may want to check out the space cadet keyboard :D
03:04:29 -!- boily has quit (Quit: POSITIVE CHICKEN).
03:04:34 <hppavilion[1]> Who's the Anonymous Nyan Cat?
03:04:39 <hppavilion[1]> Out of curiousity
03:07:31 <hppavilion[1]> Which may or may not have killed the cat. Not the Nyan Cat, though.
03:35:33 <hppavilion[1]> What should I use for the ASCII midpoint operator?
03:35:55 <hppavilion[1]> Currently I'm using _|_, but that looks like perpendicular and, more importantly, is stupid
03:36:04 <hppavilion[1]> For that matter, what should I use for the unicode midpoint operator?
03:36:27 <hppavilion[1]> Actually, ⧷ looks good for Unicode midpoint
03:42:06 <\oren\> what's a midpoint operator?
03:42:33 <\oren\> `unidecode c̄
03:42:34 <HackEgo> ​[U+0063 LATIN SMALL LETTER C] [U+0304 COMBINING MACRON]
03:47:50 <hppavilion[1]> \oren\: In Euclid, it's a unary operator that accepts a line and returns the point at the midpoint of the line
03:49:09 <\oren\> then how about -|
03:49:24 <hppavilion[1]> \oren\: Thank you! That works!
03:50:07 <hppavilion[1]> Oh, it doesn't accept a line, it accepts a segment
03:50:14 -!- bb010g has quit (Quit: Connection closed for inactivity).
03:51:10 <hppavilion[1]> I need a term that encompasses lines, rays, and segments
03:51:59 -!- MDude has changed nick to MDream.
03:52:42 -!- tromp has joined.
03:52:54 <hppavilion[1]> "line_like" works, I suppose
03:53:11 <\oren\> linear
03:53:16 <\oren\> lineal
03:53:23 <\oren\> rectus
03:53:55 <hppavilion[1]> \oren\: How about a symbol for perpendicular in ASCII?
03:54:13 <\oren\> _L
03:54:20 -!- MDream has changed nick to MDude.
03:54:27 <hppavilion[1]> \oren\: Don't think it can have letters, and I'd avoid underscores
03:54:51 <hppavilion[1]> + might work, but it'd be hard to parse properly
03:54:57 -!- MDude has changed nick to MDream.
03:55:05 <hppavilion[1]> Or maybe not
03:55:35 <hppavilion[1]> Wait, but perpendicular is binary
03:55:39 <hppavilion[1]> So yeah, it'll work easily
04:05:30 -!- andrew has quit (Ping timeout: 260 seconds).
04:06:35 -!- andrew has joined.
04:13:14 <\oren\> added some kanji and ⇜⇝⇞⇟ which were missing from the arrows block
04:27:06 -!- hppavilion[1] has quit (Ping timeout: 260 seconds).
04:37:16 -!- hppavilion[1] has joined.
04:37:56 <hppavilion[1]> \oren\: Miscellaneous Mathematical Symbols B is missing, in case you weren't aware
04:38:20 <hppavilion[1]> At least, RULE-DELAYED and REVERSE SOLIDUS WITH HORIZONTAL STROKE are.
04:39:12 <hppavilion[1]> I'm trying to figure out where to go with Euclid to keep it nearly fully declarative like Haskell is...
04:39:34 <hppavilion[1]> Obviously, IO is a problem for declarativeness, but I'll deal with that.
04:39:49 <hppavilion[1]> Well, I guess it's only a BIG problem for functional languages
05:07:13 -!- Sprocklem has joined.
05:18:32 <hppavilion[1]> tswett: Are you active right now?
05:21:25 <hppavilion[1]> Hm...
05:21:33 <hppavilion[1]> Surreal Geometry might be an interesting subject
05:22:35 <hppavilion[1]> Or entirely meaningless, more likely
05:25:39 -!- ^v has joined.
05:45:58 -!- hppavilion[1] has quit (Ping timeout: 260 seconds).
05:57:22 -!- bb010g has joined.
06:23:36 -!- kragniz has quit (Ping timeout: 264 seconds).
06:23:41 -!- newsham has quit (Ping timeout: 265 seconds).
06:24:10 -!- Sprocklem has quit (Ping timeout: 265 seconds).
06:24:11 -!- andrew has quit (Ping timeout: 264 seconds).
06:24:12 -!- digitalc1ld has quit (Ping timeout: 264 seconds).
06:27:37 <zzo38> Do you think my "Eldritch Veil" card should have shroud?
06:30:41 -!- hppavilion[1] has joined.
06:31:42 <hppavilion[1]> Hm...
06:36:38 -!- andrew has joined.
06:37:57 -!- gniourf has quit (*.net *.split).
06:37:57 -!- vifino has quit (*.net *.split).
06:40:35 -!- gniourf has joined.
06:51:59 -!- kragniz has joined.
06:59:06 -!- hppavilion[1] has quit (Ping timeout: 240 seconds).
07:04:58 -!- Sprocklem has joined.
07:19:26 -!- digitalcold has joined.
07:31:13 -!- ^v has quit (Read error: Connection reset by peer).
07:34:20 <b_jonas> zzo38: I don't really understand Eldritch Veil. What is that useful for, except for controlling another player?
07:34:33 -!- Patashu has joined.
07:40:46 <b_jonas> argh, stupid unusable webpage
07:43:47 <zzo38> That was one of my intentions yes; I don't know if that makes it overpowered. But there is other possibility too if sacrificing something can help you to win before it resolves, or maybe just use with affinity, or whatever something else
07:44:38 <zzo38> I think it is not too much overpower since you will need some other cards too but I am not quite sure. If it had shroud though then you cannot target it with Donate or whatever.
07:45:59 <zzo38> Some of the card I put favor texts now do you like that one, or other comment/suggestion even of the newer cards?
07:46:34 <b_jonas> but isn't there already some artifact for this that has more uses?
07:47:30 <b_jonas> "win before it resolves" -- that is VERY unlikely
07:47:30 <b_jonas> `ping
07:47:31 <HackEgo> pong
07:49:26 -!- EgoBot has quit (Remote host closed the connection).
07:55:58 <b_jonas> there are already lots of artifacts for {0} if you only need them for affinity: Accorder's Shield (an equipment from M14), Bone Saw (inverse Shuko from Conflux), Darksteel relic (a useless artifact from NPH), Everflowing Chalice (mana producer), Fountain of Youth, |Herbal Poultice, Kite Shield (another equipment), Lodestone Bauble (bauble means it lets you draw a card), \
07:59:07 <zzo38> Yes, it is unlikely I suppose, I don't know if it need to be changed at all actually
07:59:40 -!- relrod has quit (Excess Flood).
07:59:47 -!- relrod_ has joined.
07:59:49 -!- relrod_ has quit (Changing host).
07:59:49 -!- relrod_ has joined.
07:59:56 -!- relrod_ has changed nick to relrod.
08:00:08 <b_jonas> Lodestone Bauble (bauble means it lets you draw a card), Memnite (the 1/1 creature), Mishra's Bauble (this one is expensive, but also the best bauble), Ornithopter, Phyrexian Walker, Shield Sphere (a useful wall), Sigil of Distinction (an equipment that's useless for {0}), \
08:03:18 -!- hppavilion[1] has joined.
08:03:27 <b_jonas> Spellbook, Spidersilk Net (wow so many equipments), Tormod's Crypt (this one is famous and got reprinted a lot, used against graveyard-related decks), Urza's Bauble (almost as good as Mishra's, but cheap), Welding Jar (this is even sort of useful in an affinity deck, though not as useful as many artifacts for {1} or {2}), Zuran's Orb.
08:03:50 <b_jonas> Wow, I didn't know there were so many. The only one I currently own in my collection are Ornithopter.
08:04:13 <hppavilion[1]> Maybe we should invent our own M:tG-like card game
08:04:41 <hppavilion[1]> With strange rules and cards based on memees
08:04:43 <hppavilion[1]> *memes
08:04:45 <hppavilion[1]> Or something
08:05:17 <b_jonas> hppavilion[1]: I was thinking of a nethack-themed one sort of, which I could call “Nethack: the Card Game”
08:05:18 <hppavilion[1]> Possibly a lot of programming jokes, perhaps even build programming into the card game
08:05:20 <b_jonas> I have some ideas but I couldn't get it to work reasonably yet.
08:05:53 <hppavilion[1]> ("foo" would be a morphic card, which does something morphy)
08:06:00 <b_jonas> Yes, nethack gives all the memes.
08:06:58 <hppavilion[1]> What /is/ nethack, exactly?
08:07:27 <hppavilion[1]> Ah.
08:07:32 <hppavilion[1]> (Yay for wiki)
08:07:35 -!- doesthiswork has quit (Write error: Broken pipe).
08:08:10 <b_jonas> hppavilion[1]: head over to #nethack or #nethack4 and ask there
08:08:10 <b_jonas> it's a cultic game
08:08:10 <b_jonas> video game
08:08:10 <hppavilion[1]> b_jonas: What should the data model of this card game be? xD
08:08:21 <hppavilion[1]> I figured
08:08:26 <hppavilion[1]> Based on google
08:08:48 <hppavilion[1]> Oooh, esocards should definitely feature Nomicy goodness
08:09:13 <b_jonas> what do you mean by "data model"?
08:09:32 <hppavilion[1]> b_jonas: What is the flow of "information" within the card game?
08:09:42 <hppavilion[1]> Perhaps it could change based on card playing...
08:10:33 <hppavilion[1]> I've never played one of those trading card games, so it'll probably come out horribly xD
08:10:44 <b_jonas> hppavilion[1]: I don't really know enough about that card game yet. I have problems with the basic workings and base rules, not the individual cards.
08:11:10 <hppavilion[1]> b_jonas: Which card game?
08:11:24 <hppavilion[1]> https://docs.google.com/document/d/1Jja2U09wCrBVdGJxtiNBjCd9N8fE1mjDvNhN8eyDaLE/edit?usp=sharing is where I'm compiling ideas, if you happen to think of anything
08:12:31 <b_jonas> hppavilion[1]: the hypothetical Nethack: the Card Game
08:12:46 <hppavilion[1]> Ah
08:13:32 <hppavilion[1]> Oh, were you confused by "what is the flow of \"information\" within the card game"? That was me explaining what I meant by data model within a card game
08:13:36 <b_jonas> wait, did you mean M:tG or some other trading card game (Pokémon TCG, Yu Gi Oh, etc, there are a lot these days)
08:14:39 <hppavilion[1]> b_jonas: I meant the card game I'm starting work on right now and am likely never going to finish, more than likely abandoning within a few days at most
08:14:42 <hppavilion[1]> Esocards
08:14:54 <hppavilion[1]> Item #1 on the idea list: Get a better name
08:15:37 <b_jonas> hppavilion[1]: no no no
08:15:37 <b_jonas> hppavilion[1]: you decide the name LAST
08:16:00 <b_jonas> after you know what the game is like
08:16:00 <b_jonas> until then, a development codename is fine
08:16:05 <hppavilion[1]> b_jonas: Well yes, but it's priority 1, meaning as soon as it's possible to name it's the highest priority
08:16:31 <hppavilion[1]> Renaming is always an option, unless it happens to get incredibly popular and it stops being an option
08:16:41 <b_jonas> if you don't like "esocards" as a development codename, just take a random name from some epic fiction that has tons of named characters.
08:16:41 <b_jonas> don't choose a popular name like "Athena" which has hundreds of things named of them
08:17:00 <hppavilion[1]> Yeah, "esocards" is good for now
08:17:15 <b_jonas> seriously, I don't get why people still keep naming everything Athene or Athena
08:17:38 -!- J_Arcane has quit (Ping timeout: 260 seconds).
08:20:38 <hppavilion[1]> So one of my ideas is that you need to have a moderate-to-advanced understanding of computer science to play at an effective level xD
08:20:46 <b_jonas> (Mind you, Mr. Orbán's government naming everything from Széchenyi István is also bad. I'm especially pissed off by the jerk move where they renamed Roosevelt tér (in Budapest).)
08:22:45 <b_jonas> I mean, Pallas Athene already has a freaking city and a noble metal named of him, isn't that enough?
08:22:45 <b_jonas> hppavilion[1]: what? to play what?
08:23:05 <hppavilion[1]> b_jonas: Esocards
08:24:28 <b_jonas> oh, you want such a card game? why not just take Lambda: the Gathering for that?
08:24:32 <b_jonas> hppavilion[1]: http://esolangs.org/wiki/Lambda:_the_Gathering
08:24:56 -!- EgoBot has joined.
08:25:36 <hppavilion[1]> b_jonas: That works, but I feel like spending some time and attempting to develop my own. A needlessly complicated one at that.
08:25:47 <hppavilion[1]> With data structures and semi-thue systems and shit
08:27:39 <hppavilion[1]> Also, I'd like it to be human-playable
08:28:06 <hppavilion[1]> It could be used, not as a gentle introduction to computer science, but as a deep-immersion introduction. Like going to France to learn French.
08:29:16 -!- esowiki has joined.
08:29:21 -!- esowiki has joined.
08:29:21 -!- esowiki has joined.
08:30:20 -!- esowiki has joined.
08:30:21 -!- glogbot has joined.
08:30:24 -!- esowiki has joined.
08:30:24 -!- esowiki has joined.
08:30:25 -!- EgoBot has joined.
08:30:31 -!- zgrep has joined.
08:35:08 -!- EgoBot has quit (Ping timeout: 272 seconds).
08:35:08 -!- glogbot has quit (Ping timeout: 272 seconds).
08:35:14 -!- esowiki has joined.
08:35:18 -!- esowiki has joined.
08:35:19 -!- esowiki has joined.
08:36:17 -!- esowiki has joined.
08:36:21 -!- esowiki has joined.
08:36:22 -!- esowiki has joined.
08:37:20 -!- esowiki has joined.
08:37:24 -!- esowiki has joined.
08:37:25 -!- esowiki has joined.
08:38:23 -!- esowiki has joined.
08:38:27 -!- esowiki has joined.
08:38:28 -!- esowiki has joined.
08:39:26 -!- esowiki has joined.
08:39:30 -!- esowiki has joined.
08:39:31 -!- esowiki has joined.
08:43:34 -!- esowiki has joined.
08:43:38 -!- esowiki has joined.
08:43:39 -!- esowiki has joined.
08:44:37 -!- esowiki has joined.
08:44:41 -!- esowiki has joined.
08:44:42 -!- esowiki has joined.
08:45:41 -!- esowiki has joined.
08:45:45 -!- esowiki has joined.
08:45:45 -!- esowiki has joined.
08:46:44 -!- esowiki has joined.
08:46:48 -!- esowiki has joined.
08:46:48 -!- esowiki has joined.
08:47:15 -!- esowiki has joined.
08:47:19 -!- esowiki has joined.
08:47:19 -!- esowiki has joined.
08:48:18 -!- esowiki has joined.
08:48:22 -!- esowiki has joined.
08:48:23 -!- esowiki has joined.
08:49:21 -!- esowiki has joined.
08:49:25 -!- esowiki has joined.
08:49:26 -!- esowiki has joined.
08:50:24 -!- esowiki has joined.
08:50:28 -!- esowiki has joined.
08:50:29 -!- esowiki has joined.
08:51:27 -!- esowiki has joined.
08:51:31 -!- esowiki has joined.
08:51:32 -!- esowiki has joined.
08:52:30 -!- esowiki has joined.
08:52:34 -!- esowiki has joined.
08:52:35 -!- esowiki has joined.
08:53:34 -!- esowiki has joined.
08:53:38 -!- esowiki has joined.
08:53:38 -!- esowiki has joined.
08:54:37 -!- esowiki has joined.
08:54:41 -!- esowiki has joined.
08:54:41 -!- esowiki has joined.
08:55:40 -!- esowiki has joined.
08:55:44 -!- esowiki has joined.
08:55:44 -!- esowiki has joined.
08:56:43 -!- esowiki has joined.
08:56:47 -!- esowiki has joined.
08:56:47 -!- esowiki has joined.
08:57:46 -!- esowiki has joined.
08:57:50 -!- esowiki has joined.
08:57:50 -!- esowiki has joined.
08:58:49 -!- esowiki has joined.
08:58:53 -!- esowiki has joined.
08:58:54 -!- esowiki has joined.
08:59:52 -!- esowiki has joined.
08:59:53 -!- glogbot has joined.
08:59:56 -!- esowiki has joined.
08:59:57 -!- esowiki has joined.
09:02:52 -!- Deewiant has quit (*.net *.split).
09:02:52 -!- Sgeo_ has quit (*.net *.split).
09:02:55 -!- staffehn has quit (*.net *.split).
09:02:55 -!- zgrep has quit (*.net *.split).
09:03:00 -!- hppavilion[1] has quit (*.net *.split).
09:03:02 -!- Patashu has quit (*.net *.split).
09:03:03 -!- digitalcold has quit (*.net *.split).
09:03:05 -!- gniourf has quit (*.net *.split).
09:03:07 -!- bb010g has quit (*.net *.split).
09:03:08 -!- tromp has quit (*.net *.split).
09:03:14 -!- HackEgo has quit (*.net *.split).
09:04:23 -!- Patashu has joined.
09:10:53 -!- esowiki has joined.
09:10:57 -!- esowiki has joined.
09:10:57 -!- esowiki has joined.
09:11:56 -!- esowiki has joined.
09:12:00 -!- esowiki has joined.
09:12:00 -!- esowiki has joined.
09:12:59 -!- esowiki has joined.
09:13:03 -!- esowiki has joined.
09:13:04 -!- esowiki has joined.
09:14:02 -!- esowiki has joined.
09:14:06 -!- esowiki has joined.
09:14:07 -!- esowiki has joined.
09:15:05 -!- esowiki has joined.
09:15:09 -!- esowiki has joined.
09:15:10 -!- esowiki has joined.
09:16:08 -!- esowiki has joined.
09:16:12 -!- esowiki has joined.
09:16:13 -!- esowiki has joined.
09:17:12 -!- esowiki has joined.
09:17:16 -!- esowiki has joined.
09:17:16 -!- esowiki has joined.
09:18:20 -!- esowiki has joined.
09:18:24 -!- esowiki has joined.
09:18:24 -!- esowiki has joined.
09:19:23 -!- esowiki has joined.
09:19:24 -!- glogbot has joined.
09:19:27 -!- esowiki has joined.
09:19:27 -!- esowiki has joined.
09:19:48 -!- EgoBot has joined.
09:24:05 -!- bb010g has quit (Excess Flood).
09:25:46 -!- Patashu has quit (Ping timeout: 240 seconds).
09:26:46 -!- hppavilion[1] has quit (Ping timeout: 240 seconds).
09:27:06 -!- gniourf has quit (Ping timeout: 240 seconds).
09:29:08 -!- bb010g has joined.
09:31:32 -!- FireFly has joined.
09:33:06 -!- relrod_ has quit (*.net *.split).
09:33:07 -!- kline has quit (*.net *.split).
09:33:07 -!- MC8 has quit (*.net *.split).
09:33:08 -!- ocharles__ has quit (*.net *.split).
09:33:08 -!- glowcoil has quit (*.net *.split).
09:33:08 -!- cnr has quit (*.net *.split).
09:33:09 -!- Sprocklem has quit (*.net *.split).
09:33:09 -!- sebbu has quit (*.net *.split).
09:33:09 -!- fizzie has quit (*.net *.split).
09:33:10 -!- lifthrasiir has quit (*.net *.split).
09:33:10 -!- nisstyre has quit (*.net *.split).
09:33:10 -!- Jafet has quit (*.net *.split).
09:33:10 -!- \oren\ has quit (*.net *.split).
09:33:10 -!- MoALTz has quit (*.net *.split).
09:33:11 -!- SirCmpwn has quit (*.net *.split).
09:33:11 -!- MDream has quit (*.net *.split).
09:33:11 -!- perrier_ has quit (*.net *.split).
09:33:11 -!- Taneb has quit (*.net *.split).
09:33:11 -!- heroux has quit (*.net *.split).
09:33:11 -!- mtve has quit (*.net *.split).
09:33:12 -!- Gregor` has quit (*.net *.split).
09:33:12 -!- APic has quit (*.net *.split).
09:33:12 -!- ineiros has quit (*.net *.split).
09:33:12 -!- shachaf has quit (*.net *.split).
09:33:13 -!- kragniz has quit (*.net *.split).
09:33:13 -!- andrew has quit (*.net *.split).
09:33:13 -!- aloril has quit (*.net *.split).
09:33:13 -!- paul2520 has quit (*.net *.split).
09:33:13 -!- atehwa has quit (*.net *.split).
09:33:14 -!- quintopia has quit (*.net *.split).
09:33:14 -!- deltab has quit (*.net *.split).
09:33:14 -!- b_jonas has quit (*.net *.split).
09:33:15 -!- coppro has quit (*.net *.split).
09:33:15 -!- fungot has quit (*.net *.split).
09:33:15 -!- ski has quit (*.net *.split).
09:33:15 -!- tromp__ has quit (*.net *.split).
09:33:15 -!- PinealGlandOptic has quit (*.net *.split).
09:33:15 -!- diginet has quit (*.net *.split).
09:33:15 -!- nitrix has quit (*.net *.split).
09:33:16 -!- pdxleif has quit (*.net *.split).
09:33:16 -!- Melvar has quit (*.net *.split).
09:33:17 -!- clog has quit (*.net *.split).
09:33:17 -!- zzo38 has quit (*.net *.split).
09:33:17 -!- myname has quit (*.net *.split).
09:33:17 -!- tswett has quit (*.net *.split).
09:33:17 -!- Froox has quit (*.net *.split).
09:33:18 -!- idris-bot has quit (*.net *.split).
09:33:18 -!- erdic has quit (*.net *.split).
09:33:18 -!- scoofy has quit (*.net *.split).
09:33:18 -!- int-e has quit (*.net *.split).
09:33:18 -!- yorick has quit (*.net *.split).
09:33:18 -!- rntz has quit (*.net *.split).
09:33:18 -!- izabera has quit (*.net *.split).
09:33:18 -!- gde33 has quit (*.net *.split).
09:33:18 -!- jix has quit (*.net *.split).
09:33:18 -!- olsner has quit (*.net *.split).
09:33:19 -!- Xe has quit (*.net *.split).
09:33:19 -!- skarn has quit (*.net *.split).
09:33:19 -!- Hoolootwo has quit (*.net *.split).
09:33:19 -!- Lymia has quit (*.net *.split).
09:33:19 -!- rodgort has quit (*.net *.split).
09:33:20 -!- haavard has quit (*.net *.split).
09:33:20 -!- Lord_of_Life has quit (*.net *.split).
09:33:20 -!- mbrcknl has quit (*.net *.split).
09:33:20 -!- pikhq_ has quit (*.net *.split).
09:33:20 -!- lambdabot has quit (*.net *.split).
09:33:20 -!- jameseb- has quit (*.net *.split).
09:33:20 -!- sewilton has quit (*.net *.split).
09:33:21 -!- gonad has quit (*.net *.split).
09:33:21 -!- fractal has quit (*.net *.split).
09:33:21 -!- nchambers has quit (*.net *.split).
09:33:21 -!- myndzl has quit (*.net *.split).
09:33:21 -!- nortti has quit (*.net *.split).
09:33:21 -!- puckipedia has quit (*.net *.split).
09:33:22 -!- augur has quit (*.net *.split).
09:33:22 -!- trn has quit (*.net *.split).
09:33:22 -!- Nithogg has quit (*.net *.split).
09:33:22 -!- edwardk has quit (*.net *.split).
09:33:22 -!- shikhin has quit (*.net *.split).
09:33:23 -!- bb010g has quit (Max SendQ exceeded).
09:34:50 -!- hppavilion[2] has joined.
09:34:50 -!- relrod_ has joined.
09:34:50 -!- Sprocklem has joined.
09:34:50 -!- kragniz has joined.
09:34:50 -!- andrew has joined.
09:34:50 -!- Jafet has joined.
09:34:50 -!- aloril has joined.
09:34:50 -!- sebbu has joined.
09:34:50 -!- fizzie has joined.
09:34:50 -!- lifthrasiir has joined.
09:34:50 -!- Xe has joined.
09:34:50 -!- paul2520 has joined.
09:34:50 -!- jameseb- has joined.
09:34:50 -!- atehwa has joined.
09:34:50 -!- nisstyre has joined.
09:34:50 -!- cnr has joined.
09:34:50 -!- glowcoil has joined.
09:34:50 -!- ocharles__ has joined.
09:34:50 -!- kline has joined.
09:34:50 -!- MC8 has joined.
09:34:50 -!- shachaf has joined.
09:34:50 -!- ineiros has joined.
09:34:50 -!- APic has joined.
09:34:50 -!- Gregor` has joined.
09:34:50 -!- mtve has joined.
09:34:50 -!- heroux has joined.
09:34:50 -!- Taneb has joined.
09:34:50 -!- perrier_ has joined.
09:34:50 -!- MDream has joined.
09:34:50 -!- SirCmpwn has joined.
09:34:50 -!- MoALTz has joined.
09:34:50 -!- \oren\ has joined.
09:34:50 -!- pdxleif has joined.
09:34:50 -!- nitrix has joined.
09:34:50 -!- diginet has joined.
09:34:50 -!- PinealGlandOptic has joined.
09:34:50 -!- tromp__ has joined.
09:34:50 -!- ski has joined.
09:34:50 -!- fungot has joined.
09:34:50 -!- coppro has joined.
09:34:50 -!- b_jonas has joined.
09:34:50 -!- deltab has joined.
09:34:50 -!- quintopia has joined.
09:34:50 -!- Melvar has joined.
09:34:50 -!- clog has joined.
09:34:50 -!- skarn has joined.
09:34:50 -!- lambdabot has joined.
09:34:50 -!- pikhq_ has joined.
09:34:50 -!- shikhin has joined.
09:34:50 -!- edwardk has joined.
09:34:50 -!- Nithogg has joined.
09:34:50 -!- trn has joined.
09:34:50 -!- erdic has joined.
09:34:50 -!- scoofy has joined.
09:34:50 -!- int-e has joined.
09:34:50 -!- yorick has joined.
09:34:50 -!- rntz has joined.
09:34:50 -!- izabera has joined.
09:34:50 -!- gde33 has joined.
09:34:50 -!- jix has joined.
09:34:50 -!- olsner has joined.
09:34:50 -!- idris-bot has joined.
09:34:50 -!- mbrcknl has joined.
09:34:50 -!- Lord_of_Life has joined.
09:34:50 -!- augur has joined.
09:34:50 -!- haavard has joined.
09:34:50 -!- puckipedia has joined.
09:34:50 -!- Froox has joined.
09:34:50 -!- tswett has joined.
09:34:50 -!- nortti has joined.
09:34:50 -!- myname has joined.
09:34:50 -!- myndzl has joined.
09:34:50 -!- nchambers has joined.
09:34:50 -!- rodgort has joined.
09:34:50 -!- fractal has joined.
09:34:50 -!- gonad has joined.
09:34:50 -!- Lymia has joined.
09:34:50 -!- Hoolootwo has joined.
09:34:50 -!- sewilton has joined.
09:34:50 -!- zzo38 has joined.
09:35:06 -!- FireFly has quit (Changing host).
09:35:07 -!- FireFly has joined.
09:35:07 -!- j-bot has joined.
09:40:08 -!- singingboyo has joined.
09:40:46 -!- vifino has joined.
09:43:21 -!- Patashu has joined.
09:44:22 -!- bb010g has joined.
09:45:13 -!- gniourf has joined.
09:52:30 <Taneb> @ping
09:52:30 <lambdabot> pong
09:54:26 -!- Patashu has quit (Ping timeout: 240 seconds).
09:55:26 -!- gniourf has quit (Ping timeout: 240 seconds).
10:06:24 -!- Patashu has joined.
10:11:22 -!- gniourf has joined.
10:17:54 -!- sewilton_ has joined.
10:20:29 -!- myndzl has quit (Ping timeout: 272 seconds).
10:20:30 -!- sewilton has quit (Ping timeout: 272 seconds).
10:20:30 -!- puckipedia has quit (Ping timeout: 272 seconds).
10:20:30 -!- edwardk has quit (Ping timeout: 272 seconds).
10:20:31 -!- myndzi has joined.
10:21:13 -!- sewilton_ has changed nick to sewilton.
10:21:18 -!- puckipedia has joined.
10:21:34 -!- edwardk has joined.
10:26:46 -!- Patashu has quit (Ping timeout: 240 seconds).
10:27:06 -!- gniourf has quit (Ping timeout: 240 seconds).
10:27:07 -!- zgrep has quit (Ping timeout: 240 seconds).
10:27:46 -!- Deewiant has quit (Ping timeout: 240 seconds).
10:27:46 -!- tromp has quit (Ping timeout: 240 seconds).
10:28:26 -!- Sgeo_ has quit (Ping timeout: 240 seconds).
10:28:26 -!- digitalcold has quit (Ping timeout: 240 seconds).
10:34:26 -!- singingboyo has quit (*.net *.split).
10:34:36 -!- vifino has quit (*.net *.split).
10:34:36 -!- j-bot has quit (*.net *.split).
10:34:36 -!- relrod_ has quit (*.net *.split).
10:34:36 -!- kline has quit (*.net *.split).
10:34:36 -!- MC8 has quit (*.net *.split).
10:34:36 -!- ocharles__ has quit (*.net *.split).
10:34:36 -!- glowcoil has quit (*.net *.split).
10:34:36 -!- cnr has quit (*.net *.split).
10:34:36 -!- Sprocklem has quit (*.net *.split).
10:34:36 -!- sebbu has quit (*.net *.split).
10:34:36 -!- fizzie has quit (*.net *.split).
10:34:36 -!- lifthrasiir has quit (*.net *.split).
10:34:36 -!- nisstyre has quit (*.net *.split).
10:34:36 -!- Jafet has quit (*.net *.split).
10:34:36 -!- \oren\ has quit (*.net *.split).
10:34:36 -!- MoALTz has quit (*.net *.split).
10:34:36 -!- SirCmpwn has quit (*.net *.split).
10:34:36 -!- MDream has quit (*.net *.split).
10:34:36 -!- perrier_ has quit (*.net *.split).
10:34:36 -!- Taneb has quit (*.net *.split).
10:34:36 -!- heroux has quit (*.net *.split).
10:34:36 -!- mtve has quit (*.net *.split).
10:34:36 -!- Gregor` has quit (*.net *.split).
10:34:36 -!- APic has quit (*.net *.split).
10:34:36 -!- ineiros has quit (*.net *.split).
10:34:36 -!- shachaf has quit (*.net *.split).
10:34:36 -!- hppavilion[2] has quit (*.net *.split).
10:34:36 -!- kragniz has quit (*.net *.split).
10:34:36 -!- andrew has quit (*.net *.split).
10:34:36 -!- aloril has quit (*.net *.split).
10:34:36 -!- paul2520 has quit (*.net *.split).
10:34:36 -!- atehwa has quit (*.net *.split).
10:34:36 -!- quintopia has quit (*.net *.split).
10:34:36 -!- deltab has quit (*.net *.split).
10:34:36 -!- b_jonas has quit (*.net *.split).
10:34:36 -!- coppro has quit (*.net *.split).
10:34:36 -!- fungot has quit (*.net *.split).
10:34:36 -!- ski has quit (*.net *.split).
10:34:36 -!- tromp__ has quit (*.net *.split).
10:34:36 -!- PinealGlandOptic has quit (*.net *.split).
10:34:36 -!- diginet has quit (*.net *.split).
10:34:36 -!- nitrix has quit (*.net *.split).
10:34:36 -!- pdxleif has quit (*.net *.split).
10:34:36 -!- Melvar has quit (*.net *.split).
10:34:36 -!- clog has quit (*.net *.split).
10:34:36 -!- zzo38 has quit (*.net *.split).
10:34:36 -!- myname has quit (*.net *.split).
10:34:36 -!- tswett has quit (*.net *.split).
10:34:36 -!- Froox has quit (*.net *.split).
10:34:36 -!- idris-bot has quit (*.net *.split).
10:34:36 -!- erdic has quit (*.net *.split).
10:34:36 -!- scoofy has quit (*.net *.split).
10:34:36 -!- int-e has quit (*.net *.split).
10:34:36 -!- yorick has quit (*.net *.split).
10:34:36 -!- rntz has quit (*.net *.split).
10:34:36 -!- izabera has quit (*.net *.split).
10:34:36 -!- gde33 has quit (*.net *.split).
10:34:36 -!- jix has quit (*.net *.split).
10:34:36 -!- olsner has quit (*.net *.split).
10:34:36 -!- Xe has quit (*.net *.split).
10:34:36 -!- skarn has quit (*.net *.split).
10:34:36 -!- Hoolootwo has quit (*.net *.split).
10:34:36 -!- Lymia has quit (*.net *.split).
10:34:36 -!- rodgort has quit (*.net *.split).
10:34:36 -!- haavard has quit (*.net *.split).
10:34:36 -!- Lord_of_Life has quit (*.net *.split).
10:34:36 -!- mbrcknl has quit (*.net *.split).
10:34:36 -!- pikhq_ has quit (*.net *.split).
10:34:36 -!- lambdabot has quit (*.net *.split).
10:34:36 -!- puckipedia has quit (*.net *.split).
10:34:36 -!- myndzi has quit (*.net *.split).
10:34:36 -!- jameseb- has quit (*.net *.split).
10:34:36 -!- gonad has quit (*.net *.split).
10:34:36 -!- fractal has quit (*.net *.split).
10:34:36 -!- nchambers has quit (*.net *.split).
10:34:36 -!- nortti has quit (*.net *.split).
10:34:36 -!- augur has quit (*.net *.split).
10:34:36 -!- trn has quit (*.net *.split).
10:34:36 -!- Nithogg has quit (*.net *.split).
10:34:36 -!- shikhin has quit (*.net *.split).
10:42:58 -!- zgrep_ has joined.
10:42:58 -!- tromp_ has joined.
10:42:58 -!- puckipedia has joined.
10:42:58 -!- myndzi has joined.
10:42:58 -!- vifino has joined.
10:42:58 -!- singingboyo has joined.
10:42:58 -!- j-bot has joined.
10:42:58 -!- hppavilion[2] has joined.
10:42:58 -!- relrod_ has joined.
10:42:58 -!- Sprocklem has joined.
10:42:58 -!- kragniz has joined.
10:42:58 -!- andrew has joined.
10:42:58 -!- Jafet has joined.
10:42:58 -!- aloril has joined.
10:42:58 -!- sebbu has joined.
10:42:58 -!- fizzie has joined.
10:42:58 -!- lifthrasiir has joined.
10:42:58 -!- Xe has joined.
10:42:58 -!- paul2520 has joined.
10:42:58 -!- jameseb- has joined.
10:42:58 -!- atehwa has joined.
10:42:58 -!- nisstyre has joined.
10:42:58 -!- cnr has joined.
10:42:58 -!- glowcoil has joined.
10:42:58 -!- ocharles__ has joined.
10:42:58 -!- kline has joined.
10:42:58 -!- MC8 has joined.
10:42:58 -!- shachaf has joined.
10:42:58 -!- ineiros has joined.
10:42:58 -!- APic has joined.
10:42:58 -!- Gregor` has joined.
10:42:58 -!- mtve has joined.
10:42:58 -!- heroux has joined.
10:42:58 -!- Taneb has joined.
10:42:58 -!- perrier_ has joined.
10:42:58 -!- MDream has joined.
10:42:58 -!- SirCmpwn has joined.
10:42:58 -!- MoALTz has joined.
10:42:58 -!- \oren\ has joined.
10:42:58 -!- pdxleif has joined.
10:42:58 -!- nitrix has joined.
10:42:58 -!- diginet has joined.
10:42:58 -!- PinealGlandOptic has joined.
10:42:58 -!- tromp__ has joined.
10:42:58 -!- ski has joined.
10:42:58 -!- fungot has joined.
10:42:58 -!- coppro has joined.
10:42:58 -!- b_jonas has joined.
10:42:58 -!- deltab has joined.
10:42:58 -!- quintopia has joined.
10:42:58 -!- Melvar has joined.
10:42:58 -!- clog has joined.
10:42:58 -!- skarn has joined.
10:42:58 -!- zzo38 has joined.
10:42:58 -!- Hoolootwo has joined.
10:42:58 -!- Lymia has joined.
10:42:58 -!- gonad has joined.
10:42:58 -!- fractal has joined.
10:42:58 -!- rodgort has joined.
10:42:58 -!- nchambers has joined.
10:42:58 -!- myname has joined.
10:42:58 -!- nortti has joined.
10:42:58 -!- tswett has joined.
10:42:58 -!- Froox has joined.
10:42:58 -!- haavard has joined.
10:42:58 -!- augur has joined.
10:42:58 -!- Lord_of_Life has joined.
10:42:58 -!- mbrcknl has joined.
10:42:58 -!- idris-bot has joined.
10:42:58 -!- olsner has joined.
10:42:58 -!- jix has joined.
10:42:58 -!- gde33 has joined.
10:42:58 -!- izabera has joined.
10:42:58 -!- rntz has joined.
10:42:58 -!- yorick has joined.
10:42:58 -!- int-e has joined.
10:42:59 -!- scoofy has joined.
10:42:59 -!- erdic has joined.
10:42:59 -!- trn has joined.
10:42:59 -!- Nithogg has joined.
10:42:59 -!- shikhin has joined.
10:42:59 -!- pikhq_ has joined.
10:42:59 -!- lambdabot has joined.
10:45:57 -!- vifino has quit (*.net *.split).
10:45:57 -!- j-bot has quit (*.net *.split).
10:45:58 -!- relrod_ has quit (*.net *.split).
10:46:00 -!- kline has quit (*.net *.split).
10:46:01 -!- MC8 has quit (*.net *.split).
10:46:02 -!- ocharles__ has quit (*.net *.split).
10:46:03 -!- glowcoil has quit (*.net *.split).
10:46:03 -!- cnr has quit (*.net *.split).
10:46:04 -!- Sprocklem has quit (*.net *.split).
10:46:04 -!- sebbu has quit (*.net *.split).
10:46:05 -!- fizzie has quit (*.net *.split).
10:46:05 -!- lifthrasiir has quit (*.net *.split).
10:46:05 -!- nisstyre has quit (*.net *.split).
10:46:05 -!- Jafet has quit (*.net *.split).
10:46:05 -!- \oren\ has quit (*.net *.split).
10:46:06 -!- MoALTz has quit (*.net *.split).
10:46:06 -!- SirCmpwn has quit (*.net *.split).
10:46:06 -!- MDream has quit (*.net *.split).
10:46:06 -!- perrier_ has quit (*.net *.split).
10:46:06 -!- Taneb has quit (*.net *.split).
10:46:06 -!- heroux has quit (*.net *.split).
10:46:06 -!- mtve has quit (*.net *.split).
10:46:07 -!- Gregor` has quit (*.net *.split).
10:46:07 -!- APic has quit (*.net *.split).
10:46:07 -!- ineiros has quit (*.net *.split).
10:46:07 -!- shachaf has quit (*.net *.split).
10:46:08 -!- hppavilion[2] has quit (*.net *.split).
10:46:08 -!- kragniz has quit (*.net *.split).
10:46:08 -!- andrew has quit (*.net *.split).
10:46:08 -!- aloril has quit (*.net *.split).
10:46:08 -!- paul2520 has quit (*.net *.split).
10:46:08 -!- atehwa has quit (*.net *.split).
10:46:09 -!- quintopia has quit (*.net *.split).
10:46:09 -!- deltab has quit (*.net *.split).
10:46:09 -!- b_jonas has quit (*.net *.split).
10:46:09 -!- coppro has quit (*.net *.split).
10:46:09 -!- fungot has quit (*.net *.split).
10:46:10 -!- ski has quit (*.net *.split).
10:46:10 -!- tromp__ has quit (*.net *.split).
10:46:10 -!- PinealGlandOptic has quit (*.net *.split).
10:46:10 -!- diginet has quit (*.net *.split).
10:46:10 -!- nitrix has quit (*.net *.split).
10:46:10 -!- pdxleif has quit (*.net *.split).
10:46:10 -!- singingboyo has quit (*.net *.split).
10:46:11 -!- Melvar has quit (*.net *.split).
10:46:11 -!- clog has quit (*.net *.split).
10:46:11 -!- zzo38 has quit (*.net *.split).
10:46:11 -!- myname has quit (*.net *.split).
10:46:12 -!- tswett has quit (*.net *.split).
10:46:12 -!- Froox has quit (*.net *.split).
10:46:12 -!- idris-bot has quit (*.net *.split).
10:46:12 -!- erdic has quit (*.net *.split).
10:46:12 -!- scoofy has quit (*.net *.split).
10:46:12 -!- int-e has quit (*.net *.split).
10:46:12 -!- yorick has quit (*.net *.split).
10:46:12 -!- rntz has quit (*.net *.split).
10:46:12 -!- izabera has quit (*.net *.split).
10:46:12 -!- gde33 has quit (*.net *.split).
10:46:13 -!- jix has quit (*.net *.split).
10:46:13 -!- olsner has quit (*.net *.split).
10:46:13 -!- zgrep_ has quit (*.net *.split).
10:46:13 -!- tromp_ has quit (*.net *.split).
10:46:14 -!- Xe has quit (*.net *.split).
10:46:14 -!- skarn has quit (*.net *.split).
10:46:14 -!- Hoolootwo has quit (*.net *.split).
10:46:14 -!- Lymia has quit (*.net *.split).
10:46:14 -!- rodgort has quit (*.net *.split).
10:46:14 -!- haavard has quit (*.net *.split).
10:46:14 -!- Lord_of_Life has quit (*.net *.split).
10:46:14 -!- mbrcknl has quit (*.net *.split).
10:46:14 -!- pikhq_ has quit (*.net *.split).
10:46:15 -!- lambdabot has quit (*.net *.split).
10:46:15 -!- puckipedia has quit (*.net *.split).
10:46:15 -!- myndzi has quit (*.net *.split).
10:46:15 -!- jameseb- has quit (*.net *.split).
10:46:15 -!- gonad has quit (*.net *.split).
10:46:15 -!- fractal has quit (*.net *.split).
10:46:16 -!- nchambers has quit (*.net *.split).
10:46:16 -!- nortti has quit (*.net *.split).
10:46:16 -!- augur has quit (*.net *.split).
10:46:16 -!- trn has quit (*.net *.split).
10:46:16 -!- Nithogg has quit (*.net *.split).
10:46:17 -!- shikhin has quit (*.net *.split).
10:47:21 -!- zgrep_ has joined.
10:47:21 -!- tromp_ has joined.
10:47:21 -!- puckipedia has joined.
10:47:21 -!- myndzi has joined.
10:47:21 -!- vifino has joined.
10:47:21 -!- singingboyo has joined.
10:47:21 -!- j-bot has joined.
10:47:21 -!- hppavilion[2] has joined.
10:47:21 -!- relrod_ has joined.
10:47:21 -!- Sprocklem has joined.
10:47:21 -!- kragniz has joined.
10:47:21 -!- andrew has joined.
10:47:21 -!- Jafet has joined.
10:47:21 -!- aloril has joined.
10:47:21 -!- sebbu has joined.
10:47:21 -!- fizzie has joined.
10:47:21 -!- lifthrasiir has joined.
10:47:21 -!- Xe has joined.
10:47:21 -!- paul2520 has joined.
10:47:21 -!- jameseb- has joined.
10:47:21 -!- atehwa has joined.
10:47:21 -!- nisstyre has joined.
10:47:21 -!- cnr has joined.
10:47:21 -!- glowcoil has joined.
10:47:21 -!- ocharles__ has joined.
10:47:21 -!- kline has joined.
10:47:21 -!- MC8 has joined.
10:47:21 -!- shachaf has joined.
10:47:21 -!- ineiros has joined.
10:47:21 -!- APic has joined.
10:47:21 -!- Gregor` has joined.
10:47:21 -!- mtve has joined.
10:47:21 -!- heroux has joined.
10:47:21 -!- Taneb has joined.
10:47:21 -!- perrier_ has joined.
10:47:21 -!- MDream has joined.
10:47:21 -!- SirCmpwn has joined.
10:47:21 -!- MoALTz has joined.
10:47:21 -!- \oren\ has joined.
10:47:21 -!- pdxleif has joined.
10:47:21 -!- nitrix has joined.
10:47:21 -!- diginet has joined.
10:47:21 -!- PinealGlandOptic has joined.
10:47:21 -!- tromp__ has joined.
10:47:21 -!- ski has joined.
10:47:21 -!- fungot has joined.
10:47:21 -!- coppro has joined.
10:47:21 -!- b_jonas has joined.
10:47:21 -!- deltab has joined.
10:47:21 -!- quintopia has joined.
10:47:21 -!- Melvar has joined.
10:47:21 -!- clog has joined.
10:47:21 -!- skarn has joined.
10:47:21 -!- lambdabot has joined.
10:47:21 -!- pikhq_ has joined.
10:47:21 -!- shikhin has joined.
10:47:21 -!- Nithogg has joined.
10:47:21 -!- trn has joined.
10:47:21 -!- erdic has joined.
10:47:21 -!- scoofy has joined.
10:47:21 -!- int-e has joined.
10:47:21 -!- yorick has joined.
10:47:21 -!- rntz has joined.
10:47:21 -!- izabera has joined.
10:47:21 -!- gde33 has joined.
10:47:21 -!- jix has joined.
10:47:21 -!- olsner has joined.
10:47:21 -!- idris-bot has joined.
10:47:21 -!- mbrcknl has joined.
10:47:21 -!- Lord_of_Life has joined.
10:47:21 -!- augur has joined.
10:47:21 -!- haavard has joined.
10:47:21 -!- Froox has joined.
10:47:21 -!- tswett has joined.
10:47:21 -!- nortti has joined.
10:47:21 -!- myname has joined.
10:47:21 -!- nchambers has joined.
10:47:21 -!- rodgort has joined.
10:47:21 -!- fractal has joined.
10:47:21 -!- gonad has joined.
10:47:21 -!- Lymia has joined.
10:47:21 -!- Hoolootwo has joined.
10:47:21 -!- zzo38 has joined.
10:47:37 -!- bb010g has quit (Max SendQ exceeded).
10:58:29 -!- puckipedia has quit (Ping timeout: 325 seconds).
11:00:16 -!- puckipedia has joined.
11:00:48 -!- bb010g has joined.
11:07:49 -!- Patashu has joined.
11:09:29 <hppavilion[2]> Well that explains a lot.
11:12:12 -!- mbrcknl has quit (Ping timeout: 264 seconds).
11:12:18 -!- bb010g has quit (Excess Flood).
11:13:46 -!- mbrcknl has joined.
11:24:26 -!- singingboyo has quit (*.net *.split).
11:24:26 -!- vifino has quit (*.net *.split).
11:24:26 -!- j-bot has quit (*.net *.split).
11:24:26 -!- relrod_ has quit (*.net *.split).
11:24:27 -!- kline has quit (*.net *.split).
11:24:27 -!- MC8 has quit (*.net *.split).
11:24:28 -!- ocharles__ has quit (*.net *.split).
11:24:28 -!- glowcoil has quit (*.net *.split).
11:24:28 -!- cnr has quit (*.net *.split).
11:24:28 -!- Sprocklem has quit (*.net *.split).
11:24:28 -!- sebbu has quit (*.net *.split).
11:24:29 -!- fizzie has quit (*.net *.split).
11:24:29 -!- lifthrasiir has quit (*.net *.split).
11:24:29 -!- nisstyre has quit (*.net *.split).
11:24:29 -!- Jafet has quit (*.net *.split).
11:24:29 -!- \oren\ has quit (*.net *.split).
11:24:29 -!- MoALTz has quit (*.net *.split).
11:24:29 -!- SirCmpwn has quit (*.net *.split).
11:24:29 -!- MDream has quit (*.net *.split).
11:24:30 -!- perrier_ has quit (*.net *.split).
11:24:30 -!- Taneb has quit (*.net *.split).
11:24:30 -!- heroux has quit (*.net *.split).
11:24:30 -!- mtve has quit (*.net *.split).
11:24:30 -!- Gregor` has quit (*.net *.split).
11:24:30 -!- APic has quit (*.net *.split).
11:24:30 -!- ineiros has quit (*.net *.split).
11:24:31 -!- shachaf has quit (*.net *.split).
11:24:31 -!- hppavilion[2] has quit (*.net *.split).
11:24:31 -!- kragniz has quit (*.net *.split).
11:24:31 -!- andrew has quit (*.net *.split).
11:24:31 -!- aloril has quit (*.net *.split).
11:24:31 -!- paul2520 has quit (*.net *.split).
11:24:31 -!- atehwa has quit (*.net *.split).
11:24:31 -!- quintopia has quit (*.net *.split).
11:24:31 -!- deltab has quit (*.net *.split).
11:24:32 -!- b_jonas has quit (*.net *.split).
11:24:32 -!- coppro has quit (*.net *.split).
11:24:32 -!- fungot has quit (*.net *.split).
11:24:32 -!- ski has quit (*.net *.split).
11:24:32 -!- tromp__ has quit (*.net *.split).
11:24:32 -!- PinealGlandOptic has quit (*.net *.split).
11:24:32 -!- diginet has quit (*.net *.split).
11:24:32 -!- nitrix has quit (*.net *.split).
11:24:33 -!- pdxleif has quit (*.net *.split).
11:24:33 -!- Melvar has quit (*.net *.split).
11:24:33 -!- clog has quit (*.net *.split).
11:24:33 -!- zzo38 has quit (*.net *.split).
11:24:33 -!- myname has quit (*.net *.split).
11:24:33 -!- tswett has quit (*.net *.split).
11:24:33 -!- Froox has quit (*.net *.split).
11:24:33 -!- idris-bot has quit (*.net *.split).
11:24:33 -!- erdic has quit (*.net *.split).
11:24:34 -!- scoofy has quit (*.net *.split).
11:24:34 -!- int-e has quit (*.net *.split).
11:24:34 -!- yorick has quit (*.net *.split).
11:24:34 -!- rntz has quit (*.net *.split).
11:24:34 -!- izabera has quit (*.net *.split).
11:24:34 -!- gde33 has quit (*.net *.split).
11:24:34 -!- jix has quit (*.net *.split).
11:24:34 -!- olsner has quit (*.net *.split).
11:24:34 -!- mbrcknl has quit (*.net *.split).
11:24:34 -!- Patashu has quit (*.net *.split).
11:24:34 -!- puckipedia has quit (*.net *.split).
11:24:34 -!- zgrep_ has quit (*.net *.split).
11:24:34 -!- tromp_ has quit (*.net *.split).
11:24:35 -!- Xe has quit (*.net *.split).
11:24:35 -!- skarn has quit (*.net *.split).
11:24:35 -!- Hoolootwo has quit (*.net *.split).
11:24:35 -!- Lymia has quit (*.net *.split).
11:24:35 -!- rodgort has quit (*.net *.split).
11:24:35 -!- haavard has quit (*.net *.split).
11:24:35 -!- Lord_of_Life has quit (*.net *.split).
11:24:35 -!- pikhq_ has quit (*.net *.split).
11:24:35 -!- lambdabot has quit (*.net *.split).
11:24:35 -!- myndzi has quit (*.net *.split).
11:24:35 -!- jameseb- has quit (*.net *.split).
11:24:36 -!- gonad has quit (*.net *.split).
11:24:36 -!- fractal has quit (*.net *.split).
11:24:36 -!- nchambers has quit (*.net *.split).
11:24:36 -!- nortti has quit (*.net *.split).
11:24:36 -!- augur has quit (*.net *.split).
11:24:36 -!- trn has quit (*.net *.split).
11:24:36 -!- Nithogg has quit (*.net *.split).
11:24:37 -!- shikhin has quit (*.net *.split).
11:36:28 -!- mbrcknl has joined.
11:36:28 -!- Lymia has joined.
11:36:28 -!- bb010g has joined.
11:36:28 -!- myndzi has joined.
11:36:28 -!- vifino has joined.
11:36:28 -!- singingboyo has joined.
11:36:28 -!- j-bot has joined.
11:36:28 -!- hppavilion[2] has joined.
11:36:28 -!- relrod_ has joined.
11:36:28 -!- Sprocklem has joined.
11:36:28 -!- kragniz has joined.
11:36:28 -!- andrew has joined.
11:36:28 -!- Jafet has joined.
11:36:28 -!- aloril has joined.
11:36:28 -!- sebbu has joined.
11:36:28 -!- fizzie has joined.
11:36:28 -!- lifthrasiir has joined.
11:36:28 -!- Xe has joined.
11:36:28 -!- paul2520 has joined.
11:36:28 -!- jameseb- has joined.
11:36:28 -!- atehwa has joined.
11:36:28 -!- nisstyre has joined.
11:36:28 -!- cnr has joined.
11:36:28 -!- glowcoil has joined.
11:36:28 -!- ocharles__ has joined.
11:36:28 -!- kline has joined.
11:36:28 -!- MC8 has joined.
11:36:28 -!- shachaf has joined.
11:36:28 -!- ineiros has joined.
11:36:28 -!- APic has joined.
11:36:28 -!- Gregor` has joined.
11:36:28 -!- mtve has joined.
11:36:28 -!- heroux has joined.
11:36:28 -!- Taneb has joined.
11:36:28 -!- perrier_ has joined.
11:36:28 -!- MDream has joined.
11:36:28 -!- SirCmpwn has joined.
11:36:28 -!- MoALTz has joined.
11:36:28 -!- \oren\ has joined.
11:36:28 -!- pdxleif has joined.
11:36:28 -!- nitrix has joined.
11:36:28 -!- diginet has joined.
11:36:28 -!- PinealGlandOptic has joined.
11:36:28 -!- tromp__ has joined.
11:36:28 -!- ski has joined.
11:36:28 -!- fungot has joined.
11:36:28 -!- coppro has joined.
11:36:28 -!- b_jonas has joined.
11:36:28 -!- deltab has joined.
11:36:28 -!- quintopia has joined.
11:36:28 -!- Melvar has joined.
11:36:28 -!- clog has joined.
11:36:28 -!- skarn has joined.
11:36:28 -!- zzo38 has joined.
11:36:28 -!- Hoolootwo has joined.
11:36:28 -!- gonad has joined.
11:36:28 -!- fractal has joined.
11:36:28 -!- rodgort has joined.
11:36:28 -!- nchambers has joined.
11:36:28 -!- myname has joined.
11:36:28 -!- nortti has joined.
11:36:28 -!- tswett has joined.
11:36:28 -!- Froox has joined.
11:36:28 -!- haavard has joined.
11:36:28 -!- augur has joined.
11:36:28 -!- idris-bot has joined.
11:36:28 -!- olsner has joined.
11:36:28 -!- jix has joined.
11:36:28 -!- gde33 has joined.
11:36:28 -!- izabera has joined.
11:36:28 -!- rntz has joined.
11:36:28 -!- yorick has joined.
11:36:28 -!- int-e has joined.
11:36:28 -!- scoofy has joined.
11:36:28 -!- erdic has joined.
11:36:28 -!- trn has joined.
11:36:28 -!- Nithogg has joined.
11:36:28 -!- shikhin has joined.
11:43:23 -!- MC8_ has joined.
11:43:46 -!- kline has quit (*.net *.split).
11:43:47 -!- MC8 has quit (*.net *.split).
11:43:48 -!- ocharles__ has quit (*.net *.split).
11:43:48 -!- glowcoil has quit (*.net *.split).
11:43:48 -!- cnr has quit (*.net *.split).
11:48:20 -!- ocharles__ has joined.
11:48:20 -!- glowcoil has joined.
11:48:22 -!- bb010g has quit (Ping timeout: 264 seconds).
11:48:54 -!- hppavilion[2] has quit (Ping timeout: 260 seconds).
11:50:58 -!- cnr has joined.
11:56:01 -!- mbrcknl has quit (Ping timeout: 264 seconds).
12:07:26 -!- bb010g has joined.
12:09:48 -!- Hoolootwo has quit (Ping timeout: 264 seconds).
12:11:20 -!- Patashu has joined.
12:11:35 -!- gniourf has joined.
12:11:36 -!- Lord_of_Life has joined.
12:11:39 -!- tromp has joined.
12:11:43 -!- hppavilion[1] has joined.
12:12:27 -!- puckipedia has joined.
12:12:40 -!- mauris has joined.
12:12:54 -!- Hoolootwo has joined.
12:12:58 -!- digitalcold has joined.
12:15:26 -!- kline has joined.
12:19:25 -!- mauris has quit (Ping timeout: 264 seconds).
12:22:29 -!- zgrep has joined.
12:28:19 -!- MC8_ has changed nick to MC8.
12:32:02 -!- lambdabot has joined.
12:35:57 -!- rdococ has joined.
12:36:28 -!- tromp_ has joined.
12:38:41 -!- Patashu has quit (Ping timeout: 264 seconds).
12:39:23 -!- kline has quit (Ping timeout: 264 seconds).
12:39:23 -!- tromp has quit (Ping timeout: 264 seconds).
12:39:49 -!- zgrep has quit (Ping timeout: 264 seconds).
12:39:59 -!- puckipedia has quit (Ping timeout: 264 seconds).
12:40:05 -!- Patashu has joined.
12:40:07 -!- hppavilion[1] has quit (Ping timeout: 264 seconds).
12:40:07 -!- gniourf has quit (Ping timeout: 264 seconds).
12:40:59 -!- hppavilion[1] has joined.
12:42:03 -!- mbrcknl has joined.
12:44:39 -!- pikhq has joined.
12:46:23 -!- hppavilion[1] has quit (Ping timeout: 246 seconds).
12:47:55 -!- zgrep has joined.
12:48:50 -!- Patashu has quit (Ping timeout: 246 seconds).
12:48:57 -!- kline has joined.
12:49:23 -!- Hoolootwo has quit (Ping timeout: 264 seconds).
12:52:24 -!- puckipedia has joined.
12:54:51 -!- Hoolootwo has joined.
12:55:53 -!- gamemanj has joined.
13:02:50 -!- MoALTz has quit (Ping timeout: 240 seconds).
13:03:19 <quintopia> `HNQ
13:03:20 <HackEgo> ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: HNQ: not found
13:03:39 <quintopia> `? HNQ
13:03:40 <HackEgo> HNQ? ¯\(°​_o)/¯
13:04:12 <quintopia>
13:04:29 -!- Deewiant has joined.
13:07:33 -!- gniourf has joined.
13:07:36 -!- mauris has joined.
13:08:09 <FireFly> `wisdom
13:08:11 <HackEgo> word/word (Microsoft Word) was a text-editor for animated texts but not anymore.
13:08:14 <FireFly> `wisdom
13:08:15 <HackEgo> wise/Uninstalling software installed by the Wise Installation Wizard is unwise. It's neither clockwise nor counterclockwise nor otherwise.
13:08:17 <FireFly> `wisdom
13:08:19 <HackEgo> thausiblee/A thausiblee is the recipient of a thausible action.
13:13:57 -!- mauris_ has joined.
13:14:23 -!- mauris has quit (Ping timeout: 246 seconds).
13:19:38 -!- mauris_ has quit (Ping timeout: 246 seconds).
13:21:01 -!- mauris has joined.
13:22:59 -!- MoALTz has joined.
13:23:30 -!- heroux has quit (Ping timeout: 240 seconds).
13:24:28 -!- MoALTz_ has joined.
13:25:35 -!- mauris has quit (Ping timeout: 246 seconds).
13:25:53 -!- oerjan has joined.
13:27:26 -!- MoALTz has quit (Ping timeout: 240 seconds).
13:30:16 -!- newsham has joined.
13:47:16 -!- oerjan_ has joined.
13:47:58 <oerjan_> wat, is every freenode server flaky today
13:48:29 <oerjan_> i guess that explains the huge log, it's probably all netsplits
13:52:20 -!- oerjan has quit (*.net *.split).
13:52:20 -!- MoALTz_ has quit (*.net *.split).
13:52:20 -!- j-bot has quit (*.net *.split).
13:52:40 -!- oerjan_ has changed nick to oerjan.
13:55:06 -!- heroux has joined.
13:55:31 -!- sixtustha5 has joined.
13:56:42 -!- andrew has quit (Remote host closed the connection).
14:00:32 -!- bb010g has quit (Quit: Connection closed for inactivity).
14:04:17 <oerjan> Lag: 166, it's probably happening again
14:04:29 <myname> does anybody know if there is a rulebook based on an oots-based system?
14:04:31 <myname> i'd just love to play belkar
14:04:32 -!- MoALTz_ has joined.
14:06:06 -!- sixtustha5 has quit (Ping timeout: 240 seconds).
14:06:13 <oerjan> myname: i thought oots was officially D&D 3.5
14:06:41 <myname> oh, right
14:06:44 <myname> well
14:07:44 <myname> i'm not sure if i'd be happy with that :D
14:07:53 <myname> in my pov, dnd seems to be an american thing
14:11:26 -!- oerjan has quit (Ping timeout: 240 seconds).
14:11:37 -!- oerjan has joined.
14:13:55 -!- doesthiswork has joined.
14:15:38 -!- spiette has joined.
14:19:26 -!- doesthiswork has quit (Ping timeout: 240 seconds).
14:20:46 -!- oerjan has quit (Ping timeout: 240 seconds).
14:27:06 -!- gniourf has quit (*.net *.split).
14:27:06 -!- Deewiant has quit (*.net *.split).
14:27:06 -!- gamemanj has quit (*.net *.split).
14:27:06 -!- puckipedia has quit (*.net *.split).
14:27:07 -!- zgrep has quit (*.net *.split).
14:27:07 -!- kline has quit (*.net *.split).
14:27:07 -!- tromp_ has quit (*.net *.split).
14:27:07 -!- rdococ has quit (*.net *.split).
14:27:07 -!- lambdabot has quit (*.net *.split).
14:27:08 -!- digitalcold has quit (*.net *.split).
14:27:08 -!- spiette has quit (*.net *.split).
14:27:08 -!- ocharles__ has quit (*.net *.split).
14:27:09 -!- glowcoil has quit (*.net *.split).
14:27:09 -!- MC8 has quit (*.net *.split).
14:27:09 -!- vifino has quit (*.net *.split).
14:27:09 -!- relrod_ has quit (*.net *.split).
14:27:09 -!- Sprocklem has quit (*.net *.split).
14:27:09 -!- sebbu has quit (*.net *.split).
14:27:09 -!- fizzie has quit (*.net *.split).
14:27:10 -!- lifthrasiir has quit (*.net *.split).
14:27:10 -!- nisstyre has quit (*.net *.split).
14:27:10 -!- Jafet has quit (*.net *.split).
14:27:10 -!- \oren\ has quit (*.net *.split).
14:27:10 -!- SirCmpwn has quit (*.net *.split).
14:27:10 -!- MDream has quit (*.net *.split).
14:27:10 -!- perrier_ has quit (*.net *.split).
14:27:10 -!- Taneb has quit (*.net *.split).
14:27:11 -!- mtve has quit (*.net *.split).
14:27:11 -!- Gregor` has quit (*.net *.split).
14:27:11 -!- APic has quit (*.net *.split).
14:27:11 -!- ineiros has quit (*.net *.split).
14:27:11 -!- shachaf has quit (*.net *.split).
14:27:11 -!- newsham has quit (*.net *.split).
14:27:12 -!- kragniz has quit (*.net *.split).
14:27:12 -!- aloril has quit (*.net *.split).
14:27:12 -!- paul2520 has quit (*.net *.split).
14:27:12 -!- atehwa has quit (*.net *.split).
14:27:12 -!- quintopia has quit (*.net *.split).
14:27:12 -!- deltab has quit (*.net *.split).
14:27:13 -!- b_jonas has quit (*.net *.split).
14:27:13 -!- coppro has quit (*.net *.split).
14:27:13 -!- fungot has quit (*.net *.split).
14:27:13 -!- ski has quit (*.net *.split).
14:27:13 -!- tromp__ has quit (*.net *.split).
14:27:13 -!- PinealGlandOptic has quit (*.net *.split).
14:27:13 -!- diginet has quit (*.net *.split).
14:27:14 -!- nitrix has quit (*.net *.split).
14:27:14 -!- pdxleif has quit (*.net *.split).
14:27:14 -!- singingboyo has quit (*.net *.split).
14:27:14 -!- Melvar has quit (*.net *.split).
14:27:14 -!- clog has quit (*.net *.split).
14:27:15 -!- zzo38 has quit (*.net *.split).
14:27:15 -!- myname has quit (*.net *.split).
14:27:15 -!- tswett has quit (*.net *.split).
14:27:15 -!- Froox has quit (*.net *.split).
14:27:15 -!- idris-bot has quit (*.net *.split).
14:27:15 -!- erdic has quit (*.net *.split).
14:27:15 -!- scoofy has quit (*.net *.split).
14:27:15 -!- int-e has quit (*.net *.split).
14:27:15 -!- yorick has quit (*.net *.split).
14:27:15 -!- rntz has quit (*.net *.split).
14:27:15 -!- izabera has quit (*.net *.split).
14:27:15 -!- gde33 has quit (*.net *.split).
14:27:16 -!- jix has quit (*.net *.split).
14:27:16 -!- olsner has quit (*.net *.split).
14:27:16 -!- heroux has quit (*.net *.split).
14:27:16 -!- Hoolootwo has quit (*.net *.split).
14:27:16 -!- pikhq has quit (*.net *.split).
14:27:16 -!- mbrcknl has quit (*.net *.split).
14:27:16 -!- Lord_of_Life has quit (*.net *.split).
14:27:16 -!- cnr has quit (*.net *.split).
14:27:17 -!- Lymia has quit (*.net *.split).
14:27:17 -!- Xe has quit (*.net *.split).
14:27:17 -!- skarn has quit (*.net *.split).
14:27:17 -!- rodgort has quit (*.net *.split).
14:27:17 -!- haavard has quit (*.net *.split).
14:27:17 -!- MoALTz_ has quit (*.net *.split).
14:27:18 -!- myndzi has quit (*.net *.split).
14:27:18 -!- jameseb- has quit (*.net *.split).
14:27:18 -!- gonad has quit (*.net *.split).
14:27:18 -!- fractal has quit (*.net *.split).
14:27:18 -!- nchambers has quit (*.net *.split).
14:27:18 -!- nortti has quit (*.net *.split).
14:27:18 -!- augur has quit (*.net *.split).
14:27:18 -!- trn has quit (*.net *.split).
14:27:19 -!- Nithogg has quit (*.net *.split).
14:27:19 -!- shikhin has quit (*.net *.split).
14:49:06 -!- mroman has joined.
14:49:06 -!- doesthiswork1 has joined.
14:49:06 -!- oerjan_ has joined.
14:49:06 -!- spiette has joined.
14:49:06 -!- MoALTz_ has joined.
14:49:06 -!- heroux has joined.
14:49:06 -!- newsham has joined.
14:49:06 -!- gniourf has joined.
14:49:06 -!- Deewiant has joined.
14:49:06 -!- gamemanj has joined.
14:49:06 -!- Hoolootwo has joined.
14:49:06 -!- puckipedia has joined.
14:49:06 -!- kline has joined.
14:49:06 -!- zgrep has joined.
14:49:06 -!- pikhq has joined.
14:49:06 -!- mbrcknl has joined.
14:49:06 -!- tromp_ has joined.
14:49:06 -!- rdococ has joined.
14:49:06 -!- lambdabot has joined.
14:49:06 -!- digitalcold has joined.
14:49:06 -!- Lord_of_Life has joined.
14:49:06 -!- cnr has joined.
14:49:06 -!- glowcoil has joined.
14:49:06 -!- ocharles__ has joined.
14:49:06 -!- MC8 has joined.
14:49:06 -!- Lymia has joined.
14:49:06 -!- myndzi has joined.
14:49:06 -!- vifino has joined.
14:49:06 -!- singingboyo has joined.
14:49:06 -!- relrod_ has joined.
14:49:06 -!- Sprocklem has joined.
14:49:06 -!- kragniz has joined.
14:49:06 -!- Jafet has joined.
14:49:06 -!- aloril has joined.
14:49:06 -!- sebbu has joined.
14:49:06 -!- fizzie has joined.
14:49:06 -!- lifthrasiir has joined.
14:49:06 -!- Xe has joined.
14:49:06 -!- paul2520 has joined.
14:49:06 -!- jameseb- has joined.
14:49:06 -!- atehwa has joined.
14:49:06 -!- nisstyre has joined.
14:49:06 -!- shachaf has joined.
14:49:06 -!- ineiros has joined.
14:49:06 -!- APic has joined.
14:49:06 -!- Gregor` has joined.
14:49:06 -!- mtve has joined.
14:49:06 -!- Taneb has joined.
14:49:06 -!- perrier_ has joined.
14:49:06 -!- MDream has joined.
14:49:06 -!- SirCmpwn has joined.
14:49:06 -!- \oren\ has joined.
14:49:06 -!- pdxleif has joined.
14:49:06 -!- nitrix has joined.
14:49:06 -!- diginet has joined.
14:49:06 -!- PinealGlandOptic has joined.
14:49:06 -!- tromp__ has joined.
14:49:06 -!- ski has joined.
14:49:06 -!- fungot has joined.
14:49:06 -!- coppro has joined.
14:49:06 -!- b_jonas has joined.
14:49:06 -!- deltab has joined.
14:49:06 -!- quintopia has joined.
14:49:06 -!- Melvar has joined.
14:49:06 -!- clog has joined.
14:49:06 -!- skarn has joined.
14:49:06 -!- zzo38 has joined.
14:49:06 -!- gonad has joined.
14:49:06 -!- fractal has joined.
14:49:06 -!- rodgort has joined.
14:49:06 -!- nchambers has joined.
14:49:06 -!- myname has joined.
14:49:06 -!- nortti has joined.
14:49:06 -!- tswett has joined.
14:49:06 -!- Froox has joined.
14:49:06 -!- haavard has joined.
14:49:06 -!- augur has joined.
14:49:07 -!- idris-bot has joined.
14:49:07 -!- olsner has joined.
14:49:07 -!- jix has joined.
14:49:07 -!- gde33 has joined.
14:49:07 -!- izabera has joined.
14:49:07 -!- rntz has joined.
14:49:07 -!- yorick has joined.
14:49:07 -!- int-e has joined.
14:49:07 -!- scoofy has joined.
14:49:07 -!- erdic has joined.
14:49:07 -!- trn has joined.
14:49:07 -!- Nithogg has joined.
14:49:07 -!- shikhin has joined.
14:55:34 <\oren\> infamy! who would dare?!?!
14:55:34 -!- oerjan_ has changed nick to oerjan.
14:55:35 -!- sixtustha51 has joined.
14:57:40 <HackEgo> [wiki] [[MATL]] http://esolangs.org/w/index.php?diff=45680&oldid=45649 * Luis Mendo * (+226) /* Specification */
14:58:31 <HackEgo> [wiki] [[MATL]] http://esolangs.org/w/index.php?diff=45681&oldid=45680 * Luis Mendo * (+8) /* Compiler */
15:05:30 <oerjan> `relcome sixtustha51
15:05:30 <oerjan> @ping
15:05:30 <lambdabot> pong
15:05:32 <HackEgo> sixtustha51: Welcome to the international hub for esoteric programming language design and deployment! For more information, check out our wiki: <http://esolangs.org/>. (For the other kind of esoterica, try #esoteric on EFnet or DALnet.)
15:05:51 <oerjan> that looks lagged
15:11:32 <myname> a bit
15:13:06 <HackEgo> [wiki] [[MATL]] http://esolangs.org/w/index.php?diff=45682&oldid=45681 * Luis Mendo * (+1) /* Specification */
15:27:03 -!- mauris has joined.
15:34:10 -!- doesthiswork1 has quit (Quit: Leaving.).
15:34:54 -!- doesthiswork has joined.
15:42:51 <Taneb> The FSA I posted yesterday is incorrect...
15:43:11 <Taneb> (OS, 5) should go to OI, not OO
15:45:33 -!- sixtustha51 has quit (Ping timeout: 250 seconds).
15:48:23 <Taneb> Fixed it now
15:55:05 -!- spiette has quit (Ping timeout: 250 seconds).
15:55:44 -!- Welo has joined.
16:00:17 <oerjan> @tell tswett <tswett> In the complex numbers, if a function is differentiable at a point, then it is also differentiable on an entire disk surrounding that point, arbitrarily many times. <-- i don't think that's quite right... you need in a disk to start with.
16:00:17 <lambdabot> Consider it noted.
16:07:53 -!- spiette has joined.
16:19:24 -!- mauris has quit (Ping timeout: 265 seconds).
16:37:35 -!- AnotherTest has joined.
16:45:46 -!- gniourf has quit (*.net *.split).
16:45:46 -!- Deewiant has quit (*.net *.split).
16:45:46 -!- gamemanj has quit (*.net *.split).
16:45:46 -!- puckipedia has quit (*.net *.split).
16:45:47 -!- zgrep has quit (*.net *.split).
16:45:47 -!- kline has quit (*.net *.split).
16:45:47 -!- tromp_ has quit (*.net *.split).
16:45:47 -!- rdococ has quit (*.net *.split).
16:45:47 -!- lambdabot has quit (*.net *.split).
16:45:48 -!- digitalcold has quit (*.net *.split).
16:45:48 -!- ocharles__ has quit (*.net *.split).
16:45:48 -!- glowcoil has quit (*.net *.split).
16:45:49 -!- MC8 has quit (*.net *.split).
16:45:49 -!- vifino has quit (*.net *.split).
16:45:49 -!- relrod_ has quit (*.net *.split).
16:45:49 -!- Sprocklem has quit (*.net *.split).
16:45:49 -!- sebbu has quit (*.net *.split).
16:45:49 -!- fizzie has quit (*.net *.split).
16:45:49 -!- lifthrasiir has quit (*.net *.split).
16:45:50 -!- nisstyre has quit (*.net *.split).
16:45:50 -!- Jafet has quit (*.net *.split).
16:45:50 -!- \oren\ has quit (*.net *.split).
16:45:50 -!- SirCmpwn has quit (*.net *.split).
16:45:50 -!- MDream has quit (*.net *.split).
16:45:50 -!- perrier_ has quit (*.net *.split).
16:45:50 -!- Taneb has quit (*.net *.split).
16:45:51 -!- mtve has quit (*.net *.split).
16:45:51 -!- Gregor` has quit (*.net *.split).
16:45:51 -!- APic has quit (*.net *.split).
16:45:51 -!- ineiros has quit (*.net *.split).
16:45:51 -!- shachaf has quit (*.net *.split).
16:45:52 -!- newsham has quit (*.net *.split).
16:45:52 -!- kragniz has quit (*.net *.split).
16:45:52 -!- aloril has quit (*.net *.split).
16:45:52 -!- paul2520 has quit (*.net *.split).
16:45:52 -!- atehwa has quit (*.net *.split).
16:45:53 -!- quintopia has quit (*.net *.split).
16:45:53 -!- deltab has quit (*.net *.split).
16:45:53 -!- b_jonas has quit (*.net *.split).
16:45:53 -!- coppro has quit (*.net *.split).
16:45:53 -!- fungot has quit (*.net *.split).
16:45:53 -!- ski has quit (*.net *.split).
16:45:54 -!- tromp__ has quit (*.net *.split).
16:45:54 -!- PinealGlandOptic has quit (*.net *.split).
16:45:54 -!- diginet has quit (*.net *.split).
16:45:54 -!- nitrix has quit (*.net *.split).
16:45:54 -!- pdxleif has quit (*.net *.split).
16:45:54 -!- mroman has quit (*.net *.split).
16:45:54 -!- singingboyo has quit (*.net *.split).
16:45:55 -!- Melvar has quit (*.net *.split).
16:45:55 -!- clog has quit (*.net *.split).
16:45:55 -!- zzo38 has quit (*.net *.split).
16:45:55 -!- myname has quit (*.net *.split).
16:45:55 -!- tswett has quit (*.net *.split).
16:45:55 -!- Froox has quit (*.net *.split).
16:45:55 -!- idris-bot has quit (*.net *.split).
16:45:56 -!- erdic has quit (*.net *.split).
16:45:56 -!- scoofy has quit (*.net *.split).
16:45:56 -!- int-e has quit (*.net *.split).
16:45:56 -!- yorick has quit (*.net *.split).
16:45:56 -!- rntz has quit (*.net *.split).
16:45:56 -!- izabera has quit (*.net *.split).
16:45:56 -!- gde33 has quit (*.net *.split).
16:45:56 -!- jix has quit (*.net *.split).
16:45:56 -!- olsner has quit (*.net *.split).
16:45:56 -!- Welo has quit (*.net *.split).
16:45:56 -!- heroux has quit (*.net *.split).
16:45:57 -!- Hoolootwo has quit (*.net *.split).
16:45:57 -!- pikhq has quit (*.net *.split).
16:45:57 -!- mbrcknl has quit (*.net *.split).
16:45:57 -!- Lord_of_Life has quit (*.net *.split).
16:45:57 -!- cnr has quit (*.net *.split).
16:45:57 -!- Lymia has quit (*.net *.split).
16:45:57 -!- Xe has quit (*.net *.split).
16:45:57 -!- skarn has quit (*.net *.split).
16:45:57 -!- rodgort has quit (*.net *.split).
16:45:58 -!- haavard has quit (*.net *.split).
16:45:58 -!- doesthiswork has quit (*.net *.split).
16:45:58 -!- oerjan has quit (*.net *.split).
16:45:58 -!- MoALTz_ has quit (*.net *.split).
16:45:58 -!- myndzi has quit (*.net *.split).
16:45:58 -!- jameseb- has quit (*.net *.split).
16:45:59 -!- gonad has quit (*.net *.split).
16:45:59 -!- fractal has quit (*.net *.split).
16:45:59 -!- nchambers has quit (*.net *.split).
16:45:59 -!- nortti has quit (*.net *.split).
16:45:59 -!- augur has quit (*.net *.split).
16:45:59 -!- trn has quit (*.net *.split).
16:45:59 -!- Nithogg has quit (*.net *.split).
16:45:59 -!- shikhin has quit (*.net *.split).
16:58:38 -!- mauris has joined.
16:58:38 -!- Welo has joined.
16:58:38 -!- oerjan has joined.
16:58:38 -!- MoALTz_ has joined.
16:58:38 -!- heroux has joined.
16:58:38 -!- newsham has joined.
16:58:38 -!- gniourf has joined.
16:58:38 -!- Deewiant has joined.
16:58:38 -!- gamemanj has joined.
16:58:38 -!- Hoolootwo has joined.
16:58:38 -!- puckipedia has joined.
16:58:38 -!- kline has joined.
16:58:38 -!- zgrep has joined.
16:58:38 -!- pikhq has joined.
16:58:38 -!- mbrcknl has joined.
16:58:38 -!- tromp_ has joined.
16:58:38 -!- rdococ has joined.
16:58:38 -!- lambdabot has joined.
16:58:38 -!- digitalcold has joined.
16:58:38 -!- Lord_of_Life has joined.
16:58:38 -!- cnr has joined.
16:58:38 -!- glowcoil has joined.
16:58:38 -!- ocharles__ has joined.
16:58:38 -!- MC8 has joined.
16:58:38 -!- Lymia has joined.
16:58:38 -!- myndzi has joined.
16:58:38 -!- vifino has joined.
16:58:38 -!- singingboyo has joined.
16:58:38 -!- relrod_ has joined.
16:58:38 -!- Sprocklem has joined.
16:58:38 -!- kragniz has joined.
16:58:38 -!- Jafet has joined.
16:58:38 -!- aloril has joined.
16:58:38 -!- sebbu has joined.
16:58:38 -!- fizzie has joined.
16:58:38 -!- lifthrasiir has joined.
16:58:38 -!- Xe has joined.
16:58:38 -!- paul2520 has joined.
16:58:38 -!- jameseb has joined.
16:58:38 -!- atehwa has joined.
16:58:38 -!- nisstyre has joined.
16:58:38 -!- shachaf has joined.
16:58:38 -!- ineiros has joined.
16:58:38 -!- APic has joined.
16:58:38 -!- Gregor` has joined.
16:58:38 -!- mtve has joined.
16:58:38 -!- Taneb has joined.
16:58:38 -!- perrier_ has joined.
16:58:38 -!- MDream has joined.
16:58:38 -!- SirCmpwn has joined.
16:58:38 -!- \oren\ has joined.
16:58:38 -!- pdxleif has joined.
16:58:38 -!- nitrix has joined.
16:58:38 -!- diginet has joined.
16:58:38 -!- PinealGlandOptic has joined.
16:58:38 -!- tromp__ has joined.
16:58:38 -!- ski has joined.
16:58:38 -!- fungot has joined.
16:58:38 -!- coppro has joined.
16:58:38 -!- b_jonas has joined.
16:58:38 -!- deltab has joined.
16:58:38 -!- quintopia has joined.
16:58:38 -!- Melvar has joined.
16:58:38 -!- clog has joined.
16:58:38 -!- skarn has joined.
16:58:38 -!- zzo38 has joined.
16:58:38 -!- gonad has joined.
16:58:38 -!- fractal has joined.
16:58:38 -!- rodgort has joined.
16:58:38 -!- nchambers has joined.
16:58:38 -!- myname has joined.
16:58:38 -!- nortti has joined.
16:58:38 -!- tswett has joined.
16:58:38 -!- Froox has joined.
16:58:38 -!- haavard has joined.
16:58:38 -!- augur has joined.
16:58:38 -!- idris-bot has joined.
16:58:38 -!- olsner has joined.
16:58:38 -!- jix has joined.
16:58:38 -!- gde33 has joined.
16:58:38 -!- izabera has joined.
16:58:38 -!- rntz has joined.
16:58:38 -!- yorick has joined.
16:58:38 -!- int-e has joined.
16:58:38 -!- scoofy has joined.
16:58:38 -!- erdic has joined.
16:58:38 -!- trn has joined.
16:58:38 -!- Nithogg has joined.
16:58:38 -!- shikhin has joined.
17:01:55 -!- j-bot has joined.
17:02:06 -!- bb010g has joined.
17:18:47 <coppro> oerjan: I think that works if f is continuous
17:18:59 -!- mauris_ has joined.
17:19:27 <b_jonas> coppro: no way
17:19:42 <coppro> no?
17:20:12 <b_jonas> now if the function is _twice_ differentiable in a point, that might be enough
17:20:34 <b_jonas> I dunno
17:24:48 -!- bb010g has quit (Ping timeout: 240 seconds).
17:24:48 -!- mauris_ has quit (Ping timeout: 240 seconds).
17:26:11 -!- Welo has quit (Quit: Leaving).
17:27:53 -!- mauris has quit (*.net *.split).
17:31:37 -!- bb010g has joined.
17:31:46 -!- trn has quit (Excess Flood).
17:36:14 -!- trn has joined.
17:37:31 <oerjan> b_jonas: if it's twice differentiable, then by definition, it must be differentiable in a neighborhood, so yeah.
17:37:33 -!- relrod_ has quit (Ping timeout: 246 seconds).
17:38:13 -!- relrod_ has joined.
17:38:15 -!- relrod_ has quit (Changing host).
17:38:15 -!- relrod_ has joined.
17:40:28 <oerjan> coppro: even with continuity, there's just too many ways you could mess it up in a neighboorhood. or put a different way, you can "obviously" make a function that has derivative 0 in a point, but completely chaotic (apart from being continuous) near it.
17:41:39 -!- trn has quit (Excess Flood).
17:42:12 <oerjan> hm, i think abs(z)^2 is an example (not chaotic, but not differentiable near it either)
17:42:26 <oerjan> *near 0
17:42:27 -!- trn has joined.
17:42:40 -!- bb010g has quit (Ping timeout: 246 seconds).
17:43:08 <b_jonas> oerjan: right.
17:43:10 <oerjan> (it's _real_ differentiable everywhere, off course.)
17:44:38 <oerjan> being the same a z * conj(z)
17:44:40 <oerjan> *as
17:45:20 <oerjan> *of
17:47:00 -!- trn has quit (Ping timeout: 246 seconds).
17:50:56 -!- trn has joined.
17:51:20 -!- bb010g has joined.
17:51:57 <Taneb> http://arin.ga/4XHhbc is quite possibly the most elegant-looking fizzbuzz I have written
17:55:07 <oerjan> O KAY
17:57:06 -!- trn has quit (Ping timeout: 246 seconds).
17:57:08 <zzo38> Second Bargain {2W} Instant ;; Target opponent draws a card. ;; You gain 8 life if it is your main phase and there aren't any other objects on the stack, otherwise you gain 5 life.
17:58:23 <Taneb> It also runs in O(n log n) time, which is much more efficient than other fizzbuzz programs I have written
18:00:11 <oerjan> i guess technically that's optimal, because the output has O(n log n) length
18:01:48 <Taneb> Hmm, that is a good point
18:01:50 <oerjan> s/O/Theta/ or something
18:02:17 -!- trn has joined.
18:03:11 -!- Hoolootwo has quit (Ping timeout: 264 seconds).
18:03:35 -!- trn has quit (Excess Flood).
18:05:30 -!- Hoolootwo has joined.
18:08:53 <gamemanj> yay for optimal fizzbuzz!
18:10:05 -!- trn has joined.
18:10:38 <Taneb> :D
18:15:47 <zzo38> The official "Bargain" card isn't quite good so I made up this new one is better? What is your opinion of such thing?
18:16:23 -!- Hoolootwo has quit (Ping timeout: 264 seconds).
18:19:39 -!- trn has quit (Ping timeout: 246 seconds).
18:19:40 -!- Hooloo42 has joined.
18:19:46 -!- trn has joined.
18:19:48 <coppro> zzo38: unplayably bad
18:21:09 <coppro> 2WW gain 8 life would probably be about fair, maybe 3W
18:21:28 <coppro> and even that would be a weak card
18:22:47 <zzo38> I changed it to an instant rather than a sorcery, and if used as a sorcery you gain 1 additional life point (otherwise you gain less)
18:25:00 <zzo38> I would still use it though
18:26:20 <zzo38> But do you think there are other changes? Even if other than how you specify?
18:29:21 -!- FreeFull has joined.
18:29:37 <zzo38> I think this "Second Bargain" is much better than the ordinary "Bargain"
18:31:46 <zzo38> (But I am also the guy who would play something like "Fateseal 1, and then target opponent draws a card")
18:33:49 -!- oerjan has quit (Quit: Later).
18:33:54 -!- J_Arcane has joined.
18:42:28 -!- mauris has joined.
18:43:52 -!- MoALTz_ has changed nick to MoALTz.
19:19:13 -!- relrod_ has changed nick to relrod.
19:19:27 <b_jonas> coppro: unplayably bad in limited or constructed?
19:19:36 <b_jonas> it's life gain, so there's a big difference
19:21:02 <b_jonas> As for lifegain, I prefer black's method. Drain life from opponent or from a creature.
19:27:00 <b_jonas> It's funny to see mathematics from 1992 typeset in TeX in the computer modern font, but with professionally hand-drawn figures
19:35:59 <zzo38> I also want to know, it can be different in limited or constructed, as well as other stuff I think
19:37:21 <zzo38> Also this new one is forcing opponent to draw a card as an instant, while the old one is not an instant.
19:38:16 <zzo38> However I made up several more new cards too. Some of which now have favor texts and/or notes too.
19:43:43 -!- Lorenzo64 has joined.
19:54:17 -!- Taneb has changed nick to nvd.
20:02:26 -!- AnotherTest has quit (Ping timeout: 240 seconds).
20:10:47 <b_jonas> zzo38: to compare, there's an instant for 2WW that gains you 7 life, and an instant for 2W that gains you 6 life and has an advantage.
20:11:08 <b_jonas> I don't know about lifegain cards with serious drawbacks though.
20:11:49 <b_jonas> Oh, I mean, I do know about some. I'm happy to sacrifice my infinite toughness creature to gain infinite life from it.
20:13:02 <b_jonas> I use Animal Boneyard and Starlit Sanctum for that
20:17:09 <b_jonas> let me see what else I could use for that slot. I have a Condemn, but that only works while attacking, which restricts my options.
20:18:35 <zzo38> Note that there are many different formats, not only Constructed and Limited but even many different kind of Limited formats such as Draft, Rochester Draft, Team Rochester Draft, Sealed, Duplicate Sealed, etc. And then, there is duel decks designing
20:18:40 <b_jonas> there's an aura called Death Watch
20:19:19 <zzo38> OK I looked at that; I like that too
20:19:21 <b_jonas> zzo38: sure, I said "limited or constructed" because life gain cards like that are famously very bad in limited and only somewhat bad in constructed
20:19:59 <b_jonas> the advantage of Death Watch is that it works on any creature (not only clerics) and has a low mana cost, but the serious drawback is that it's off-color
20:20:15 <b_jonas> that deck must use white to get the infinite toughness creature
20:21:44 <b_jonas> oh, but the problem with Death Watch is that if I put it to the creature, then my opponents won't kill that creature that turn, so I won't actually gain the life
20:22:09 <b_jonas> there's Devour Flesh
20:22:12 -!- idris-bot has quit (Quit: Terminated).
20:23:36 <zzo38> How bad it is can also depend on circumstances though. Death Watch can be good but it is not an instant (although you may be able to cause it to trigger as an instant)
20:24:23 <b_jonas> it won't work, because I can't kill the creature. or at least, I can kill it by sacrificing it to another card to gain life, but then I don't need the aura
20:24:50 <b_jonas> there's this Disciple of Griselbrand
20:25:22 <b_jonas> which has the advantage that it's a cleric
20:25:33 <b_jonas> and works at instant speed
20:25:43 <b_jonas> but it's also off-color
20:25:51 <b_jonas> and a bit too much mana
20:26:01 <b_jonas> let me see what else there is
20:26:10 -!- Melvar has quit (Quit: rebooting).
20:29:38 <b_jonas> There's this strange card called Life Chisel, which is surprisingly cheap (card price) given that it's an Antiquities uncommon, with the drawback that it works only in the upkeep so it restricts my options to the Kors as opposed to Shuko, and also costs {4} which is too much.]
20:29:47 -!- Lorenzo64 has quit (Quit: Leaving).
20:30:21 -!- Melvar has joined.
20:31:16 <b_jonas> there's this so called Miren, the Moaning Well which activates for {3} but otherwise is good, but it's a somewhat pricy rare
20:32:26 <b_jonas> Proper Burial triggers when the creature dies, so it's like Death Watch, but it's for {3W}
20:34:04 <b_jonas> There's Sheltering Word which is interesting because it is of dual use: I can use it either to protect my creature, or to gain life, either of which is useful in this deck.
20:34:09 <b_jonas> But it's green.
20:34:59 <zzo38> Play all-colors deck
20:35:18 <b_jonas> no. this one definitely can't work all colors.
20:35:33 <b_jonas> it might work in two colors, maybe, but even that would strain it.
20:36:15 <b_jonas> Oh, and Worthy Cause! I actually use that in the deck and I forgot.
20:37:05 <b_jonas> Ok, then it seems there's nothing better for this really. I just need to buy more copies of Worthy Cause and of Nomads En-Kor.
20:37:29 <b_jonas> Plus replace the few cards that aim to win after I go off with infinite life.
20:38:07 <b_jonas> In particular, Elixir of Immortality had not yet been printed when I made that deck, so I have much worse replacements.
20:41:05 <b_jonas> Oh, and four of the two mana Kor too, probably, if I don't have four yet.
20:41:31 <b_jonas> Warrior en-Kor
20:43:26 -!- AnotherTest has joined.
20:45:08 <b_jonas> Hmm, let me check how many I have of each of the cards. I think I have 1 Worthy cause, 4 Starlit Sanctum, dunno how many Animal Boneyard, 1 Nomads en-Kor, at least one Warrior en-Kor, 4 Shuko, 4 of that cleric thingy, and
20:45:24 <b_jonas> oh, and I have to buy these newfangled newly printed cards that are like the cleric but for cheaper
20:45:47 <b_jonas> I have some other old one, but I think I've looked at the new ones for that slot and they're better.
20:46:00 <b_jonas> Funny though:
20:46:52 <zzo38> Another format can be duel decks with a duplicate sealed sideboard which may be swapped in before the game is started
20:47:27 <b_jonas> I make an infinite mana deck based on Krosan Restorer, and later they print the much better Arbor Elf and now a two mana version too.
20:48:35 <b_jonas> I build a deck based on two creatures that can block any number of creatures (Wall of Glare and Ironfist Crusher) and later they printed multiple cheaper white creatures where that ability was priced lower.
20:49:32 <b_jonas> And I build this infinite toughness deck with Daru Spiritualist and whatever the other similar creature is, and they print a better one.
20:50:09 <zzo38> Do you like any of my rule/format variant? Or if you have suggestions for changing the "Traitor Scheming" game if you think there is something wrong with it
20:50:28 <b_jonas> Maybe if I want a better version of any card printed, I just need to build a combo deck with it and then wait ten years?
20:50:37 <b_jonas> less than ten years really
20:50:39 -!- idris-bot has joined.
20:51:19 <b_jonas> zzo38: where's this Traitor Scheming game described?
20:51:26 <b_jonas> or other variants?
20:54:38 <zzo38> gopher://zzo38computer.org/0textfile/miscellaneous/magic_card/traitor_scheming.var
20:55:35 <zzo38> (Currently it doesn't work on HTTP due to filename extension and I am not sure how to fix it. If you know how to make everything there just text/plain then you can tell me please, it can work with both HTTP and Gopher then)
20:56:44 <b_jonas> I might be able to help with the Apache thing, but I'll check it out from Gopher for now I think
20:58:40 <b_jonas> zzo38: is the 0 part of the url?
20:58:50 <b_jonas> I've got it without the 0
20:59:00 <b_jonas> but maybe gopher urls work that way
20:59:04 <zzo38> b_jonas: Yes, but it is the type code and is not a part of the selector string. If you are using raw connections, omit the 0
20:59:10 <b_jonas> ok
20:59:17 <b_jonas> I've got it without the 0
20:59:39 -!- Phantom_Hoover has joined.
21:00:09 <zzo38> In any software that uses URLs, the 0 should be required; omit the 0 if you are not using a URL
21:02:20 <b_jonas> zzo38: as for the apache, edit your apache configuration file (or .htaccess file if the apache config allows that) to add (possibly only for some directories) either "AddType text/plain .var" or "DefaultType text/plain" or "ForceType text/plain"
21:03:58 <zzo38> I did the last one in .htaccess and that changed the icons but did not prevent the error. I will try the second one too to see if it works, although I do want text/plain for everything under the textfile directory and its subdirectories (but not other directories).
21:04:30 <zzo38> No, it doesn't work
21:05:56 <b_jonas> zzo38: you may need to change your main apache config then
21:05:58 <b_jonas> a moment
21:06:34 <zzo38> It clearly does recognize "ForceType text/plain" because it is changing the icons for all of the files to the text files icon
21:07:11 -!- Lord_of_Life has quit (Changing host).
21:07:11 -!- Lord_of_Life has joined.
21:07:11 -!- Lord_of_Life has quit (Changing host).
21:07:11 -!- Lord_of_Life has joined.
21:07:12 <b_jonas> zzo38: does AddType work? if not, find the AllowOverride line in your main apache config and can you tell me what it says?
21:07:21 <b_jonas> there maybe more than one, directory specific.
21:08:16 <zzo38> AllowOverride All for /var/www/
21:08:31 <b_jonas> zzo38: and no other options? hmm
21:08:54 <zzo38> Actually, I now added: RemoveHandler .var to the same /var/www/textfile/.htaccess file after ForceType text/plain and now it works.
21:09:03 <b_jonas> zzo38: have you checked if there's something in the error logs about config file errors when you restart apache and then load ...
21:09:07 <b_jonas> oh good
21:09:42 <b_jonas> indeed it works on http now
21:09:54 <b_jonas> so I rememebered wrong
21:10:06 <b_jonas> I have 3 Worthy Cause, 4 Starlit Sanctum, 4 Animal Boneyard,
21:13:06 <b_jonas> 2 Nomads en-Kor,
21:23:38 <J_Arcane> A fun solution for the Clojure threading macros in Heresy: https://github.com/jarcane/heresy/blob/f58415a79fd9ec78e5f16eeeb79b3e8efa845e82/examples/pipeland.hsy
21:27:13 <zzo38> Do you like this kind of game? It is the Archenemy game but no shared team turns are used and there might be one traitor. If the scheming player receives a traitor card then he knows that he plays alone but other player don't know. If all players receive blank card, then nobody knows until the game is finished.
21:30:20 <b_jonas> 4 Daru Spiritualist, 1 Warrior en-Kor, 4 Outrider en-Kor, (4 Palace Guard which is the card they printed later than I made the Wall of Glare deck),
21:33:35 <b_jonas> 4 Task Force, 4 Spirit en-Kor, 4 Lancers en-Kor (these expensive ones aren't useful for this deck of course).
21:33:42 -!- Sgeo has joined.
21:34:22 <b_jonas> And 4 Shuko.
21:35:39 <b_jonas> Didn't I have Icatian Javeliners though?
21:35:47 <b_jonas> I don't need it for a deck, just find it strange
21:36:05 <b_jonas> Icatian Javelineers
21:37:12 <quintopia> zzo38 mtg werewolf?
21:37:52 <b_jonas> quintopia: what about werewolves?
21:38:21 <b_jonas> Oh, I see!
21:38:25 <b_jonas> I have another Javelineer
21:38:31 <b_jonas> Elite Javelineer
21:39:02 <zzo38> What's this about werewolf?
21:39:04 <b_jonas> 9ED
21:39:56 <b_jonas> what werewolf? all I see is a well-reputed scientist. no werewolf here. not even at full moon.
21:40:30 <izabera> did you know that /r/incest exists?
21:41:16 <b_jonas> (Homicidal Brute isn't a werewolf)
21:42:20 <b_jonas> (nor is Delver of Secrets)
21:48:11 <nvd> izabera: I did not but I do not think I am much surprised
21:49:30 <b_jonas> zzo38: re traitor variant, interesting. I've played or seen some games with hidden roles and they're often interesting: mafia, the card game version of whatever that western themed game is called, the gold miners card game.
21:50:13 <b_jonas> s/western/wild west/
21:50:55 <b_jonas> and it's called Bang
21:53:50 <zzo38> Napoleon card game is a trick game with ordinary playing cards, where the declarer names a card and whoever holds that card is the declarer's partner; other players do not know who is his partner until the card is played (even the declarer doesn't know, unless he names a card he holds and therefore plays alone), although for example if he says six of diamonds and another player fails to follow diamonds they can know he isn't them
21:55:19 <b_jonas> zzo38: oh yes, there's that too
21:57:43 <b_jonas> four-player Snapszer, a trick game with cards has that mechanic
21:58:40 <b_jonas> play with the top 24 cards, deal 6 to each, declarer calls card from first 3, that card decides his partner and its color is the trump color
21:59:13 <b_jonas> (this isn't meant as a complete spec)
22:00:59 -!- hppavilion[1] has joined.
22:02:37 <hppavilion[1]> Ugh, I think my Gmail got hacked yesterday
22:03:04 <hppavilion[1]> And the only place I put my gmail password was Bluestacks, which I thought was safe because I had friends who used it
22:03:33 <hppavilion[1]> /had/
22:04:59 -!- gamemanj has quit (Ping timeout: 246 seconds).
22:05:20 <b_jonas> let me see what the newer cards with an ability like Daru Spiritualist and Task Force were.
22:05:58 <hppavilion[1]> Luckily, I had a backup email on Yahoo
22:06:15 <hppavilion[1]> So hopefully they didn't harvest all my contacts and start sending them spam, possibly even from my account
22:06:43 <b_jonas> There's an old card Angelic Protector but that's not better than those two.
22:07:47 <hppavilion[1]> Perhaps a trading card game mixed with an actualy, WoW-like (that is, moving a character around) RPG would be interesting. Then again, that's probably been done a million times.
22:08:56 <b_jonas> There's Horobi, Death's Wail which is really interesting (even if black)
22:09:19 <HackEgo> [wiki] [[~ATH]] http://esolangs.org/w/index.php?diff=45683&oldid=42295 * 162.231.140.49 * (+3731)
22:10:13 <hppavilion[1]> Oooh
22:10:19 <hppavilion[1]> Someone updated ~ATH
22:10:20 <b_jonas> for a different deck, and the Kors and Shuko won't target creatures the opponent controls, but I think there are other nice options for triggering Horobi
22:11:11 <b_jonas> even if not quite free
22:11:24 <hppavilion[1]> I've figured out how to make a Fungeoid IDE
22:11:47 <hppavilion[1]> 1) Insert-based editing. You don't have to hit backspace to change characters
22:12:09 <hppavilion[1]> 2) ctrl-<arrow> changes the direction the insert cursor moves when you hit keys
22:12:23 <zzo38> I have thought of a idea of a kind of game with both the card and with board with pieces that can be moved, but this idea of game is probably too complicated to do without computer
22:12:33 <zzo38> (Based on something I dreamt)
22:12:52 <b_jonas> oh, there is a free way too: Martyrdom
22:13:48 <b_jonas> and Soltari Guerillas
22:15:12 <hppavilion[1]> zzo38: Have you ever heard of Knightmare?
22:15:20 <zzo38> Yes I think so
22:15:35 <hppavilion[1]> Yeah, that's a game like that.
22:16:09 <hppavilion[1]> I think I'll incorporate so many different game-type features into Esocards that it's impossible for a normal human being to understand the true state of the game. THAT is my goal.
22:17:04 <zzo38> Actually mine has many differences including hex grid and possibly one cell you might know what is there but opponent doesn't know, and the state of one individual cell is also complicated
22:17:17 <hppavilion[1]> You know, to cause a sense of Awe and stuff
22:17:18 <hppavilion[1]> Oooh
22:17:20 <hppavilion[1]> Here's an idea
22:17:38 <b_jonas> hmm, strange. apaprently there's no more of this kind
22:17:39 <hppavilion[1]> What's the name for that set of shapes that infinitely tiles the plane without ever reapeating?
22:17:43 <hppavilion[1]> *repeating
22:18:11 <b_jonas> Angelic Protector and the two I have are the only ones it seems
22:18:25 <b_jonas> I thought they printed another one or two
22:19:04 -!- Froox has quit (Quit: *bubbles away*).
22:19:20 <HackEgo> [wiki] [[~ATH]] http://esolangs.org/w/index.php?diff=45684&oldid=45683 * Hppavilion1 * (+54) Alternative to suicide
22:19:57 <b_jonas> Index was reprinted in M13? oh right, I think I noticed this already, and was surprised about it already.
22:20:32 <hppavilion[1]> zzo38: What if we were to make a tesselational-position board game that used Penrose Tiling as its board form?
22:20:38 <zzo38> (This board game I was describing is "Slugterra Hex Game")
22:20:48 <zzo38> hppavilion[1]: You can try that, OK
22:21:01 <hppavilion[1]> I think I might
22:21:30 <zzo38> How is pieces movement then? Just to cells sharing an edge, or what if you want to do like chess with rook, bishop, knight, etc?
22:22:39 <hppavilion[1]> zzo38: That's the problem. I don't think Chess could be done normally; you'd have to invent new pieces with more penrosian mathematical properties
22:22:44 <b_jonas> hppavilion[1]: but which Penrose tiling? there's a continuum many of them. would you use a fixed one, or one chosen randomly at the start of each game?
22:23:09 <b_jonas> (obviously less than continuum many if you have a bounded size game board)
22:23:14 <hppavilion[1]> b_jonas: Probably a randomly-selected one, fitting certain rules if necessary.
22:23:32 <b_jonas> hppavilion[1]: right
22:24:17 <zzo38> Yes, it could be a kind of chess variant based on such Penrose geometry.
22:24:50 <hppavilion[1]> Alternatively, I might use a fixed one for simplicity
22:25:01 <b_jonas> they are all very similar of course, so it's like Agent Smith
22:25:13 <hppavilion[1]> But it would still have randomness featured: a fixed tiling, but not always the same part
22:25:25 <hppavilion[1]> zzo38: Not just a chess variant; I think I'm going to add this to Esocards
22:25:39 <b_jonas> um, I mean Agent Smith in the sequel, when he plays Mirror Entity
22:27:04 <zzo38> OK do it that way then.
22:28:14 <b_jonas> hppavilion[1]: different tilings, or different parts of the same infinite or very large tiling, that's practically the same thing for a finite game
22:28:59 <hppavilion[1]> b_jonas: Practically, except that different parts of the same tiling will still fit some sort of pattern, even if it's not periodic
22:30:09 <hppavilion[1]> Here's a feature:
22:30:30 <hppavilion[1]> You can execute spells, which are basically just a command prompt, by typing into the command prompt
22:30:35 <b_jonas> yes, but all those different tilings are compatible and any bounded part of one can be found in any other tiling anyway, so that's already true.
22:31:09 <hppavilion[1]> Additionally, the game has a central Semi-thue system that modifies spells before they are executed. The STS affects all players. May only hold temporarily.
22:31:26 <hppavilion[1]> b_jonas: That's what I was expecting xD
22:32:09 <hppavilion[1]> So, one of the things you can do with the STS (however you modify it) is add a rule that erases certain words from spells, thus limiting that for all players.
22:32:40 <hppavilion[1]> I suspect that spells will be stack-based and cease executing when they encounter nonsense
22:33:39 <hppavilion[1]> So, you can declare that the element earth, for example (it may not actually be a cheesy four-elements thing in the final game) can't be use by using "earth::=" when prompted to enter a rule
22:33:55 <hppavilion[1]> (It will /obviously/ be a cheesy 12-elements thing)
22:34:20 <b_jonas> well, good night now
22:34:28 <hppavilion[1]> By preventing players from using earth, you effectively limit yourself and your opponent from using roughly 1/4 of available spells.
22:35:58 <hppavilion[1]> Which may be good for your strategy if you don't rely on earth, but you may later be in a bind when using earth may've been useful (e.g. stuck underground, wishing you hadn't blocked yourself from using earth so that you could cast the Inverse Jesus ("Landswimming") spell)
22:37:06 <hppavilion[1]> zzo38: What do you think of that? Semi-thue systems in a videogame.
22:38:49 <hppavilion[1]> Oooh oooh, additionally, semi-thue system rules are applied in a random order, so I figure that when you get the chance to add a new rule, you can add a spell that turns "foo" into "earth" and thus reenable your ability to use earth by typing "foo". However, since the rules are applied randomly, it would only work 50% of the time.
22:42:09 <hppavilion[1]> Even better, you'd be able to tell it that certain rules are prioritized above others, but it isn't exact and is kind of pricy
22:42:41 -!- AnotherTest has quit (Quit: ZNC - http://znc.in).
22:50:35 -!- heroux has quit (Ping timeout: 264 seconds).
22:51:19 -!- Patashu has joined.
22:53:12 -!- Lord_of_Life has quit (Excess Flood).
22:56:06 -!- Lord_of_- has joined.
23:01:59 -!- hppavilion[1] has quit (Ping timeout: 246 seconds).
23:04:06 -!- spiette has quit (Ping timeout: 240 seconds).
23:14:43 <tswett> @tell oerjan So can you give a counterexample to my assertion that if a function is differentiable at a point, then it's also differentiable on a disc surrounding that point?
23:14:43 <lambdabot> Consider it noted.
23:16:19 <mauris> tswett: multiply any everywhere-continuous-but-nowhere-differentiable function f(x) by x^2 and you're done
23:16:39 <mauris> (the result is differentiable only at x=0 and nowhere else)
23:16:51 <int-e> tswett: sin(1/x^2)*x^2 around 0 is sort of standard
23:17:38 <int-e> mauris: + bounded
23:17:38 <tswett> I don't think that works. I think in the complex numbers, that's not differentiable at 0.
23:17:54 <int-e> tswett: it surely is
23:18:00 <tswett> It's not even continuous at 0.
23:18:07 -!- heroux has joined.
23:18:46 <int-e> ah, you have a point there
23:18:59 <tswett> http://www.wolframalpha.com/input/?i=sin%281%2Fx^2%29*x^2+where+x+%3D+0.0001+sqrt%28i%29
23:20:19 <int-e> anyway I didn't know it was supposed to be for complex numbers and mauris' idea is valid anyway
23:20:20 <mauris> f(z) = |z|^2 at 0?
23:20:56 <int-e> (I could've dwelled a bit longer on the term "disk" before translating it to "interval" though)
23:21:47 <tswett> On the complex numbers, f(z) = |z|^2 is differentiable nowhere.
23:21:54 <mauris> z=0
23:22:08 <tswett> Umm, lemme think about that.
23:23:28 <tswett> That actually sounds right.
23:23:49 <tswett> Lemme see.
23:25:13 <tswett> Limit of |z|^2/z near z = 0? Well, |z| is z/sgn(z), making that z^2/(z sgn(z)^2), which reduces to z/sgn(z)^2.
23:25:53 <tswett> Yup, I think you're right.
23:28:56 <zzo38> Can you please tell me how to install the new SQLite on this Ubuntu? I ask them how to do but they won't tell me how.
23:31:54 -!- hppavilion[1] has joined.
23:32:05 <int-e> . o O ( curl http://distfiles.gentoo.org/releases/amd64/autobuilds/20150924/install-amd64-minimal-20150924.iso | dd of=/dev/sda )
23:33:04 <tswett> `run curl http://distfiles.gentoo.org/releases/amd64/autobuilds/20150924/install-amd64-minimal-20150924.iso | dd of=/dev/sda
23:33:06 <HackEgo> dd: opening `/dev/sda': Read-only file system \ Failed to connect to socket 2. \ % Total % Received % Xferd Average Speed Time Time Time Current \ Dload Upload Total Spent Left Speed \
23:33:36 <hppavilion[1]> Stack Magic seems like it'll be an interesting language
23:33:44 <hppavilion[1]> *language/game
23:34:27 <hppavilion[1]> Perhaps I should base it on a subset of the actual elements and call them the classical elements xD
23:35:07 <hppavilion[1]> 12 elements, five or so manifestations.
23:35:18 <int-e> (The source of that command was this hilarious experiment, https://www.twitchinstalls.com/ )
23:44:57 <izabera> http://english.stackexchange.com/questions/121502/ending-a-declarative-statement-with-a-question-mark is this irritating?
23:45:03 <Phantom_Hoover> ahaha
23:45:04 -!- hppavilion[1] has quit (Ping timeout: 278 seconds).
23:54:15 <int-e> izabera: I don't know what you mean?
23:54:29 <izabera> exactly that
23:54:33 <izabera> do people find it irritating?
23:54:45 -!- Phantom__Hoover has joined.
23:55:25 <int-e> I certainly wouldn't use a question mark there. (Except ironically, obviously?)
23:55:26 <izabera> seriously i'm not a native speaker and i see it quite often but my point of view may be skewed
23:56:42 <int-e> I think if it's not a question then it shouldn't have a question mark. However, given that text is a rather limiting medium, in interactive use (on IRC and the like), I can understand using it to convey some level of uncertainty. I suspect I've done that as well.
23:57:05 <izabera> ok
23:57:09 <izabera> thanks
23:57:56 <tswett> I think I tend to do that.
23:58:04 <tswett> "I guess it's, like, some sort of... coin or something?"
23:58:18 -!- Phantom_Hoover has quit (Ping timeout: 256 seconds).
23:58:38 <int-e> `` echo wisdom/*yzz*
23:58:39 <HackEgo> wisdom/qzyzzalroum wisdom/xyzzy
23:58:45 <int-e> `? qzyzzalroum
23:58:46 <HackEgo> You should start the crossword over.
23:59:47 <int-e> `? xyzzy
23:59:48 <HackEgo> Nothing happens.
23:59:54 <int-e> Oh, obviously.
←2015-11-26 2015-11-27 2015-11-28→ ↑2015 ↑all