00:10:46 -!- vodkode_ has quit (Ping timeout: 250 seconds). 00:49:44 -!- adu has joined. 00:53:51 -!- bb010g has joined. 01:08:39 -!- magician has joined. 01:09:03 -!- magician has changed nick to Guest92232. 01:11:41 -!- Guest3780 has quit (Ping timeout: 250 seconds). 01:11:41 -!- Guest92232 has changed nick to Guest3780. 01:14:24 -!- augur has quit (Read error: Connection reset by peer). 01:14:24 -!- augur_ has joined. 01:14:46 -!- adu has quit (Quit: adu). 01:17:28 Is it possible to define a general ordering of triples in RDF graphs (using the same definition of ordering regardless of which graph) even though there are blank nodes? (Blank nodes are like anonymous nodes; they don't have any ordering, and may be used multiple times.) Assume that if a blank node is wired in a particular way to the rest of the graph, it is indistinguishable for purpose of checking if a graph is the same or not. 01:19:04 -!- ^v^v has quit (Read error: Connection reset by peer). 01:25:07 -!- sdfgsdfg has joined. 01:28:42 -!- augur has joined. 01:31:49 -!- augur_ has quit (Ping timeout: 245 seconds). 02:01:09 Could we not simply "pick the graph up" by a certain node? 02:01:31 Which one? 02:02:28 hmmm 02:04:18 -!- AndoDaan_ has joined. 02:05:00 You may be able to simplify the problem by considering only the blank nodes, since everything else can already be ordered. 02:05:31 first, construct an ordering for graphs with numbered nodes. then, for each unnumbered graph, take the minimum numbered one. 02:05:44 absolutely no promises that this is tractable. 02:06:38 Note that these are directed graphs. 02:06:53 makes no difference... 02:07:04 oh wait 02:07:10 misread question. 02:07:18 -!- AndoDaan has quit (Ping timeout: 265 seconds). 02:07:46 the fact i've never heard of RDF graphs before doesn't help 02:09:01 That's OK; its exact definition isn't relevant. However, it may be described in a simplified way as such: A set of triples; the first and third may be either a URI or blank node, the second must be a URI. (It is actually a bit more complicated than that, but for the purpose of this problem everything else is irrelevant) 02:09:48 There is no problem ordering the URIs since you can just use strcmp 02:11:00 what's the problem with just defining blank nodes to be smaller than all URIs, say? 02:11:01 Each blank node is connected to N predicates as a object 02:11:40 and then order the triples lexicographically 02:12:12 so basically, as haskell's (Maybe URI, Maybe URI, Maybe URI) type 02:12:27 No, that isn't right. 02:12:36 The second one is guaranteed to be a URI 02:13:00 oh. well (Maybe URI, URI, Maybe URI) then. 02:14:05 i'm sort of assuming that's too simple but you haven't defined the problem in such a way that i can see why it is disallowed. 02:14:14 Let's say you have a unlabeled directed graph; it can become a RDF graph by making each node as a blank node and then the second one (called a predicate) is always or whatever (note that is not a blank node!). So, Maybe URI doesn't do it. 02:16:09 zzo38: my problem is that i have no information about what an RDF graph is other than a set of triples. 02:16:35 It is a graph composed of two types of vertexes. 02:17:02 the A type is connected to three B type vertexes 02:17:46 (with three distinct labeled edges) 02:18:09 the B type vertexes are arbitrary URI's or just "blank" 02:19:04 In addition, the second edge from each A type vertex always connects to a B type vertex which is a URI 02:19:36 That is one way to describe it, although I can prefer this way: It is a directed graph where vertexes can be labeled or blank, and edges are always labeled. There may be more than one blank node, but none of them have labels; and some may be used more than once. That's why (Maybe URI) does not describe a vertex. 02:20:32 oh i see the problem is that blank nodes have identity but not order 02:21:22 Yes, that's the problem I was asking about! 02:23:14 but a URI can only be used in one node, right? 02:23:34 Yes. 02:23:36 yes 02:23:44 (Although there may be multiple connections to and from it) 02:25:45 Hmm... we can start by putting the blank nodes which have a direct link to a URI node first 02:26:10 Yes I thought that might do, although still don't quite know how to continue then 02:26:32 and then ordering them by greatest 02:26:57 URI they are connected to (then by predicate, then by second greatest, etc) 02:27:56 well ok it is obviously possible to do in an intractable way, by first ordering triples in all graphs where blank nodes have been numbered, ordering the graphs themselves, then taking the triple ordering from the minimum graph 02:28:45 which arises from a numbering of your blank nodes 02:29:43 So if _AAA is connected to www.foo.com and _BBB is connected to vvv.foo.com then _BBB comes first 02:31:05 After all blank nodes which are connected to a URI have been ordered, we can use said ordering to order the blank nodes connected to them, and so on 02:32:00 however two blank nodes may be connected to the same URIs... 02:32:18 Then order by the predicate by which they are connected 02:32:33 And after that, take the second highest uri 02:32:39 what's a predicate 02:32:48 and so on like a "high-card" poker hand 02:32:53 The second element in the triple is called a predicate. 02:33:02 (The first is called a subject, and the third is called an object.) 02:33:44 -!- CADD_ has joined. 02:34:17 Unfortunately my idea fails in the case where all nodes are blank 02:34:31 hm unless there is some uniqueness property i haven't noticed/been told, this is probably impossible. 02:34:47 oren: Yes, that's another case you haven't considered 02:35:26 in fact, let's take two triples, with (B1, "url1", B1) and (B2, "url1", B2) 02:35:44 oerjan: In that specific case, it doesn't matter the order. 02:35:44 B1 and B2 are blank. there is absolutely no distinction between the riples. 02:35:50 *+t 02:36:06 Because exchanging B1 with B2 doesn't change it at all. 02:36:08 when does the order batter 02:36:23 s/ba/ma/ 02:37:21 argh 02:37:38 (In other words, the graph "looks the same" from B1 as it does from B2.) But, if you have: (B1, "url1", B2) (B3, "url1", B4) (B3, "url1", B5) then B1 and B2 and B3 are distinct, although you can exchange B4 with B5 without changing it. 02:38:00 so the ordering is only unique up to isomorphisms of the graph 02:38:15 Yes. 02:40:53 but your special case of an unlabeled directed graph becomes "can you order the edges of an unlabeled directed graph" 02:41:29 Yes, and I expect that a solution to that problem can easily be extended to work with any RDF graphs then. 02:42:05 i vaguely suspect this is at least as hard as graph isomorphism 02:42:45 Yes, I would think so too. 02:44:09 Just in case you are curious, the additional part of the definition of a RDF graph that I have not yet mentioned is that the object (the third part of the triple) can also be a "literal", which means a pair consisting of a URI and a string. (This is irrelevant to the problem I mentioned though; I simply mention it in case you need to know exactly what a "RDF graph" is for other purposes.) 02:51:05 -!- CADD_ has quit (Quit: Lost terminal). 02:54:40 mhm 02:56:46 Suppose we start by getting each node two numbers, the number of outgoing and ingoing edges 02:57:26 I loaded "graph isomorphism" in Wikipedia now to try to learn a few other stuff, but still don't quite know 02:57:32 oren: OK, that's one start 02:58:16 Then within each set of nodes, each node's "poker hand" is the N,M of the nodes it is connected to 02:59:29 I'm thinking ofan iterative process where we keep reordering the nodes which are still undistinct... 03:00:23 until no change occurs. 03:04:28 I also thought of what I now learned is called "graph canonization" (actually I thought of the same name for it); so, if you can figure out the order of blank nodes then you can replace them with URIs and so on and then you can easily order the triples. (Of course this is a hypothetical "canon:" URI scheme) 03:05:12 I still don't know how to do this though, but making up such a canonical form would easily allow them to be ordered; but you can also do it the other way around, so that you can make up such a canonical form from the ordering is the other way. 03:06:36 zzo38: i think that's what i meant with the numbering? 03:06:58 or well 03:07:49 So. take the example from above: B1,B2 B3,B4 B3,B5. The initial numbering would be B1-(1,0) B2,B4,B5-(0,1) B3-(2,0) 03:08:11 i think the numbering thing still works, it's just that if the graph has self-isomorphisms then the minimal graph can also be reached by all of those. 03:08:43 So the initial order is B2=B4=B5,B1,B3 03:10:08 Now B2 is connected to B1, and B4,B5 are connected to B3, and B1 outranks B3. Thus B2 outrank B4,B5. 03:10:31 The new ordering on step 2 is B2,B4=B5,B1,B3 03:11:15 B4 and B5 are still equal, so there is no change, and the algorithm teminates 03:11:47 (they are qual becuase theya re both only connected to B3) 03:11:48 Ah, OK I can see that now 03:17:07 However, you have to prove it! 03:25:27 -!- adu has joined. 03:25:36 -!- adu has quit (Client Quit). 03:28:01 -!- adu has joined. 03:39:52 -!- AndoDaan_ has quit (Quit: Going, going, gone.). 03:55:35 This RDF graph contains three blank nodes: http://zzo38computer.org/my_foaf.ttl The blank nodes are identified here as [], _:1, and _:2. (Each [] is a distinct blank node (although that isn't relevant here because there is only one); but each _: with the same name identifies the same blank node.) This graph contains many non-blank nodes too. Canonizing would require numbering each blank node. Note that using _:a _:b _:c in place of [] _:1 _:2 03:56:50 -!- GeekDude has quit (Quit: {{{}}{{{}}{{}}}{{}}} (www.adiirc.com)). 04:02:45 -!- Sprocklem has joined. 04:04:22 -!- Sprocklem has changed nick to tub. 04:04:37 -!- tub has changed nick to tumb. 04:04:57 -!- tumb has changed nick to Sprocklem. 04:04:57 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42317&oldid=42265 * SuperJedi224 * (+7684) 04:05:37 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42318&oldid=42317 * SuperJedi224 * (-2) 04:06:00 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42319&oldid=42318 * SuperJedi224 * (+1) /* An interpreter in Java */ 04:14:04 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42320&oldid=42319 * SuperJedi224 * (-161) /* An interpreter in Java: */ 04:17:40 -!- Sprocklem has changed nick to rub. 04:17:59 -!- rub has changed nick to Sprocklem. 04:23:31 -!- vodkode_ has joined. 04:40:41 This is a (badly drawn) diagram of part of such a graph: http://zzo38computer.org/img_17/my_foaf.png In order that you can see how it works. The circles indicate the blank nodes; they will then need to be ordered. 04:50:59 -!- oerjan has quit (Quit: Gah). 04:54:56 A diagram of the full graph (except for literals?) is at http://graves.cl/visualRDF/?url=http%3A%2F%2Fzzo38computer.org%2Fmy_foaf.ttl although it can be hard to read. This one also displays names for blank nodes (even though they don't really have names; names can be used in a representation for obvious uses though), and abbreviates some URIs that are commonly used in RDF. 05:03:56 -!- CADD has quit (Remote host closed the connection). 05:18:37 -!- adu has quit (Quit: adu). 05:32:12 -!- dianne has quit (Quit: byeannes). 05:47:56 -!- zadock has joined. 05:48:01 -!- Sprocklem has quit (Ping timeout: 244 seconds). 06:18:41 -!- zadock has quit (Quit: Leaving). 06:23:44 -!- shikhin has joined. 06:23:44 -!- shikhin has changed nick to Guest3839. 06:27:40 -!- Guest3839 has quit (Client Quit). 06:37:34 -!- shikkhin has joined. 06:40:02 -!- shikkhin has quit (Client Quit). 06:44:21 -!- shikhin has joined. 07:31:18 -!- CADD has joined. 07:35:05 I can't really take this "studying 70 min a day is optimal" study that serious. 07:35:23 apparentely students who learn the longest are the worst students. 07:35:49 which makes sense because the sooner you get it the less long you actually have to study. 07:36:20 so it shouldn't be surprising that students who learn longer on average probably do that because they are not very good at the subject. 07:48:49 -!- shikhin has quit (Quit: Lost terminal). 07:49:28 -!- shikhin has joined. 08:00:56 "Judge Allows Divorce Papers To Be Served Via Facebook" uhm... 08:00:58 ok...? 08:01:07 fungot: Do you have a Facebook account? 08:01:07 mroman: gcc 3 doesn't know about. and either you get threatened with lawsuits and the like 08:01:35 Good. gcc3 is probably a facebook profile stalker anyway. 08:08:41 The actual optimal studying amount is "all the time", but you should study more than one thing. 08:11:47 I should study breakfast 08:15:37 Indeed. Good pancakes and french toast require intensive study to perfect 08:17:23 (I often end up burning my pancakes) 08:22:06 -!- Patashu has joined. 08:26:10 Holy crap, i didn't know there was kanji for sulfuric acid 08:28:51 -!- vodkode_ has quit (Ping timeout: 256 seconds). 08:29:56 hey fungot, have you tried cooking pancakes with sulfuric acid? 08:29:57 oren: about the wiki? :) ( i'm attracted to these types of problems), if fnord enough times, could mutate some input into a more optimal way? 08:46:51 -!- zadock has joined. 08:52:41 -!- nszceta has joined. 08:58:52 -!- nszceta has quit (Quit: My Mac has gone to sleep. ZZZzzz…). 09:34:49 -!- sdfgsdfg has quit (Remote host closed the connection). 09:43:39 -!- hjulle has quit (Ping timeout: 256 seconds). 09:56:16 -!- nszceta has joined. 09:57:12 -!- nszceta has quit (Max SendQ exceeded). 09:57:43 fungot: fnord 09:57:43 mroman: or has a contradiction... non-imperative?) from the keyboard 09:59:03 -!- nszceta has joined. 10:01:40 -!- ProofTechnique has quit (Ping timeout: 245 seconds). 10:04:11 フノルドって何? 10:04:38 fungot, funorudo tte nani? 10:04:38 oren: why didn't i think of that. gentoo also starts with s! 2. blahbot, dead, dead, is just conditional reading 10:04:48 naruhodo 10:15:16 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42321&oldid=42320 * SuperJedi224 * (+142) /* An interpreter in Java: */ 10:16:01 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42322&oldid=42321 * SuperJedi224 * (+9) 10:16:50 sgentoo. 10:20:21 -!- lleu has joined. 10:32:33 What if a "language" existed in which "programming" was done by pavlovian conditioning on small animals? 10:33:38 E.g. to do an "and" you condition them to push a button only when two lights are on. 10:42:22 -!- ProofTechnique has joined. 10:44:16 Related: http://arxiv.org/abs/1204.1749 10:45:30 awesome. crab-based computing 10:46:51 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42323&oldid=42322 * SuperJedi224 * (+179) /* An interpreter in Java: */ 10:55:56 -!- shikkhin has joined. 10:58:09 -!- shikkhin has quit (Client Quit). 11:03:00 -!- shikkhin has joined. 11:03:02 -!- shikkhin has quit (Remote host closed the connection). 11:07:34 -!- shikhin has quit (Quit: Changing server). 11:07:34 -!- oren has quit (Read error: Connection reset by peer). 11:07:49 -!- shikhout has joined. 11:07:50 -!- shikhout has changed nick to Guest50683. 11:08:11 -!- aloril_ has joined. 11:09:56 -!- aloril has quit (Ping timeout: 272 seconds). 11:31:07 -!- Patashu has quit (Read error: Connection reset by peer). 11:31:24 -!- Patashu has joined. 11:36:55 -!- ski has quit (Ping timeout: 251 seconds). 11:38:47 -!- ski has joined. 11:48:54 -!- hjulle has joined. 11:50:43 -!- vodkode_ has joined. 11:54:50 -!- orin has joined. 11:56:41 Help, someone (I know not who) made https://github.com/jimrustlesPhD/Taneb/blob/master/Taneb.erl 11:59:37 it was jimrustlesPhD hth 12:00:43 shachaf, I know not who that is 12:01:43 Taneb: perhaps you know who https://github.com/icydoge is? 12:01:54 Yes, I know that person 12:02:03 But they are almost certainly different people 12:02:16 https://erlangcentral.org/erlang-projects/details/15724 suggests some sort of connection 12:03:04 Only in that they both contributed to this git project 12:03:19 I know who everyone is but the author of that erlang 12:03:45 Ah. 12:04:45 Is that Jim Rustles, PhD, or Jim Rustle's PhD? 12:04:54 Jafet, it is unclear 12:05:08 I don't think that "Jim Rustles" is the author's real name 12:06:10 -!- ais523 has joined. 12:27:41 -!- vodkode_ has quit (Ping timeout: 250 seconds). 12:34:37 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42324&oldid=42323 * SuperJedi224 * (+95) /* An interpreter in Java: */ 12:38:00 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42325&oldid=42324 * SuperJedi224 * (+25) /* An interpreter in Java: */ 12:47:20 At least it's multi-functional. 12:49:15 -!- Patashu has quit (Ping timeout: 246 seconds). 12:49:41 -!- FreeFull has quit (Ping timeout: 252 seconds). 13:04:53 so... I can't visit other courses at my university. 13:05:05 Well, I can visit them... but I'm not allowed to attend the final exams. 13:05:24 which absolutely sucks. 13:12:37 -!- shikhin has joined. 13:12:51 Well, exams don't work so well if you've seen them before. 13:13:11 uhm...? 13:13:15 What are you talking about? 13:14:36 If you were to take the same course later, you would see the same exam again. 13:16:05 -!- Guest50683 has quit (Quit: ZNC - http://znc.in). 13:16:36 No 13:16:40 They write new exams each semester 13:16:44 but that's not really the point. 13:17:10 I thought since I'm still working at this university I could just attend some courses and get a piece of paper that states that I visited and passed them 13:17:46 to broaden my skills 13:17:50 but they don't allow that. 13:18:19 -!- FreeFull has joined. 13:18:19 because bureaucracy. 13:18:27 Shouldn't be too hard for the docent to correct one exam more 13:19:17 and the office to print some piece of paper and stamp it 13:19:45 they have the tools for that anyway 13:20:07 -!- f|`-`|f has quit (Ping timeout: 255 seconds). 13:20:22 every student can keep track of his grades/credits in the universities online tool and can print out a report and get it stamped 13:25:07 -!- shikkhin has joined. 13:25:30 -!- shikhin has quit (Quit: Changing server). 13:26:11 -!- shikhin has joined. 13:31:55 -!- shikhin has quit (Quit: Changing server). 13:39:55 -!- nszceta has quit (Quit: Textual IRC Client: www.textualapp.com). 13:40:01 -!- nortti has changed nick to []{}\|-_`^. 13:40:07 -!- []{}\|-_`^ has changed nick to nortti. 13:51:51 -!- shikhin_ has joined. 13:54:23 -!- shikhin_ has changed nick to shikhin. 13:57:20 -!- shikhin has quit (Quit: Changing server). 13:58:33 -!- shikkhin has changed nick to shikhin. 13:58:49 -!- shikhin has quit (Changing host). 13:58:49 -!- shikhin has joined. 14:00:47 -!- `^_^v has joined. 14:01:21 -!- shikhin has quit (Quit: ZNC - http://znc.in). 14:04:26 -!- shikhin has joined. 14:04:27 -!- shikhin has changed nick to Guest75986. 14:05:08 -!- Guest75986 has changed nick to shikhout. 14:05:29 -!- shikhout has quit (Changing host). 14:05:29 -!- shikhout has joined. 14:07:51 -!- shikhout has changed nick to shikhin. 14:14:36 -!- Guest3780 has quit (Ping timeout: 276 seconds). 14:15:32 -!- shikhin has changed nick to sammwch. 14:15:54 -!- sammwch has changed nick to shikhin. 14:19:15 -!- shikhin has changed nick to sammwch. 14:19:17 -!- sammwch has quit (Disconnected by services). 14:19:26 -!- shikhin has joined. 14:19:49 -!- shikhin has changed nick to Guest53355. 14:20:18 -!- Guest53355 has changed nick to shikhout. 14:20:26 -!- shikhout has quit (Changing host). 14:20:26 -!- shikhout has joined. 14:20:36 -!- shikhout has changed nick to shikhin. 14:21:27 -!- nortti has changed nick to shikh. 14:21:34 -!- shikh has changed nick to nortti. 14:24:31 -!- oerjan has joined. 14:36:16 -!- shikhin has quit (Quit: Cya.). 14:36:27 -!- shikhin has joined. 14:36:29 -!- Sprocklem has joined. 14:36:52 -!- shikhin has changed nick to Guest38099. 14:37:05 [wiki] [[User:SuperJedi224]] http://esolangs.org/w/index.php?diff=42326&oldid=42267 * SuperJedi224 * (+33) 14:37:54 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42327&oldid=42325 * SuperJedi224 * (+24) 14:38:02 -!- Guest38099 has quit (Client Quit). 14:45:24 -!- nszceta has joined. 14:46:28 -!- shikhin has joined. 14:46:54 -!- shikhin has changed nick to Guest35710. 14:47:24 -!- Guest35710 has changed nick to shikhout. 14:47:29 -!- shikhout has quit (Changing host). 14:47:29 -!- shikhout has joined. 14:50:21 [wiki] [[Hello world program in esoteric languages]] http://esolangs.org/w/index.php?diff=42328&oldid=42002 * 108.171.128.160 * (+107) 14:52:44 -!- shikhout has quit (Quit: Cya.). 14:54:43 -!- shikhout has joined. 14:54:49 -!- shikhout has changed nick to Guest43016. 15:02:08 -!- f|`-`|f has joined. 15:10:00 -!- shikhin_ has joined. 15:11:49 -!- shikhin_ has changed nick to shikhin. 15:17:17 -!- Guest43016 has quit (Quit: Cya.). 15:17:54 -!- shikhin has quit (Quit: Changing server). 15:18:26 -!- shikhin has joined. 15:18:38 -!- shikhin has changed nick to Guest65879. 15:20:54 -!- Guest65879 has quit (Client Quit). 15:23:02 -!- shikherr has joined. 15:24:24 -!- shikherr has quit (Changing host). 15:24:25 -!- shikherr has joined. 15:24:55 -!- shikherr has quit (Client Quit). 15:25:38 -!- shikhin has joined. 15:25:39 -!- shikhin has changed nick to Guest71592. 15:26:03 -!- zadock has quit (Quit: Leaving). 15:27:29 -!- variable has joined. 15:29:23 -!- callforjudgement has joined. 15:29:40 -!- ais523 has quit (Disconnected by services). 15:29:42 -!- callforjudgement has changed nick to ais523. 15:43:46 -!- `^_^v has left ("Leaving"). 15:43:50 -!- `^_^v has joined. 16:03:54 -!- variable has quit (Ping timeout: 244 seconds). 16:05:18 -!- SopaXorzTaker has joined. 16:16:07 -!- nszceta has quit (Ping timeout: 252 seconds). 16:19:47 -!- FreeFull has quit (Quit: BBL). 16:30:48 -!- Guest71592 has changed nick to shikhin. 16:31:08 -!- shikhin has quit (Changing host). 16:31:08 -!- shikhin has joined. 16:39:31 -!- PinealGlandOptic has quit (Quit: leaving). 16:42:04 -!- variable has joined. 16:44:38 -!- oerjan has quit (Quit: leaving). 16:44:48 -!- variable has changed nick to constant. 16:54:24 -!- shikhin has quit (Quit: Cya.). 16:54:43 -!- shikhin has joined. 16:54:58 -!- shikhin has changed nick to Guest11133. 16:56:47 -!- Guest11133 has changed nick to shikhout. 16:56:52 -!- shikhout has quit (Changing host). 16:56:52 -!- shikhout has joined. 16:57:48 -!- shikhin has joined. 16:58:09 -!- shikhout has quit (Disconnected by services). 16:58:17 -!- shikhout has joined. 16:58:18 -!- Sprocklem has quit (Read error: Connection reset by peer). 16:58:37 -!- shikhout has quit (Disconnected by services). 16:58:42 -!- shikhin has changed nick to shikhout. 16:58:49 -!- shikhin has joined. 16:59:13 -!- shikhin has changed nick to Guest39441. 17:00:54 -!- SopaXorzTaker has quit (Remote host closed the connection). 17:08:17 -!- Sprocklem has joined. 17:12:10 -!- shikhout has quit (Quit: leaving). 17:13:29 -!- Sprocklem has quit (Quit: snoonet). 17:13:47 -!- Sprocklem has joined. 17:16:09 -!- Guest39441 has quit (Quit: Cya.). 17:16:42 -!- shikhin has joined. 17:34:20 -!- FreeFull has joined. 18:06:43 -!- zzo38 has quit (Remote host closed the connection). 18:09:22 mroman: The university my father works for (YorkU) doesn't allow him to attend a course in the manner you describe, but does allow *me* to do so... Maybe you should impersonate your own son? 18:11:08 -!- AndoDaan has joined. 18:15:10 -!- zadock has joined. 18:15:47 -!- Guest3780 has joined. 18:21:15 -!- shikhin has changed nick to BrieFly. 18:21:45 -!- BrieFly has changed nick to shikhin. 18:22:11 -!- shikhin has changed nick to BrieFly. 18:23:24 -!- BrieFly has changed nick to shikhin. 18:30:17 -!- zzo38 has joined. 18:58:37 -!- Guest3780 has quit (Ping timeout: 272 seconds). 19:16:25 -!- ais523 has quit (Read error: Connection reset by peer). 19:16:35 -!- ais523 has joined. 19:16:44 -!- ais523 has quit (Changing host). 19:16:44 -!- ais523 has joined. 19:26:25 -!- ais523 has quit (Read error: Connection reset by peer). 19:27:27 -!- ais523 has joined. 19:28:04 -!- Sprocklem has quit (Ping timeout: 248 seconds). 19:42:41 -!- Guest3780 has joined. 19:45:11 -!- constant has quit (Ping timeout: 250 seconds). 19:48:39 -!- ais523 has quit (Ping timeout: 272 seconds). 19:58:06 -!- Sprocklem has joined. 20:13:53 -!- nycs has joined. 20:16:54 -!- `^_^v has quit (Ping timeout: 246 seconds). 20:32:52 -!- FreeFull has quit. 20:41:23 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42329&oldid=42327 * SuperJedi224 * (+4) /* An interpreter in Java: */ 20:45:39 -!- Helina has joined. 20:46:10 -!- Helina has quit (Quit: Page closed). 20:58:41 -!- AndoDaan has quit (Ping timeout: 255 seconds). 21:00:52 -!- Patashu has joined. 21:21:08 -!- ProofTechnique has quit (Ping timeout: 244 seconds). 21:22:46 -!- Sprocklem has quit (Ping timeout: 264 seconds). 21:23:57 -!- Patashu has quit (Ping timeout: 265 seconds). 21:24:02 -!- AnotherTest has joined. 21:34:41 -!- izabera has quit (Ping timeout: 256 seconds). 21:37:36 -!- izabera has joined. 21:42:15 -!- izabera has quit (Ping timeout: 245 seconds). 21:44:36 -!- izabera has joined. 21:45:00 -!- nycs has quit (Quit: This computer has gone to sleep). 21:56:39 [wiki] [[A programming language is a formal constructed language designed to communicate instructions to a machine, particularly a computer.]] http://esolangs.org/w/index.php?diff=42330&oldid=41915 * Rottytooth * (+38) added tag 21:57:22 -!- oerjan has joined. 21:57:43 -!- ProofTechnique has joined. 21:59:39 [wiki] [[Hexadecimal Stacking Pseudo-Assembly Language]] http://esolangs.org/w/index.php?diff=42331&oldid=42329 * SuperJedi224 * (+157) /* An interpreter in Java: */ 22:04:02 -!- AndoDaan has joined. 22:06:13 -!- FreeFull has joined. 22:10:00 -!- AnotherTest has quit (Remote host closed the connection). 22:22:38 -!- AndoDaan_ has joined. 22:23:38 -!- dianne has joined. 22:25:51 -!- AndoDaan has quit (Ping timeout: 245 seconds). 22:47:09 -!- boily has joined. 22:47:41 bood daily 22:58:30 bon sørjȧn! 22:59:12 darn i thought i'd finally made a portmanteau so impenetrable you didn't recognize it 22:59:59 no portmanteau too deep, no conflagration too outrageous. 23:01:32 @metar CYUL 23:01:34 CYUL 072200Z 15003KT 30SM FEW240 05/M15 A3040 RMK CI1 CI TR SLP295 23:01:48 finally thawing? 23:01:48 IT'S OVER ZERO THOUSANDS! 23:01:56 at last! 23:01:57 @metar ENVA 23:01:58 ENVA 072250Z 28032KT 9999 FEW015 BKN030 06/01 Q1017 RMK WIND 670FT 29034G52KT 23:02:16 eek canadians catching up 23:02:20 * boily is doing the dance of finally probably getting something higher than Norway soon! 23:02:41 <(^_^<) (>^_^)> ♪ 23:02:45 * oerjan imagines that as very silly 23:02:59 involving handstand jumps 23:03:09 no handstands tonight. I ate soup. 23:03:13 ah. 23:03:17 `? szoup 23:03:24 @metår KSJC 23:03:24 KSJC 072253Z 21011G19KT 10SM FEW028 SCT050 BKN090 15/03 A2994 RMK AO2 SLP139 T01500028 PNO 23:03:41 A szoup a szilárd tápszereknek híg alakban való elkészítése a célból, hogy könnyebben emészthetők legyenek; a hígító anyag a viz, mely feloldja s magába veszi a tápanyag legértékesebb részeit. 23:03:50 shachaf: SJC? 23:04:19 Norman Y. Mineta San Jose International Airport hth 23:06:01 tdh. you're there twh? 23:06:37 nearby hth 23:06:46 tah. 23:06:55 almost helped? 23:07:37 apparently we'll be playing kubb on sunday 23:07:50 that also helps hth 23:07:59 @google kubb 23:08:00 http://en.wikipedia.org/wiki/Kubb 23:08:00 Title: Kubb - Wikipedia, the free encyclopedia 23:08:04 ... 23:08:45 ah! a lawn game! 23:08:55 * boily stays away from a very safe distance 23:09:50 boilƴ 23:10:46 there's a suspicious pixel attached to my "y". 23:11:18 `unidecode ƴ 23:11:19 ​[U+01B4 LATIN SMALL LETTER Y WITH HOOK] 23:11:22 let me scratch it off 23:11:25 boilɏ 23:11:26 oops 23:11:30 ... 23:11:34 * boily mapoles shachaf 23:12:14 i think in this case it should be mapołes 23:12:29 ł is my nemesis 23:12:37 always looks like there's some dirt on my screen 23:18:48 [wiki] [[Language list]] http://esolangs.org/w/index.php?diff=42332&oldid=42262 * 194.168.93.97 * (+10) /* M */ 23:21:41 [wiki] [[Meq]] N http://esolangs.org/w/index.php?oldid=42333 * 194.168.93.97 * (+1881) Created page with "Meq was created by Richard Sparrow in April 2015. Hello World
 .==++>:+>+>[:++++++++>]:=+>===++>.===+++++++>:=+>:=++++>:++++++++>:rp>p>>p>p>p>p>p>p>p>p>p! 
Inst..." 23:21:59 -!- CADD has quit (Remote host closed the connection). 23:22:32 [wiki] [[Meq]] http://esolangs.org/w/index.php?diff=42334&oldid=42333 * 194.168.93.97 * (+64) 23:25:48 I smell the unmistakeable fumet of a brainfuck derivative... 23:26:01 Just bigger. 23:26:30 Why derive from BF is you are just going to unFuck it? 23:27:26 -!- AndoDaan_ has changed nick to AndoDaan. 23:29:39 [wiki] [[Special:Log/newusers]] create * TheMeq * New user account 23:30:14 [wiki] [[Meq]] http://esolangs.org/w/index.php?diff=42335&oldid=42334 * TheMeq * (+14) 23:30:23 [wiki] [[Meq]] http://esolangs.org/w/index.php?diff=42336&oldid=42335 * TheMeq * (+4) 23:31:16 [wiki] [[Meq]] http://esolangs.org/w/index.php?diff=42337&oldid=42336 * TheMeq * (+0) 23:31:51 [wiki] [[User:TheMeq]] N http://esolangs.org/w/index.php?oldid=42338 * TheMeq * (+70) Created page with "Hi, I'm TheMeq I developed the [[Meq]] esoteric programming language!" 23:32:05 -!- magician has joined. 23:32:51 metar CYYZ 23:33:00 `metar CYYZ 23:33:01 ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: metar: not found 23:33:11 @metar CYYZ 23:33:11 CYYZ 072300Z 09007KT 15SM BKN090 BKN130 06/M08 A3031 RMK AC5AC2 SLP272 23:33:56 ƳƳȤ 23:34:08 -!- Guest3780 has quit (Ping timeout: 252 seconds). 23:34:08 -!- magician has changed nick to Guest3780. 23:36:43 I think they gave toronto the letters left over... 23:42:06 -!- magician has joined. 23:44:24 -!- Guest3780 has quit (Ping timeout: 252 seconds). 23:44:24 -!- magician has changed nick to Guest3780. 23:45:01 orin: probably the name of some nearby beacon. that's why Dorval is YUL. 23:47:43 * oerjan read that as bacon and was a bit confused 23:49:42 * boily feeds fungot some proximal bacon 23:49:42 boily: the example was just a test to see if freenode would get its security act together? 23:50:26 bacon, the next irc threat 23:52:41 orin: apparently, YTO is the area (probably similar to the GTA, need more details). then you have YTZ for Billy Bishop, YKZ for Buttonville and YYZ for Pearson. 23:54:25 -!- AndoDaan_ has joined. 23:54:27 aha! http://www.funtrivia.com/askft/Question130856.html, with AyatollaH's reply giving credible details. 23:56:21 -!- AndoDaan has quit (Ping timeout: 256 seconds). 23:56:47 @metar LLBG 23:56:48 LLBG 072350Z VRB01KT CAVOK 15/06 Q1012 NOSIG 23:57:53 @metar OREN 23:57:53 No result. 23:57:57 @metar ORIN 23:57:57 No result. 23:58:42 ORxx airports are in Okinawa. 23:59:06 uhm. ROxx, says I. 23:59:20 ORxx is Iraq. 23:59:44 @metar ORAN 23:59:44 No result. 23:59:49 @metar ORBA 23:59:49 No result.