00:18:04 kmc: lol 00:18:15 genuinely curious how people explain things like that 00:18:25 boredom or libertarianism 00:18:26 I have plenty of explanations I'd propose, but am still wondering 00:20:16 is the question "why do libertarians tend to be well-off white dudes" cause I don't think that one is very difficult to explain 00:22:10 yes 00:22:25 :) 00:23:27 what do you think of futarchy, copumpkin 00:23:58 -!- Ghoul_ has quit (*.net *.split). 00:24:06 is that some sort of japanese thing 00:25:00 kmc: seems interesting 00:25:00 nah, it's something something prediction markets 00:25:18 let me try to put my finger on a concern though, or read more and find it's handled :P 00:26:59 http://fabiensanglard.net/rayTracing_back_of_business_card/ wat 00:27:26 instead of voting on policies, you vote to determine a social utility function, and then use prediction markets to pursue policies which maximize that utility function 00:27:37 I don't know much more than that summary, but it's a cool idea anyway 00:28:43 Bike, can you not just print it really small 00:29:04 what's the point of a business card you can't read! 00:29:13 it's cool 'cause it uses the ability of markets to optimize stuff, but without the libertarian assumption that what markets optimize 'by default' is fair or good 00:29:42 my concern is that it isn't just gov't that could affect the things being bet on 00:29:52 it could create perverse private incentives to make programs fail 00:30:31 this page calls typedef "define" and a struct a class. okay, then 00:31:11 hah, !v for normalization 00:31:55 Bike: well struct and class are nearly the same in C++ 00:32:19 the only difference is that structs have public visibility by default, while class has private visibility 00:32:31 oh, i didn't think you could have inheritance with structs 00:32:40 presumably the author used 'struct{' because it's shorter than 'class{public:' 00:32:52 nope, you can do all the same things 00:33:55 copumpkin: true 00:34:58 Bike: This also means that class{public: ... } is just a struct. :) 00:35:19 Assuming no methods. 00:36:00 C++ has this separate concept of "Plain Old Data" for things that are like C structs, but they can still have (non-virtual) methods 00:36:56 arguably a lot of C structs are not Plain Old Data either, it's just that the language provides no way to express this 00:39:14 -!- OriginalOldMan has joined. 00:39:25 for example you might say that it should be safe and reasonable to clone a POD object with a simple memcpy(), which does not hold for many C structs 00:39:56 like what? 00:40:00 I don't know if that's part of the generally used definitions of POD, though 00:40:48 Bike: say your struct contains a pointer to a reference-counted object 00:41:02 you need to increment the refcount when you copy the struct and hence the pointer 00:42:09 in C++ you would express this by using a smart pointer (like std::shared_ptr) for the field, which will make the struct non-POD 00:42:15 oh, so like, semantics 00:42:31 the neat thing is that the default constructor and destructor in C++ will still do the right thing 00:42:41 for some reason i thought not being able to memcpy at all 00:43:02 ah 00:43:47 because i am bad at c++ 00:44:04 C++ is so cool 00:45:14 it's ugly and archaic and it's complex to the point of being nearly unusable, but everything does fit together and exist for a reason 00:45:25 It's my favorite esolang. 00:45:28 :D 00:45:35 (did you get that meme from me?) 00:45:39 kmc: money is just too powerful! :P 00:45:51 (probably, but the sentiment was just too good to leave to one man) 00:46:12 yay 00:46:16 memes want to spread 00:46:53 I might try to design an esolang with region pointers, once I learn how the hell they work 00:47:07 -!- nisstyre has joined. 00:47:15 region pointers? 00:47:53 Rust's "borrowed pointers" have a "region" or "lifetime" attached which says how long the pointer is guaranteed to remain valid 00:48:00 it's part of the type 00:48:20 usually inferred, but you can name them if you want, which means you can return these things as well as take them as arguments 00:49:03 struct Foo { x: int } fn f<'t>(foo: &'t Foo) -> &'t int { &foo.x } 00:49:16 takes a pointer to a Foo, returns a pointer to the int inside, which is valid as long as the original pointer was 00:49:34 huh. 00:49:46 i think i'm with you re: not knowing how the hell they work 00:49:58 rust <3 00:50:34 -!- OriginalOldMan has quit (Quit: Page closed). 00:50:39 and since they're like type parameters you can also parametrize data over them, e.g. to make a vector iterator which is parametrized over how long the original vector lives 00:52:34 sounds pretty serious for an esolang, though 00:53:03 in Rust they also track mutability; if you have a borrowed pointer of the immutable sort, you know that nobody else can mutate the object while you're using it through that pointer 00:53:33 the aliasing rules are strict enough to guarantee that 00:54:13 and so if you borrow a mutable thing as immutable, the compiler will "freeze" it for the duration of the borrow, which is a static typechecker thing except for garbage-collected stuff, which needs to be frozen dynamically 00:54:54 myname: well it might be an esolang or it might just be a toy language for my understanding 00:55:02 depending on whether it can be made interestingly perverse 00:55:13 Region-C or Region-fuck. 00:55:18 for example what if the only data you have is region pointers, and you need to do basic arithmetic using regions somehow 00:55:28 I don't know enough about it to say whether that is a coherent idea 00:55:33 kmc: how do you distinguish between eso and toy? 00:56:02 esolangs are designed to be interestingly weird and difficult to use 00:56:13 ah 00:56:19 so... where is J? 00:56:28 I don't consider Brainfuck to be a "true esolang" because although it's very minimal, and hard to use for that reason, the concepts it uses are straightforward and familiar 00:56:41 and it was designed not to be difficult but to have a very simple compiler 00:57:08 that definition of esolang is way too restrictive IMO 00:57:10 J isn't supposed to be difficult to use. 00:57:39 I wonder if APL counts as weird in context. I mean, A Programming Language didn't have a whole lot of competition. 00:57:44 lol 00:57:47 Not to mention, Brainfuck is fairly easy to target. 00:58:45 Maybe I should write an article on the wiki on Chaitin's "lisp-with-apl-character-set" bullshit and that can be my first article. 00:59:11 I guess the whole compiling to diophantine equations thing is pretty esoteric. 00:59:28 the hell? 00:59:40 Right. 01:01:12 why should anybody wants to ADD apl character set to something? 01:01:32 It's not added. There aren't alphanumeric characters. Or multi-character identifiers. 01:01:40 (hope this helps) 01:02:26 -!- augur_ has joined. 01:02:27 I should rewatch the ending of season two of ATLA 01:02:27 -!- augur has quit (Read error: Connection reset by peer). 01:07:57 -!- oerjan has quit (Quit: leaving). 01:16:11 whats that 01:32:35 -!- nisstyre has quit (Ping timeout: 260 seconds). 01:33:36 -!- augur_ has changed nick to augur. 01:37:41 -!- nisstyre has joined. 01:43:06 -!- OriginalOldMan has joined. 01:53:35 -!- augur has quit (Remote host closed the connection). 01:59:10 _o/'`\o_ 01:59:10 | | 01:59:10 /< /`\ 01:59:48 that right one looks like he got a boner 01:59:57 he's raising his dongers 02:00:39 lots of people on efnet used to hate on me because they thought i was you btw. just sayin :) 02:00:52 huh? 02:00:58 i never was on efnet 02:01:09 must be one of the nets with another myname 02:01:09 ah, must be a different person with the same nick then 02:01:28 i am surprised i got it here tbh 02:01:40 the other myname was a script kiddie, at least at one point 02:01:52 oh dear 02:01:55 myndzi, please turn off the `? stick figure 02:02:02 `? 02:02:06 ? 02:02:34 hackego has been kicked for now, but you know the one i mean 02:02:34 myname: either way, this is gonna get confusing, hahaha 02:02:41 i don't, actually 02:02:45 i don't know what was bound to `? 02:02:52 ¯\(°_o)/¯ 02:02:52 | 02:02:52 º¯`\o 02:02:57 That one. 02:03:42 er, you mean the whole script? or just that smiley 02:03:53 that smiley 02:04:03 why's that? 02:11:25 because it triggers whenever hackego turns up a blank in the wisdom db, and triples the line count 02:17:27 -!- Ghoul_ has joined. 02:20:20 -!- Phantom_Hoover has quit (Quit: Leaving). 02:20:54 that sounds like a hackego problem to me :P i can block that line or something if you like 02:21:13 -!- augur has joined. 02:21:46 ¯\(°_o)/¯ 02:21:46 | 02:21:46 º¯`\o 02:23:05 ah, i see 02:23:13 i don't know what hackego is supposed to do in most cases :P 02:23:57 \o/ \o/ 02:24:13 you can make any line ignored by leading it with ^k69^o 02:24:22 for what it's worth 02:25:30 actually, anywhere in the line now. should be simple enough to tack on the end or something for specific cases 02:25:41 \o/ \o/ 02:26:36 isn't the typical solution to block HackEgo from your bot 02:26:53 i would, but people store things in it that are intended to trigger my thing too 02:27:09 the ignore thing was already there, i use it for other stuff 02:28:34 -!- HackEgo has joined. 02:28:53 Fix YOUR bot, dick. 02:28:57 -!- HackEgo has left. 02:29:03 har. 02:30:06 well my solutions are: ignore hackego entirely (undesirable), disable that specific smiley (undesirable), write code to ignore that specific line (undesirable), disable entirely (undesirable) 02:30:26 compared with essentially saying 'i explicitly don't want this particular smiley to trigger the thing' 02:30:47 The first is desirable. 02:30:59 okay then 02:31:00 And if anybody WANTS your bot to respond to HackEgo, it is THEY who are undesirable. 02:31:05 haha 02:31:09 i was thinking about things like `celebrate 02:31:22 not just the `? deal 02:31:32 I stand by my previous statement. 02:31:36 -!- HackEgo has joined. 02:32:46 test \o/ 02:32:53 silly mirc 02:33:45 `? aoeu 02:33:47 aoeu? ¯\(°_o)/¯ 02:34:02 all set \o/ 02:34:03 | 02:34:03 >\ 02:39:53 -!- Koen has quit (Quit: Koen). 02:54:10 -!- mnoqy has joined. 02:59:02 * kmc fights the urge to pick fights with Haskell zealots on Twitter, which is still more sensible than copumpkin picking fights with libertarians 02:59:10 lol 02:59:23 haskelliots 02:59:38 * copumpkin doesn't really get kmc's anti-haskell-community revelation 03:00:00 there are zealots but just avoid them and take all the good, smart people who spend all their time learning about cool new stuff 03:00:05 and not frothing at the mouth :P 03:00:14 well I found it very hard to avoid them in #haskell 03:00:31 #haskell-lens is quite pleasant 03:00:33 maybe there are other outposts of "Haskell community" which are better 03:00:55 it's supposedly about lenses 03:01:03 I realize it's actually #haskell-edwardk 03:01:05 but has ended up being just a friendly place to talk about cool stuff 03:01:06 yeah 03:01:09 I did join a while back 03:01:09 but everyone else uses it 03:01:15 but left when my client restarted or something ;P 03:01:21 he hasn't been around much recently 03:01:35 my specific complaint lately is "Rust doesn't have higher-order polymorphism? well it must be shit and I will repeat that opinion forever without bothering to learn anything else about it" 03:01:42 I dunno if I would get that attitude in -lens or not 03:01:58 I doubt it, but shachaf is around more than I am 03:01:59 :) 03:02:09 not that I don't want higher-order polymorphism in Rust... 03:02:34 most of the haskellers I respect have stated that they find rust interesting and would probably use it for systems code 03:02:42 the others haven't said anything much about it :P 03:02:45 ok 03:03:06 keep in mind that there's about 1 person in that group, and that's me 03:03:09 err 03:03:10 I mean 03:03:16 haha ;P 03:03:29 it would be cool if some of the many Haskell libraries that include C code could switch to Rust 03:03:35 :) 03:03:44 we'd just need some support in cabal for building rust code 03:03:44 and it would be cool to have a high level FFI between the languages, e.g. something which preserves algebraic types and memory management 03:03:46 I'd love that 03:03:49 yeah 03:04:06 it's something I'd vaguely like to work on, but I'm probably too lazy to do anything more than a proof of concept 03:04:11 how many high level FFIs even exist? 03:04:12 rustc is such a moving target too 03:04:13 I know the feeling :) 03:04:20 do they have a fixed calling convention? 03:04:22 it may not be worth Cabal trying to sync up with it at present 03:04:28 we're only just getting rustpkg off the ground 03:04:52 I don't know how fixed the Rust calling convention is, but you can also call in and out of Rust with the C calling convention 03:05:02 ah 03:05:14 and Rust structs are defined to be C compatible 03:05:20 so in unrelated news, i just learned a proper use of subgraph isomorphis. gotta get cracking on that eodermdrome interpreter now. 03:05:26 kmc: are you on the rust team? 03:05:32 so there's no need for C glue or "find the offset of everything" preprocessors a la hsc2hs 03:05:46 no I'm working on Servo, which is the ~only big project in Rust besides rustc itself 03:05:49 ah 03:05:56 Bike: :D 03:06:34 "or put another way, there are already eodermdrome interpreters running in the chemistry department" 03:06:43 lol 03:06:45 so which application is this? 03:07:22 Bike: well RPC mechanisms which allow nested key-value structures as values are pretty common 03:07:23 big molecules are, unsurprisingly, represented as graphs. chemists sometimes want to search for submolecules. 03:07:27 you could consider that a high level FFI 03:07:59 wikipedia says it's a "common misconception" that it just does regex search on a linearized form, though. i shudder for chemoinformaticians 03:11:57 copumpkin: writing rustc in Rust is kind of questionable... on the other hand, writing the Rust runtime system in Rust is fucking awesome 03:12:13 I bet :) 03:12:15 what's Servo? 03:12:32 a new web layout / rendering engine with an emphasis on parallelism 03:12:41 https://github.com/mozilla/servo 03:13:04 oh yeah 03:13:06 I remember that 03:14:41 also an emphasis on security through memory safety, eventually, but it's kind of a joke to claim that at the moment 03:14:55 since we use C libraries for a bunch of stuff, and lots of unsafe Rust code for various other reasons 03:15:02 ah 03:15:34 what part of servo do you work on? 03:15:53 whatever needs doing; it's a small team 03:15:59 ah 03:16:26 actually most of the commits to date are from Rust people; having a separate team for Servo is a new thing 03:16:29 so do you have a full html parser in rust? 03:16:30 of course we still work together closely 03:16:38 no, that's one of the things we're using a C library for at present 03:16:40 ah 03:17:08 HTML / CSS parsing, image decoding, JavaScript are all in C 03:17:27 -!- OriginalOldMan has quit (Quit: Page closed). 03:17:28 we would like for it to all be Rust but the priority varies by component 03:17:46 for example we'd like to replace the CSS parser soon because it performs poorly (or rather, the CSS selector matching part of the library does) 03:18:03 and we'd like to replace image decoding soonish for security + robustness 03:18:20 (if an image decode fails within Rust code, we can easily catch that with the usual Rust task failure mechanisms and recover) 03:18:21 what HTML parser do you use? 03:18:28 hubbub 03:18:32 right 03:18:39 I started working on Haskell bindings to hubbub years ago. I forget why. I gave up. 03:18:49 it's doubtful that we will ever replace SpiderMonkey with a production quality JavaScript engine in Rust 03:19:15 cause that's an incredible amount of work, plus the security benefits are murkier 03:21:21 we need to do something about the fact that new versions of SpiderMonkey have only a C++ API and not a C API :( 03:23:36 Rust more than most languages could support a "first-class" C++ FFI, but it would still be a huge pain 03:24:15 what makes an FFI "first-class"? 03:25:15 well in this case I mean that we can map many C++ features to directly analogous Rust features, while most languages can't because they don't have any analogous feature 03:26:01 like if your C++ API uses RAII then it's hard to map it directly to most languages, but plausible that we could do this for Rust 03:26:09 ahhh 03:26:13 does the C++ spidermonkey API use C++y features? 03:26:24 I'm told it does use RAII at least; I haven't looked into it 03:26:29 RAII is running code when a variable goes out of scope? 03:26:39 but it sounds like our job would be harder than just "auto-generate an extern "C" for each of these prototypes" 03:26:58 Erm, hmm, guess not 03:27:11 does it use exceptions? like. what happens if initialization fails 03:27:19 Sgeo_: the RAII idea is implemented by running code when an object is destroyed (which could happen by a variable going out of scope, yes) 03:27:22 All I'm thinking is that in Tcl, you can have code run when a variable is unset, which includes if it goes out of scope 03:28:21 Sgeo_: the core idea is that having some object represents that you've acquired some resource (e.g. opened a file or taken a lock) 03:28:47 Mutex m; { Lock l = m.lock(); ... } 03:29:03 you don't need to call any unlock() method because it will happen automatically when you leave that scope, even if you leave due to an exception 03:29:27 (or by invoking 'return' deep inside some branching control flow) 03:29:53 so in this instance it's similar to Python's 'with' statement and other stuff in a lot of languages 03:30:29 but it's more general because the object representing the acquired resource doesn't *have to* live on the stack with lifetime synced to a single function call 03:30:48 you can put that Lock in a heap allocated object 03:31:00 Should be doable in Tcl I think. And Tcl doesn't have automatic GC, although with most OO systems for Tcl including TclOO, you can specify destructors 03:31:16 or if you want to refcount the retention of the lock, put it in a std::shared_ptr 03:31:20 etc 03:31:20 Actually, by 'most' I mean, I'm only certain about TclOO 03:31:28 how does Tcl free storage if not GC? 03:31:40 Reference counting. 03:31:44 Well, strings are GCed, sorry about that 03:31:46 ah 03:31:49 Or, well, reference counted. 03:31:55 Tcl's native value type, being strings, cannot be circularly referenced. 03:31:58 But anything mutable (variables, namespaces) aren't GCed 03:32:09 heh 03:32:44 Oh, and strings are immutable 03:33:17 yeah, it might be possible to map RAII nicely into refcounted systems with destructors 03:33:22 I haven't thought about it 03:34:05 a lot of gc'd systems provide some kind of hook to call when something is destroyed 03:34:16 kind of a bad idea to use it for raii, though 03:34:18 yeah but if it's true GC, that doesn't happen at any particular time 03:34:20 right 03:34:36 plus it might just not happen at all sooooo 03:35:01 "Note that destructors are not called in all situations (e.g. if the interpreter is destroyed)" 03:35:24 :/ 03:35:33 lol 03:35:56 I should note that in Tcl, 'interpreter' is not synonymous with 'running program' 03:36:05 So it's not as lolzy as it sounds 03:36:11 is it still something sigkillable 03:36:27 A Tcl program can invoke sub-interpreters 03:36:31 And control them 03:36:54 I think that's how Tcl does threads 03:56:29 -!- zzo38 has joined. 03:57:19 I am curious to know, how many Wiccans hate daylight saving time compared to Roman Catholics? 03:58:13 -!- dessos has quit (Ping timeout: 256 seconds). 04:03:38 i want to frame you 04:05:43 For what? 04:06:37 wrong sense of "frame" 04:07:30 It doesn't matter what sense, it doesn't answer, what? 04:07:56 in this sense "for" is meaningless. 04:08:20 Well, why do you want to? 04:08:38 because that's a great question. 04:10:49 But yours isn't a very good question. 04:11:43 :( 04:39:23 Numerology stuff is as silly as, if you had a computer program that calculates the MD5 hash of the current date/time and treats it as a machine code address and jumps to it. Isn't it? 04:39:56 it is. 04:40:39 (Maybe this comparison can even be used to make a idea to make a esolang) 04:44:47 Do you have a better kind of comparison (if there is one)? 04:45:52 i don't need a comparison because one time i saw a book about how santa was satan and was going to end the world, and it wasn't a joke 04:46:46 Yes some people do stupid things like that 04:53:42 It is certainly stupid but it doesn't seem to have a lot to do with numerology. 04:55:52 Oh it was all based on numerology. s+a+n+t+a added up to 666 or whatever. 04:56:32 Well, of course anagrams do too, then. 04:57:18 (Although, so can things other than anagrams. Anagrams are one class of words that do.) 05:01:27 -!- audioPhil_ has joined. 05:03:04 These and other divinations can be described by two things: artificial correspondences, and the improper use of these correspondences. 05:03:23 -!- audioPhil has quit (Ping timeout: 248 seconds). 05:08:32 -!- Bike has quit (Ping timeout: 240 seconds). 05:15:50 -!- Bike has joined. 05:56:17 "Be careful with this message. Similar messages were used to steal people's personal information. Unless you trust the sender, don't click links or reply with personal information. " 05:56:27 But I trust FedEx *sends personal info* 05:56:35 Maybe that message should be reworded? 05:59:03 or maybe you shouldn't have sent them personal info :) 05:59:16 mostly that would depend on whether it really was fedex or not 06:02:21 If you need the service from FedEx, then ignore the message and send it to FedEx using the telephone book or whatever instead of that message perhaps. 06:02:47 If you do not need the service from FedEx, then ignore the message and don't send your personal info. 06:09:57 -!- Taneb has joined. 06:34:24 -!- zzo38 has quit (Read error: Connection reset by peer). 06:39:05 -!- FreeFull has quit. 06:39:36 -!- zzo38 has joined. 06:39:59 Why do I sometimes get error about IRQ not less or equal? 06:40:12 What does sdIv:;aL{l*h?[?Q4-xiYf9QSi3U&7edDCVZ3z god help you 06:42:13 Well, I will sleep now anyways. 06:42:34 the IRQ less or equal error is a symptom of bad RAM, usually (it would be interesting to learn why it causes some assert about an IRQ to fail though) 06:42:46 While I am writing now (after the crash), all these four lines starting with "W"; do you know that? 06:43:08 olsner: I used the RAM test program and it says the RAM is OK. 06:44:01 hmm, I'm out of prepackaged answers then... maybe it's just a bug of some kind 06:44:08 OK 06:44:14 -!- zzo38 has quit (Client Quit). 06:45:26 -!- Bike has quit (Ping timeout: 245 seconds). 06:48:36 -!- atriq has joined. 06:49:00 -!- Taneb has quit (Disconnected by services). 06:49:03 -!- dessos has joined. 06:49:04 -!- atriq has changed nick to Taneb. 07:03:19 @tell Buggy drivers, sometimes. The "official" answer is at http://msdn.microsoft.com/en-us/library/ms854226.aspx 07:03:19 Consider it noted. 07:04:36 olsner: See above; IRQL_NOT_LESS_OR_EQUAL is the (very self-explanatory, I'm sure) error message you get on generic memory access violations in kernel mode, more or less. 07:06:39 (The number it's checking is not exactly an "IRQ" number but a sort of a privilege level: http://mikemstech.blogspot.se/2011/11/how-to-troubleshoot-blue-screen-0xa.html lists them.) 07:37:03 -!- mnoqy has quit (Quit: hello). 07:41:19 -!- tromp_ has quit (Read error: Connection reset by peer). 07:41:24 -!- tromp__ has joined. 07:53:22 -!- mnoqy has joined. 08:08:56 -!- Tod-Autojoined has joined. 08:09:48 -!- TodPunk has quit (Read error: Connection reset by peer). 08:22:17 -!- Taneb has quit (Read error: Operation timed out). 08:23:53 -!- epicmonkey has joined. 08:35:39 -!- Taneb has joined. 08:51:14 -!- mnoqy has quit (Quit: hello). 09:21:50 -!- mnoqy has joined. 09:36:32 -!- MindlessDrone has joined. 09:45:23 -!- MindlessDrone has quit (Quit: MindlessDrone). 10:40:36 -!- MindlessDrone has joined. 10:48:08 -!- Koen has joined. 10:52:00 -!- mnoqy has quit (Quit: hello). 10:53:35 do we have a language where the only data structure is an unbounded integer accumulator? but with sufficiently arithmetic operations to make it turing-complete 10:56:22 though I guess if you give it too many arithmetic instructions it becomes too easy, as you can make a simple stack of "digits" in base B with push x ::= (acc = acc * B + x), drop = (acc = acc / B) and pop = (acc % B) 10:56:30 hmm 10:57:42 not sure how to make a deque though; in order to access the top digit you need a way to store (or compute) the number of digits 11:07:06 Koen: a "single" unbounded integer accumulator? 11:07:31 if you meant two or more (but the fixed number of) accumulators, there it is: http://esolangs.org/wiki/NULL 11:07:37 otherwise I don't know. 11:07:41 Koen, Fractran's pretty close 11:08:04 lifthrasiir: well if you got two that's close to a minsky machine right? 11:08:08 right 11:08:15 depending on operations 11:10:15 interesting 11:25:13 -!- Sgeo_ has quit (Read error: Connection reset by peer). 11:31:48 -!- oerjan has joined. 11:32:47 * oerjan hugs HackEgo 11:33:33 what do you mean i never hug real people. 11:37:36 Hi, oerjan 11:37:41 How are you doing 11:38:04 back pain :( 11:39:54 @tell myndzi fortunately ^celebrate is on fungot, not HackEgo 11:39:55 Consider it noted. 11:39:55 oerjan: from where does the hero alone have the power. " m, madam...! i am the master of war! i've seen all kinds of battles from here, step back, prometheus! 11:41:27 fungot: what can you say about sword stopping 11:41:27 oerjan: but cyrus! are you leaving! ayla like crono! what should we do?! robo, don't waste your time. alfador only likes you, crono! 11:41:44 fungot: that doesn't seem very relevant to swords. 11:41:44 oerjan: need a clone? the magician, nolstein bekkler! executing program. please let me go... put me out! he's really a tricycle! pass him! 11:42:28 -!- updog has quit (Ping timeout: 264 seconds). 11:42:56 fungot: You're all about tricycles. 11:42:56 fizzie: shall we get back to the present? he's been known. we reptites will rule the world in a mere door that keeps us bound, hand, foot...and tongue kid? ...oh, it's you, isn't this morbid? the great adventurer toma levine rests in a grave to the north. it's a great place for a picnic! heard that magus's place... 11:43:09 This thing is really repetitive. 11:43:27 I had a good idea for a fungot dataset except it was something in Finnish. 11:43:27 fizzie: it's time you jumped off this mortal coil... this must be the invention. hope it still leaves you hungry! here you are the only one thing we need to defeat you, lavos. 11:43:43 istr someone suggested finnish already. 11:43:45 oerjan, I hope your back pain lessens 11:43:57 Taneb: well i just took some pain killers. 11:43:59 Yes, but it was some specific Finnish thing. I forget what it was exactly. 11:44:42 clearly kalevala 11:45:03 I think it was something from the Institute. 11:45:24 then fungot could be all highbrow and only the finns would understand it. 11:45:24 oerjan: the masamune!? noooo!!! ha! 11:45:35 (The "Institute for the Languages of Finland"; we're helping them with some audio things.) 11:45:43 fungot: There, that's a sword. 11:45:44 fizzie: yes, it's been awhile prometheus! we must do it to save you! who the heck are you?! c'mon!! 11:46:57 fungot: what about trying excalibur instead. 11:46:58 oerjan: as long as you keep crono in your heart, the day of lavos"... go to " leene square" 1000 a.d.? yes, i'd have done something very brave! he's probably up north, to guardia!!! let's toast our land! now we'll have some peace! magus is a tad on the spooky side. our only hope. 11:47:33 They have a 1456658-word corpus of Finnish classics from 1880s to 1930s, that would be a highbrow Finnish thing to do. 11:47:46 But I don't really think so, there's books enough in it already. 12:02:00 apparently there's still an official head of the tokugawa clan https://en.wikipedia.org/wiki/Tokugawa_Tsunenari 12:02:52 -!- Roujo has quit (Ping timeout: 264 seconds). 12:04:13 -!- Roujo has joined. 12:16:27 -!- Roujo has quit (Ping timeout: 248 seconds). 12:19:15 -!- Roujo has joined. 12:56:19 Grumble frubmle Praat does not play audio. 12:59:39 -!- boily has joined. 12:59:54 good it-happened morning! 13:01:14 -!- metasepia has joined. 13:06:49 -!- conehead has quit (Quit: Computer has gone to sleep.). 13:12:25 -!- Roujo has quit (Ping timeout: 256 seconds). 13:12:50 -!- Roujo has joined. 13:14:19 Roujo: おはよう! 13:19:11 -!- Roujo has quit (Ping timeout: 245 seconds). 13:20:21 -!- Roujo has joined. 13:29:48 -!- lambdabot has quit (Ping timeout: 260 seconds). 13:33:03 -!- Roujo has quit (Ping timeout: 245 seconds). 13:34:18 `pastewisdom 13:34:22 http://codu.org/projects/hackbot/fshg/index.cgi/file/tip/wisdom/ 13:34:23 -!- Roujo has joined. 13:35:45 @tell Phantom_Hoover e2 to e4??? 13:35:54 right. lambdabot is dead. 13:39:17 by the way, what happened to the topic? 13:40:02 Codepoint fatigue. 13:40:07 It broke down under the load. 13:46:06 it was indeed getting pretty long and vetust. 13:47:04 boily: psst it's a pun on "pawn" 13:48:20 you and your non-rhotic English dialects... 13:50:40 -!- audioPhil_ has changed nick to audioPhil. 13:50:55 -!- audioPhil has quit (Changing host). 13:50:55 -!- audioPhil has joined. 13:51:51 -!- carado has joined. 14:06:50 `addquote I am curious to know, how many Wiccans hate daylight saving time compared to Roman Catholics? 14:06:55 1108) I am curious to know, how many Wiccans hate daylight saving time compared to Roman Catholics? 14:07:02 someone requested a framing. 14:09:30 the quote is added, the PDF updated, the yerba mate dranked, but what has DST got to do with Wicca? 14:10:54 that is all part of the zzo38 mystery 14:10:58 `quote mystery 14:11:00 367) as i was filled with zzo38 mystery at the moment i saw quintopia: I am at Canada. 14:11:26 hm did i actually put a double space when i said that? 14:11:28 -!- boily has set topic: Topic undergoing maintenance | PDF still available during construction work: https://dl.dropboxusercontent.com/u/2023808/wisdom.pdf | http://codu.org/logs/_esoteric/. 14:11:43 `pastelogs I am at Canada 14:12:09 probably a manifestation of QILDSR. 14:12:17 wat 14:12:20 (Quote Inter-Locutor Double-Spacing Reflex) 14:12:30 OKAY 14:12:36 http://codu.org/projects/hackbot/fshg/index.cgi/raw-file/tip/paste/paste.24462 14:13:06 indeed i didn't. 14:13:23 `run sed -i '367s/ No output. 14:13:31 `quote mystery 14:13:33 367) as i was filled with zzo38 mystery at the moment i saw quintopia: I am at Canada. 14:13:57 spurrious mimic evolutionary double spacing, which means I probably misformated the quote... 14:17:02 anyone who sees that in the future will think it is two quotes 14:17:25 @tell quintopia anyone who sees that in the future will think it is two quotes <-- WOW YOU WERE PSYCHIC 14:17:29 oops 14:18:13 we may have a bot absense number constancy situation. 14:18:50 fungot: do you know where lambdie went? 14:18:50 boily: you, with you standing around! the trial! what has gotten away with this! a top secret document has been left behind? marle lucca 14:18:59 and then they will try to correct the spacing, and we must undo it 14:19:04 I PSYCHIC TOO 14:19:46 who do I complain to if I want lambdabot back? 14:20:00 elliott. 14:20:21 elliott: ↑ LAMBDABOT! NOW! please :) 14:21:21 i must regretfully point out that elliott has been idle for 8 hours. although may mean he'll wake up about now. 14:21:25 *+that 14:22:23 @localtime elliott 14:22:36 * boily facepalms... 14:23:56 elliott is in the UK, which uses DST, so he's on UTC+0100, which is 5 hours later than here, so it's around 3:22pm there. 14:25:23 you appear to be making the mistake of assuming sane sleeping schedules for #esoteric regulars. 14:26:04 boily: おはよう! I managed to red that!| 14:26:07 read* 14:26:12 Also, yes, it happened! =D 14:27:11 oerjan: well. I know for a fact that Taneb has sleep issues, and that my own schedule is sane, so with that population sample it's 50/50 either way with elliott. 14:27:53 Roujo: seems the Universe didn't collapse... 14:28:23 boily: Not so far, anyway. Which is good. 14:31:56 boily: hm this quote change happened at around the time i did a major formatting check on the quotes, so it quite possibly was my fault. 14:33:10 oerjan: the end result was inconsequential. I happen to have read the quote, and having that dangling verb there made no sense, so I figured it was a single quote. 14:33:26 indeed it was my fault. 14:33:29 otoh, I did have parsing trouble with the django shenanigans. 14:33:32 * oerjan swats himself -----### 14:33:39 oh... that's a first! 14:33:40 Django daikasoku 14:33:50 boily: that's incredibly intentional. 14:33:54 boily: no it's not. 14:34:16 Roujo: infâme et odieux personnage que tu es! how dare you earworm me on a Monday Morning! 14:34:39 boily: There you go http://www.youtube.com/watch?v=puHyO5JNOE0 14:34:41 oerjan: it... happened before? fascinating. 14:34:52 Roujo: won't click. 14:35:00 It's a remix, really 14:35:07 Well, more of a mashup, I guess 14:35:08 (at least for the next hour. I'm einstein on the beaching my ears) 14:36:35 boily: i've been stupid before, you know. 14:37:23 `pastelogs swats himself 14:37:24 -!- updog has joined. 14:37:37 -!- yorick has joined. 14:37:42 http://codu.org/projects/hackbot/fshg/index.cgi/raw-file/tip/paste/paste.600 14:39:17 `pastelogs swats herself 14:39:23 there's even a pre-lengthening one. 14:39:36 http://codu.org/projects/hackbot/fshg/index.cgi/raw-file/tip/paste/paste.19841 14:40:23 and, on top of that, only male self-swatting. 14:40:45 There's something to be said about that somewhere, but I can't figure out what 14:41:10 i think that can be explained by the fact we rarely have more than one active female in the channel. 14:41:22 and sometimes none. 14:41:26 “it's not the length of the swat that counts...” 14:43:47 boily, I have sleep issues? 14:44:11 -!- Frooxius has quit (Ping timeout: 248 seconds). 14:44:21 * oerjan spots an updog 14:44:39 hm the updog must be defective. 14:44:39 what's updog? 14:44:45 Taneb: iircbpn, you talked about that stuff some months ago. 14:44:53 (iirc but probably not) 14:45:07 ~duck updog 14:45:07 what's updog? 14:45:07 Software description: a command line tool for getting weather forecasts - written in Ruby (Ruby). 14:45:30 metasepia: you appear to be confusing updog with yourself 14:45:30 what's updog? 14:45:37 glad to know that Ruby needs to be explained by itself. 14:45:51 also, ruby with haskell. 14:46:01 updog: or do you actually do weather forecasts? 14:46:01 what's updog? 14:46:34 boily, I think I just have a tendency to nap 14:46:43 And I'm not good at lie-ins 14:46:47 elliott: wait does that mean you're awake now. 14:47:17 oerjan: this updog is connected from somewhere around Buffaly, NY. 14:47:17 what's updog? 14:47:30 s/ly/lo/ 14:48:27 boily: hm... i guess it isn't elliott, i don't think he'd bother with strange ip's. 14:49:05 who are the new yorkers in the channel that haven't relocated to san francisco. 14:49:34 elliot's asleep 14:49:42 `? elliot 14:49:45 No one was ever called Elliot. 14:49:50 Fiora: ^ 14:49:52 elliott is also aslep. 14:49:55 asleep. 14:50:06 Fiora: well he might be waking up about now. 14:50:43 -!- oerjan has set topic: Waiting for elliott | PDF still available during construction work: https://dl.dropboxusercontent.com/u/2023808/wisdom.pdf | http://codu.org/logs/_esoteric/. 14:50:59 If it helps I could cause a large explosion 14:51:12 `? godot 14:51:14 godot? ¯\(°_o)/¯ 14:51:38 `run echo "c.f. elliott" > wisdom/godot 14:51:42 No output. 14:51:51 as recorded in the File, people from the East Coast are: jsvine, ... 14:51:57 well. seems to be the only one. 14:52:04 `run echo "cf. elliott" > wisdom/godot 14:52:05 oh! quintopia. 14:52:08 No output. 14:52:31 oerjan: so yeah. quintopia is the Most Probable Updogger. 14:52:42 figures. 14:52:56 always with the laughing matter that one 14:53:59 If it helps I could cause a large explosion <-- i'd like you to link afterward to the hexham newspaper where you explain why you did it. 14:54:38 Taneb: could you cause a pretty explosion, instead of a large one? 14:54:51 boily: but that might not wake up elliott! 14:55:28 Last I saw elliott, he made a mermaid out of me 14:55:30 So meh 14:55:32 -!- FreeFull has joined. 14:55:32 =P 14:56:04 Roujo: what exactly happened yesterday? were you connected and active on the Chännel during a Weekend? 14:56:21 Roujo, I think that was me 14:56:23 boily: I'm always connected. 14:56:35 boily: what's updog? 14:56:35 what's updog? 14:56:36 Taneb: Well, elliott turned me into a mermaid, you just made me realize it 14:56:47 Oh 14:56:51 Oh well 14:56:51 stop copying me updog 14:56:51 what's updog? 14:57:13 boily: did you send things to gorham 14:57:50 quintopia: no, I was busy with either my SO, or visiting Lachine at night and doing unspeakable things with another Unnämed Channel Member. 14:58:09 quintopia: mind you, the cookies are bought, I just need to go to the post office. 14:58:37 i am already at gorham 14:58:47 I'm getting late... :( 14:58:51 you'll have to send to andover, me now 14:59:15 oerjan: can you lend me your swatter, so that I can undergo penience for my sins? 14:59:29 Lachine is best Chine 14:59:35 quintopia: oh well. can you send me your new coördinates? 14:59:54 oerjan: swat boily for too much diaeresis 14:59:57 >doing unspeakable things with another Unnämed Channel Member 14:59:57 wat 15:00:06 @tell Buggy drivers, sometimes. The "official" answer is at http://msdn.microsoft.com/en-us/library/ms854226.aspx <-- i don't think Buggy will understand that message. 15:00:11 Roujo: he he he. 15:00:34 boily: Don't start any rumors now >_> 15:00:45 s/nien/nan/ 15:00:59 Roujo: bin voyons dont. voir si je suis pour partir des rumeurs :D 15:01:17 s/nan/nyan/g 15:01:40 * oerjan helpfullÿ swäts boily -----### 15:02:15 tack. 15:02:52 tjänare. 15:03:32 -!- nooodl has joined. 15:03:35 hm it seems not to mean what i thought it meant. 15:04:35 *ingen orsak 15:06:02 boily: david rutter/general delivery/andover, me 04216 15:10:51 @tell Koen there's also the single-register machine described at http://esolangs.org/wiki/Minsky_machine 15:11:16 Noted. 15:11:24 darn. 15:12:05 -!- oerjan has quit (Quit: Laterally). 15:12:17 -!- conehead has joined. 15:26:41 -!- lambdabot has joined. 15:35:05 -!- Taneb has quit (Read error: Connection reset by peer). 15:35:46 -!- augur has quit (Remote host closed the connection). 15:37:50 -!- Taneb has joined. 15:39:14 ~metar CYUL 15:39:30 Wait, did I mess that up? 15:39:44 ~metar EGNT 15:39:58 @tell oerjan lambdabot is back. hth 15:39:58 Consider it noted. 15:40:07 CYUL 231500Z 30010KT 15SM BKN031 11/04 A3004 RMK CU6 SLP175 15:40:07 EGNT 231520Z 11006KT 080V190 9999 FEW019 20/14 Q1022 15:40:10 Ahhhhhhh 15:40:12 There we go 15:41:53 Which one of those is the temperature 15:43:45 Why would you want the temperature? 15:44:27 I think it's 20/14 15:45:32 That would make sense, yeah 15:45:35 11/04 15:45:43 It *is* cold-ish out there 15:45:49 * Roujo gazes out the window 15:51:12 -!- atriq has joined. 15:53:30 -!- Taneb has quit (Ping timeout: 276 seconds). 16:01:41 -!- Ngevd has joined. 16:02:17 -!- Bike has joined. 16:02:36 -!- atriq has quit (Ping timeout: 276 seconds). 16:03:38 -!- Ngevd has changed nick to Taneb. 16:03:50 -!- Phantom_Hoover has joined. 16:10:50 oerjan: yeah but that's not turing-complete is it 16:24:49 no 16:26:50 -!- augur has joined. 16:52:05 -!- S1 has joined. 16:55:30 -!- Bike has quit (Ping timeout: 252 seconds). 16:56:18 ~metar EFHK 16:56:19 EFHK 231650Z 02010KT 9999 -SHRA FEW011 BKN014 10/08 Q1001 BECMG SCT014 BKN030 16:57:04 "BECMG" -- for people who can't afford vowels. 16:57:13 (Okay, there's one.) 17:03:39 -!- Bike has joined. 17:12:46 -!- Taneb has quit (Quit: Leaving). 17:17:38 back from lunch, and it's -SHRAing in Helsinki. 17:18:25 shra, eh 17:26:46 -!- conehead has quit (Quit: Computer has gone to sleep.). 17:27:12 boily: It's raining in Shanghai. (Disclaimer: it might not, this is a reference.) 17:27:26 ~metar ZSSS 17:27:27 ZSSS 231700Z 15004MPS 9999 FEW013 26/23 Q1011 NOSIG 17:27:39 fizzie: sadly not. this is not a reference. hth. 17:27:52 (what is an MPS?) 17:27:57 ~duck MPS 17:27:58 mps definition: meters per second. 17:28:00 oh. 17:28:05 boring. 17:28:15 Well, the local weather forecast says it will rain on Wednesday, that's close enough. 17:28:16 I'd much prefer for it to be Miles per Second. more dramatic, imho. 17:30:08 Moons/sec 17:30:59 megaluns per second! 17:32:06 MegaParsecs/Second 17:32:09 `frink 4 miles/second -> km/hour 17:32:16 14484096/625 (exactly 23174.5536) 17:32:37 In related news, Frink's interpretation of "km/h" was kind of curious. 17:32:40 `frink 4 miles/second -> km/h 17:32:48 ​ Conformance error \ Left side is: 804672/125 (exactly 6437.376) m s^-1 (velocity) \ Right side is: 1.5091904506831453200e+36 m^-1 s kg^-1 (unknown unit type) \ Suggestion: divide left side by energy \ \ For help, type: units[energy] \ to list known units with these dimensions. 17:33:07 kilometers per henry? 17:33:15 speaking of curious things, I had that Most Wonderful Cola during lunch. 17:33:23 boily: The dead one? 17:33:37 Roujo: I don't drink dead cola. 17:33:47 I guess that would match the henry, right. 17:33:48 So you drink alive cola, then? 17:33:52 `frink 4 megaparsec/second -> km/hour 17:33:59 Roujo: of course. only the freshest. 17:34:00 4.4433757170802496930e+23 17:34:12 `frink 4 miles/s -> km/hr 17:34:19 14484096/625 (exactly 23174.5536) 17:34:34 `frink 4 mi/s -> km/hr 17:34:42 14484096/625 (exactly 23174.5536) 17:34:43 Shorter and shorter. 17:34:48 `frink 5 megalightyear/milisecond -> km/hr 17:34:49 are you golfing unit converstion? you freaks. 17:34:57 Warning: undefined symbol "milisecond". \ Warning: undefined symbol "milisecond". \ Unconvertable expression: \ 47303652362904000000000 m (length) milisecond (undefined symbol)^-1 -> 5/18 (approx. 0.2777777777777778) m s^-1 (velocity) 17:34:57 s/st/s/ 17:35:03 `frink 5 megalightyear/millisecond -> km/hr 17:35:12 170293148506454400000000000 17:35:26 Somehow that sounds wrong 17:36:03 `frink 1 lightyear/year -> km/hr 17:36:11 1.0792759005937356714e+9 17:36:29 Why did it use scientific notation for this but not for that >_> 17:36:57 `frink 4 mi/s -> km/h 17:37:01 Oh wait 17:37:05 ​ Conformance error \ Left side is: 804672/125 (exactly 6437.376) m s^-1 (velocity) \ Right side is: 1.5091904506831453200e+36 m^-1 s kg^-1 (unknown unit type) \ Suggestion: divide left side by energy \ \ For help, type: units[energy] \ to list known units with these dimensions. 17:37:11 Gregor: because 170293148506454400000000000 is the Not Quite Exactly Number of the Beast. 17:37:14 `frink 4 m/s -> km/hr 17:37:16 ​/hackenv/bin/frink: line 1: syntax error near unexpected token `exactly' \ /hackenv/bin/frink: line 1: `14484096/625 (exactly 23174.5536)' 17:38:02 何 17:38:11 `frink 4 mi/s -> km/hr 17:38:13 `cat bin/frink 17:38:15 ​#!/bin/sh \ exec /hackenv/lib/frink -e "$@" 17:38:19 14484096/625 (exactly 23174.5536) 17:38:47 the "dummy programs with Unicode in the name" thing is getting really old. 17:39:01 its all unicode :< 17:39:06 u kno 17:39:10 what the heck 17:39:22 ... This is only the second time I've done it, elliott >_< 17:41:09 Roujo: you need to find something more... obscure. something that will slip past behind the Ever Examinating Elliott Eyes. 17:41:34 I guess don't really have anything on-topic to do here, anyway, so I can see how that could be annoying 17:41:37 Sorry 17:41:40 Anyway, have a nice day 17:41:53 -!- Roujo has left ("Off I go!"). 17:42:20 `run echo 'echo hi' > bin/`printf '\xcc\x8a'` && chmod +x bin/`printf '\xcc\x8a'` 17:42:25 No output. 17:42:33 `̊ 17:42:34 hi 17:46:18 lol, outstanding 17:46:28 Combining mark, yeah? 17:47:19 COMBINING RING ABOVE 17:47:24 The insta-angel character. 17:50:11 -!- Nisstyre-laptop has joined. 17:59:53 -!- myndzi\ has joined. 18:03:44 -!- metasepia has quit (Ping timeout: 260 seconds). 18:03:48 eh? 18:04:08 come on, connect, you damn bot... 18:04:59 -!- Bike has quit (Ping timeout: 260 seconds). 18:06:11 Does anyone know if there is a command line tool to mess with mount namespaces under Linux? 18:06:29 what do you mean about a mount namespace? 18:07:01 I don't mess with that stuff but I think I've stumbled upon the tool 18:07:07 You know that different programs can have different set of visible mount points right? Used for stuff like virtualization, but Android also uses it for security 18:07:12 (hth) 18:07:20 olsner, happen to remember the name? 18:07:23 -!- Bike has joined. 18:07:28 -!- metasepia has joined. 18:07:46 ~metar ZBBB 18:07:47 --- Station not found! 18:07:50 ~metar ZUUU 18:07:51 ZUUU 231800Z 00000MPS 4000 BR NSC 21/19 Q1013 NOSIG 18:08:11 Vorpal: "unshare" is one tool that's slightly relevant. 18:08:14 hm 18:08:59 fizzie, I'm basically lookint to set up a unionfs on / (and other partitions as required) to do a checkinstall/fakeroot on stereoids 18:09:06 Vorpal: something with mount --make-{share,slave,private}? 18:09:36 "unshare" runs a program with mount (or other) namespace privatized, so that whatever changes you do won't affect the parent. 18:10:05 boily, err what? Looking at it it looks potentially different, but I have no clue what that stuff is 18:10:22 fizzie, that looks like it could work 18:10:32 Vorpal: result from a quick google search. I have no idea what it implies, but there's documentation on IBM.com and C code with PAM. 18:11:12 checking the man page I'm confused 18:11:17 The share/slave/private thing is fancy, but indeed slightly different. I've forgotten exactly how it worked, but it was relevant to what's visible from where through what bind mounts. 18:11:27 heh 18:11:53 "Apparently their firewall is blocking access to certain file types." the dav saga continues 18:12:42 It's a kind of a thing where you can mount a tree in such a way that if you mount it with "shared" in one place, and as "slave" in others, then mount something else inside the master location, the slaves will see those same mounts. 18:13:02 Normally you'd of course need to e.g. explicitly bind all new mounts you make inside the master. 18:13:09 I seem to recall that Maemo uses that feature. 18:13:17 Or Meego, or some other thing in that family. 18:13:29 huh 18:13:31 neat 18:13:33 Or some mobile thing anyway. :p 18:14:45 ah, the Maegozen mess... 18:15:28 I guess it's sort of related to mount namespaces in that there you could easily have a need for shared mounts in addition to private ones. 18:16:06 There's some sort of a thing where you have per-login namespaces, and whan e.g. a user's sshfs mounts be visible in all sessions of that user. 18:16:17 (Man, modern things are so complicated.) 18:16:51 sshfs on my system is visible across the board from what I can see 18:17:07 Yes, I don't think per-login namespaces are exactly commonplace. 18:17:08 Not usable by others unless you pass -o allow_root or some such flag 18:17:10 can you chain sshfses across multiple machines? 18:17:18 Probably 18:17:18 when you sshfs mount something with default options then root "can't" access it, which is strange 18:17:35 kmc, I know, which annoyed me a lot when doing rdiff-backup on my phone 18:17:41 boily: you mean sshfs mount a remote filesystem which has sshfs mounts? yes of course 18:17:44 I've done it 18:18:01 Going to be slow though 18:18:06 not necessarily 18:18:26 my favorite thing about Linux namespaces is the number of security holes created by allowing unprivileged users to create them 18:18:39 kmc, unprivileged users can create them? heh 18:18:48 yeah that could cause loads of issues 18:18:56 kmc: I mean having an sshfs mount that tunnels through one or more machines to get to a distant one. 18:19:00 well it's a newish feature, don't know when it's enabled 18:19:07 I heard android 4.3 uses SElinux as well. 18:19:09 -!- S1 has quit (Quit: Page closed). 18:19:23 that whole namespace stuff sounds like something that should increase security, not create more holes 18:19:34 olsner: sure if it has no bugs 18:19:45 but it's a ton of new code which breaks a bunch of longstanding assumptions 18:20:06 http://lwn.net/Articles/543273/ hey this looks like a cool article 18:20:07 They should have unit tests and such... Hm, are there automated testing suits of any kind of the kernel? 18:20:21 lol you can't find security holes that way Vorpal 18:20:31 they should have automated tests just to prevent security *regressions*, which do happen 18:20:31 testing is for wimps. failures should be spectacular! 18:20:32 true, but you can find bugs 18:20:34 Vorpal: Incidentally, the clone thing from last night worked on the first try, after gdisk expert-mode fixing the disk-size and backup header fields. (Also bumped the Windows Experience Index score up by two points or something.) 18:20:35 but it's nothing near a solution 18:21:27 fizzie, nice, my desktop scores like 7.5-7.9 on everything but the disk, which caps the whole thing to 5.4 or some such 18:22:04 fizzie, funnily it is my SSD in my work laptop that caps it's score too to 6.8 or some such. That is an Intel 520 SSD 18:22:38 Other than that it scores like 7.1-7.3 iirc 18:22:48 Vorpal: Same here. I think I have 7.9 from all other categories (though it goes to 9.9 these days), except the disk was 5.x; now it's 7.1. (It's not the fastest possible SSD.) 18:23:28 Heh 18:23:36 fizzie, 9.9 is Windows 8 I presume? 18:23:45 Yes, it's an 8 install. 18:23:52 Right 18:24:03 Wonder if 8.1 is going to bump those up even more. 18:24:06 fizzie, how terrible is it? 18:24:31 I keep starting Chrome every now and then because it's at the left edge of the quick launch bar where a start window would be. :p 18:24:41 hm 18:24:49 fizzie, apart from that? Do you hate it? 18:25:22 Well, honestly I don't really use it all that much. Certainly it works okay for basically running Steam. 18:25:29 Hm 18:25:46 I've installed Emacs on it and whatnot, but I'm not entirely clear why I bothered. 18:26:23 Heh 18:26:32 -!- AnotherTest has joined. 18:26:34 did you hear they're doing a steam os now 18:26:46 Steam OS? 18:26:48 Really? 18:26:53 I presume it is a Linux distro? 18:27:03 Anyway, when did they announce that? 18:27:14 Windows 8.1 is going to add a start menu and a straight-to-Desktop boot option, which I guess will make the UI more "usual". I'm not a real fan of the start screen. 18:27:18 i don't think they've said but it's the only viable candidate 18:27:22 Vorpal, today 18:27:23 -!- conehead has joined. 18:27:25 «Imagine that, Valve decided that the "environment best suited" to Steam is one it owns and controls fully» 18:27:31 Ah 18:28:47 ~duck valve 18:28:48 valve definition: '''archaic''' a leaf of a folding or double door. 18:28:54 nailed it 18:29:02 "Hundreds of great games are already running natively on SteamOS. Watch for announcements in the coming weeks about all the AAA titles coming natively to SteamOS in 2014." 18:29:11 "SteamOS combines the rock-solid architecture of Linux with a gaming experience built for the big screen." i guess that's straightforward 18:29:12 Bike, that, er, seems a bit hyperbolic what with the linux part 18:29:16 fizzie: 8.1's start menu isn't actually a menu. 18:29:20 fizzie: it just brings up the start screen. 18:29:33 -!- Nisstyre-laptop has quit (Quit: Leaving). 18:29:36 Phantom_Hoover: eh android's pretty controlled 18:29:44 Bike, how locked down will it be though? 18:30:17 Bike, yeah but is it really 'owned and controlled fully' by google (i don't know how android works) 18:30:19 fizzie: personally I used http://www.startisback.com/ to make Windows 8 like bad old Windows when playing around with it in a VM. YMMV on whether you can bring yourself to pay for a start menu. 18:30:33 elliott: Oh? Well, I guess that's okay too. I can just think the screen is a big menu. 18:31:07 The living-room is family territory. That’s great, but you don’t want to see your parents’ games in your library. Soon, families will have more control over what titles get seen by whom, and more features to allow everyone in the house to get the most out of their Steam libraries. 18:31:18 Phantom_Hoover, Android is kind of controlled, kind of open. The source is open, the play store, is not. Nor is the development towards the next release until it is released. 18:32:05 "You can play all your Windows and Mac games on your SteamOS machine, too. Just turn on your existing computer and run Steam as you always have - then your SteamOS machine can stream those games over your home network straight to your TV!" 18:32:12 That streaming stuff seems really popular these days. 18:32:20 Doesn't Nvidia keep doing that kind of thing too? 18:32:22 "mac games" heh 18:32:32 fizzie, well onlive folded iirc 18:32:53 Yes, but I mean locally-inside-the-house kind of stuff this time. 18:33:02 I doubt there are many games on mac that are not on windows. I know of a couple, and they are really really old. 18:33:25 Shield streams games from a PC too, AIUI. 18:34:15 And I guess they have the GRID project. 18:34:19 Hm 18:34:25 Which one is GRID? 18:34:34 Nvidia's own Onlive-style thing, I think. 18:35:03 Bike: porn games right 18:35:10 that must be it 18:35:15 u know it bro B) 18:35:19 c.c 18:35:30 got to keep the nude mods out of sight 18:35:31 I'm not entirely sure if they were going to run the service too or what; at least it's a family of hardware for running a "cloud gaming" service. 18:36:02 Ah 18:36:35 I thought the idea was that steam was going to stream from a PC in your house 18:36:38 "When service operators use NVIDIA GRID as the foundation for their on-demand Gaming as a Service (GaaS) solution --" 18:36:49 gonna play me some leisure suit larry on the biiiiig screen 18:37:01 Bike: With the biiiiig pixels. 18:37:07 Fiora, yes, that's what fizzie was initially talking about 18:37:10 foo as a service is pretty great 18:37:48 Service as a Service. 18:40:56 food as a service 18:45:28 The background on the SteamOS page -- http://store.steampowered.com/livingroom/SteamOS/ -- looks kind of like the Land of Wind and Shade. (I'm about 3000 pages behind in Homestuck, incidentally.) 18:55:29 don't worry, it's all downhill from there 18:57:51 -!- carado has quit (Ping timeout: 260 seconds). 18:58:58 s/downhill/uphill 18:59:14 / 18:59:21 thanks for completing my regex -_- 18:59:31 you need the trailing slash for sed, man! 19:00:09 also imo it's not very hilly since it's in magispace 19:02:40 the magic of paradox space! 19:03:31 -!- ais523 has joined. 19:04:36 -!- Bike has quit (Ping timeout: 245 seconds). 19:09:30 someone just posted on a.l.i asking for a MarioLANG impl 19:09:44 (mentioning it here, because I imagine most of you don't read a.l.i) 19:13:40 -!- AnotherTest has quit (Quit: ZNC - http://znc.in). 19:14:05 -!- Bike has joined. 19:18:00 -!- MindlessDrone has quit (Quit: MindlessDrone). 19:19:08 -!- AnotherTest has joined. 19:19:39 "How much are they paying?" 19:21:38 fizzie, oh, you were up to the doc scratch intermission? 19:22:28 Phantom_Hoover: I think I was up to something like that, yes. 19:33:51 -!- nooodl_ has joined. 19:37:31 -!- nooodl has quit (Ping timeout: 248 seconds). 19:46:06 -!- nooodl_ has changed nick to nooodl. 19:49:54 gcc has become impressively good at emitting calls to optimized functions that don't exist 19:53:11 -!- Taneb has joined. 20:16:01 ~yi 20:16:01 Your divination: "Great Possessing" to "Sojourning" 20:21:05 ~yi 20:21:06 Your divination: "Small Exceeding" to "Sojourning" 20:24:02 ~yi 20:24:05 Your divination: "Grouping" to "Returning" 20:24:15 ah. I was worried it was stuck on sojourning. 20:25:18 ~yi 20:25:19 Your divination: "Returning" to "Gnawing Bite" 20:25:40 boily: what are these from 20:26:02 -!- AnotherTest has quit (Ping timeout: 264 seconds). 20:26:09 nooodl: I Ching. 20:26:39 is I also written ~yi or something? 20:26:46 I Ching... is that the weird two-player game where you've got to draw a path with othello-like tiles? 20:27:08 imagine my confusion when I looked up in the sky to see a bunch of tiny clouds spelling out the word "CLOUD" in big letters 20:27:10 olsner: depends on the romanisation. 20:27:27 (skywriter advertising) 20:27:35 kmc is stalked by fractal clouds. 20:27:41 that sounds very pkd 20:27:46 yeah 20:27:47 Koen: never heard of that. 20:28:09 my usual tagline is "stupid cyberpunk future" but this is less cyberpunk and more like Hofstadter and PKD dropped acid together 20:28:43 Koen: there's this game played with a go board and stones, where both players use black stone at first, then one of them decides during the game to play white. 20:29:13 everything in this city is trying to sell me clouds of various shapes 20:29:34 olsner: apparently, my divination relates to having freedom transformed into vacations or something. 20:29:43 I think I'm due for a quick trip abroad... 20:31:23 boily: do you mean go with the pie-rule? 20:31:30 never seen anyone play that 20:32:14 no, the goal is to make a line that connects 2 or 3 sides first. can't remember the details; I'm trying to find the game again. 20:37:22 I think it's that, but I'm vraiment pas sûr: http://www.di.fc.ul.pt/~jpn/gv/gonnect.htm 20:37:35 "gonnect" 20:37:37 SUBTLE 20:37:57 RULES - The rules of GO apply, except: 20:37:58 Players may not pass; 20:37:58 The PIE rule: White may choose as his 1st move to exchange places with Black. 20:38:12 that's why I'm not sure it's that. 20:38:17 :-) 20:38:34 though I didn't quote the remainder of the page where they explain you have to connect 2 or 3 sides 20:38:53 I *know* there's a game where you have to connect three sides. 20:42:13 hmmm interesting 20:42:41 the article says player often reach a dead-end because of mutually separated groups 20:43:04 so the game keeps going until someone runs out of moves and has to commit suicide 20:43:16 so that's basically go 20:43:47 my favourite go move is the nuclear tesuji :D 20:45:10 nay, B2 bomber 20:45:57 -!- aloril has quit (Ping timeout: 248 seconds). 20:46:48 but then, nothing compares to a Swedish fuseki. 20:55:38 `frink 125 J -> L*atm 20:55:51 5000/4053 (approx. 1.233654083395016) 20:56:33 -!- mnoqy has joined. 20:59:20 -!- aloril has joined. 21:04:24 -!- Taneb has quit (Quit: Leaving). 21:05:25 -!- oerjan has joined. 21:09:34 Koen: yes it is. 21:10:07 @tell Koen yes it is. 21:10:08 Consider it noted. 21:10:29 I'll look into it 21:10:43 @tell quintopia anyone who sees that in the future will think it is two quotes <-- WOW YOU WERE PSYCHIC 21:10:44 Consider it noted. 21:11:32 Koen: in fact, that machine being TC is a step on the road to showing that an ordinary minsky machine with 2 register is TC. 21:11:50 *registers 21:13:55 Koen: also, fractran is basically a version of it with much simplified flow control. 21:16:21 because fractran has no persistent machine state in addition to the unbounded single register. 21:16:59 (you need temporary state to know where you are in the list of fractions, though.) 21:21:58 2222222222222222222 21:22:12 yeah 21:22:24 wat 21:23:26 -!- augur has quit (Remote host closed the connection). 21:26:23 * boily applies percussive maintenance on ais523 --------#̈#̈#̈ 21:26:53 oerjan: it's my standard rule that whenever I accidentally spam a lot of keys due to leaning on the keyboard in #esoteric, I send rather than delete 21:27:01 I noticed I'd been leaning on the "2" key, so… 21:27:15 i seeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee 21:28:21 I like how a simple “plot twist” becomes «revirement de situation». sometimes, English is much more efficient... 21:29:03 -!- metasepia has quit (Ping timeout: 260 seconds). 21:29:24 aurgh! not again? 21:29:40 psycho killer, qu'est-ce que c'est 21:29:42 -!- metasepia has joined. 21:29:46 -!- impomatic has left. 21:30:01 run run, run awaaaaaaaaayyyyyy ♪ 21:30:08 oh oh oh oh! 21:30:17 ~duck psycho killer 21:30:18 "Psycho Killer" is a song written by David Byrne, Chris Frantz and Tina Weymouth and first played by their band The Artistic in 1974, and as new wave band Talking Heads in 1975, with a later version recorded for their 1977 album Talking Heads: 77. 21:30:31 ba ba ba ba, ba ba ba ba ba, ba, better 21:33:07 ~metar ZUUL 21:33:08 --- Station not found! 21:36:15 ~metar ZMUB 21:36:15 ZMUB 232130Z 00000MPS CAVOK M06/M08 Q1024 NOSIG RMK QFE659.9 89 21:38:27 ~metar ENSB 21:38:27 ENSB 232050Z 14003KT CAVOK 00/M02 Q1034 RMK WIND 1400FT 26003KT 21:38:38 meh. it's colder in Ulaan Baatar than in Svalbard. 21:42:56 http://www.gcmap.com/mapui?P=ZMUB-ENSB 21:43:35 oh, shiny! 21:44:02 ~metar UEEE 21:44:03 UEEE 232130Z 34006MPS 9999 BKN016CB OVC100 03/01 Q0997 NOSIG RMK QFE739 23190055 21:44:46 ~metar KSFO 21:44:46 KSFO 232056Z 05003KT 10SM CLR 22/13 A2998 RMK AO2 SLP151 T02170133 58016 21:45:17 and you can chain them! 21:46:10 http://www.gcmap.com/mapui?P=CYUL-KEWR-VHHH 21:46:21 yeah it's a cool site 21:46:36 and of course it's all nice and sunny and warm in Frisco. 21:46:39 * boily is jealous 21:46:45 don't call it Frisco!! 21:46:59 ulaanbaatar is in the middle of a continental desert, it gets super windy i think 21:47:00 bleeeeeeeeh :P 21:47:10 sorry we locals are supposed to get really annoyed when people call it Frisco 21:47:16 Bike: right now, there's no wind at that airport. 21:47:16 I don't actually know why but it's A Thing 21:47:18 what about Cisco 21:47:22 Bike: even worse 21:47:32 and yes, "Cisco" is named after the last five letters in "San Francisco" 21:47:36 Nabesico 21:48:00 the old Nabisco building in Cambridge, MA is now owned by Novartis 21:48:23 from biscuits to boner pills 21:48:42 Novartis owns all, except when property of GSK or Bayer. 21:48:48 (or probably Astra Zeneca) 21:49:33 don't think Pfizer is owned by any of those 21:49:57 Novartis is descended from the company that invented LSD 21:50:23 time to go empoison myself. 21:50:30 hmm, one of the burger chains has a Frisco meal 21:50:34 -!- boily has quit (Quit: BROUE!). 21:50:36 -!- metasepia has quit (Remote host closed the connection). 21:51:03 there's a Frisco, Texas 21:51:18 named entirely to piss off san franciscans 21:51:21 probably 21:51:55 * kmc is now looking at Dallas and Houston on a map 21:51:56 scary 21:51:58 so many freeways 21:52:16 not quite like LA though 21:56:45 * oerjan recalls looking up Frisco on wikipedia once. it actually was named after san francisco. 21:57:09 once = last couple of months, i think 21:57:48 -!- augur has joined. 21:58:08 I wonder if it's still named after san francisco 21:58:45 ~meta ENVA 21:58:52 hey! 22:00:25 ~metar ENVA 22:00:34 -!- john_metcalf has quit (Ping timeout: 240 seconds). 22:01:34 that, too. 22:02:30 -!- nooodl has quit (Ping timeout: 264 seconds). 22:02:49 "In 1904, the residents chose Frisco City in honor of the St. Louis-San Francisco Railway on which the town was founded" 22:03:38 which railway apparently never made it west of Texas 22:03:43 optimistic name 22:09:26 we had a house office named Godspeed Through Texas 22:09:34 I forget what their duties were, other than organizing Naked Run 22:11:06 i guess you'd need to speed through texas for that. 22:13:12 it takes a long time to run from california to texas, whether or not you're naked 22:14:08 tru dat 22:22:51 -!- epicmonkey has quit (Ping timeout: 276 seconds). 22:34:28 -!- Tomski has joined. 22:34:48 -!- Tomski has left. 22:52:20 -!- yorick has quit (Remote host closed the connection). 23:19:24 -!- augur has quit (Remote host closed the connection).