00:00:02 -!- danieljabailey has quit (Quit: ZNC 1.6.5+deb2build2 - http://znc.in). 00:00:18 -!- danieljabailey has joined. 00:19:02 Heh, I have this thing that uses nanopb, and somehow managed to get it built so that the nanopb type definitions are different in different parts of the code. 00:19:05 http://ix.io/Pzt 00:29:24 -!- jaboja has quit (Remote host closed the connection). 00:35:10 -!- oerjan has joined. 00:42:38 -!- ais523 has joined. 00:45:54 -!- Cale_ has joined. 00:48:33 -!- ATMunn has joined. 01:04:15 eep -16 forecast 01:04:19 @metar ENVA 01:04:19 ENVA 260050Z 14010KT CAVOK M12/M17 Q1042 RMK WIND 670FT 11011KT 01:06:50 -!- ais523 has quit (Remote host closed the connection). 01:08:04 -!- ais523 has joined. 01:11:12 -!- ATMunn_ has joined. 01:11:22 -!- Bowserinator has joined. 01:12:53 -!- ATMunn has quit (Disconnected by services). 01:12:57 -!- ATMunn_ has changed nick to ATMunn. 01:14:21 -!- boily has joined. 01:14:29 bhoily 01:15:16 it's extremely uncommon that I read logs... <-- shocking 01:17:40 -!- wob_jonas has joined. 01:17:53 bonsœøirjan! 01:18:13 ais523: just so you know, the IOCCC deadline got extended to 2018-03-15 01:18:23 helloily 01:18:30 wellob_jonas! 01:18:45 random question: anybody here playing pixel dungeon? 01:19:39 wob_jonas: nice to hear 01:19:45 I have some ideas but not the time to enact them 01:19:59 there's always the next IOCCC 01:20:15 I started this back at the /previous/ IOCCC :_P 01:20:16 * :-P 01:21:03 and I have an idea for an esolang that I should make once. I started inventing it in the summer. 01:21:15 a really nice elegant one 01:21:29 sounds nice 01:21:33 The Waterfall Model is frustrating me 01:21:36 * boily is intrigued by wob_jonas 01:21:38 because I'm trying to golf it 01:21:47 but it seems to need a lot of waterclocks to get anywhere 01:22:33 is that the esolang with the salmons? 01:22:36 let me check the wiki 01:22:43 no, you're thinking of HOMESPRING 01:22:48 it's a new one I wrote 01:22:58 ok 01:23:04 which is a simplification of several other esolangs I've been working on which were already fairly simple 01:23:22 it's been on the wiki for a while now though (a week or so I think) 01:23:42 9 February, so more than a week 01:24:35 incidentally, a fun programming problem that almost came up at work: how do you compare two numbers in Java? 01:24:42 it is much, much harder than you'd expect 01:25:24 ais523: because you have to implement a correct integer vs float comparison, right? 01:26:10 ais523: a lot of interpreters mess that up, and it can cause really ugly bugs whenever you're trying to sort an array or have a dictionary or anything like that, even segfaults for some sorting algorithms that assume a consistent comparison 01:26:27 -!- Gregor has quit (Ping timeout: 265 seconds). 01:26:47 wob_jonas: it's worse, Number in Java can refer to any of the standard numerical types (int, float, long, etc.) or bignums 01:26:55 and none of them have comparison routines that work with any of the others 01:27:06 sqlite3 used to mess it up so you could cause index corruption and incorrect results (but not segfaults afaik) until I reported it 01:27:14 in fact, the only simple way I'm aware of to compare them for equality is to convert them both to strings first 01:27:28 and that's restricted to the integral types 01:28:04 Integer.valueOf(4).equals(Long.valueOf(4)) will return false, IIRC 01:28:40 ais523: do you need the comparison to be as fast as possible, or is something that could be ten times slower acceptible? 01:29:03 wait, bignums too? that makes it harder 01:29:08 what kind of bignums? 01:29:18 it needs to be fast in this context, I fixed it by requiring each number to be stored in the shortest type in which it fit 01:29:20 bigint only, or also bigfloats, or something else? 01:29:20 and BigInteger 01:29:40 apparently X.509 certificate serial numbers are bignums, which surprised me and strikes me as a bad idea 01:29:47 Someone pointed out a bug in the Google Voice Android app recently where if you send an SMS message that can be parsed as a floating point, it'll be parsed and normalized. 01:30:07 So for example "00123" will be sent as "123", and "1.2e6" will be sent as "1200000" 01:30:15 ais523: is that perhaps because they're bigger than what fits in a long (which is 64 bits or something) 01:30:17 ? 01:30:32 What a bizarre bug in a program designed to send strings from one person to another. 01:30:37 wob_jonas: AFAICT the original standards don't specify any maximum value, and use an encoding that can store arbitrarily large values 01:30:47 -!- variable has quit (Quit: /dev/null is full). 01:31:02 shachaf: they're probably using some general-purpose serialiser that tries to guess the data type from the string it receives 01:31:13 shachaf: ah, is that like when someone types a telephone number into an Excel spreadsheet and it gets interprted as a double and displayed in exponential format? 01:31:13 rather than a typed one which knows it's sending strings 01:31:39 wob_jonas: that's technically correct, though, string-valued cells in Excel are supposed to start with ' 01:31:49 but it adds it implicitly if you forget it and the string doesn't look like a number 01:31:52 so most people don't bother 01:33:11 -!- Gregor has joined. 01:34:17 ais523: anyway, even comparing an int64 to a float64 correctly is tricky. if you can also have bignums, that's even worse. 01:34:47 ais523: yes, but there's some version differences, the magics work differently in more recent Excels 01:34:56 I don't quite understand how it works now really 01:34:58 hm 01:35:04 i kinda want to make an esolang 01:37:07 in traditional Excel, if you start with single quote or double you get a string with everything in the formula taken literally, single vs double determines the alignment; if you start with an equals or plus or minus you get a formula; if you start with anything else you get an automatic guess, which is also the tersest way to enter a date. 01:37:47 in modern Excel, somehow how the formula is interpreted depends on the number format of the cell, and sometimes neither single quote nor double quote works, and I don't understand how the whole thing is supposed to work in the first place, 01:39:34 and also people say that when you import a csv into modern Excel, although you can tell whether it should try to interpret things that look like number or date as such or as a string; you can't tell it not to interpret things that start with an equals sign or plus or minus or at-sign as a formula, so you can't safely import an untrusted csv with Ex 01:39:34 cel without preprocessing it 01:39:46 which sounds horrible but true 01:39:56 I seriously don't understand how any of this thing works anymore 01:40:08 Excel used to be simple, there used to be only one brand of it, the MS one, and it worked 01:41:04 that's why at some point I made the conjecture that every software keeps improving until version number pi, then it keeps getting worse and worse; I've seen counterexamples since, but Excel isn't one 01:42:13 Firefox has kind-of oscillated 01:43:05 (also, NetHack 3.4 is better than NetHack 3.2) 01:43:40 ais523: that's OK, the first version after pi can be better or worse than the first version after pi 01:44:03 it's just starting to go down between the two of them, but you can't observe that if there's no numbered releases 01:45:06 well 3.2 and 3.4 are both greater than pi 01:45:28 oh right 01:45:30 I'm tired 01:45:31 sorry 01:45:40 then yes, that's one of the many counterexamples 01:46:18 I'm not surprised that patterns like this exist though 01:46:46 nah, I made that conjecture from entirely too few samples 01:46:54 in many projects (at least mine), version 1 is broken but works well enough to be usable, version 2 is very low on bugs but unusable due to being overengineered, version 3 is a compromise, version 4 is vaporware 01:46:58 even back then I could have noticed counterexamples 01:47:20 hmm... like aimake? 01:47:26 aimake is the standard for this pattern 01:47:57 ok 01:48:22 this unfortunately doesn't bode well for libuncursed2 :-( 01:48:29 but I have to write it first to determine why it isn't usable 01:52:15 recently, when I've been programming, I've pretty much entirely just been doing my day job 01:52:29 I guess I needed a break from hobby programming for a few weeks 01:53:08 where the dayjob is still compilers? 01:56:31 it's related to language implementation, yes 02:00:13 So I have a slightly better idea of what the "type" of dx in an expression like dy = 3x^2 dx is. 02:04:22 `5 w 02:04:43 :-( 02:04:52 ais523: Were you the person doing substructural types? 02:05:15 shachaf: I worked with affine typing, which IIRC is a special case of substructural typing? 02:05:19 Recently I decided that the game semantics interpretation of linear logic is one of the best ones. 02:05:28 it was a while back now, I forget the exact definition of "substructural" 02:05:36 and yes, game semantics was heavily involved 02:06:20 For affine typing? What were you doing? 02:06:43 compiling call-by-name languages to hardware 02:07:08 the various moves of the game semantics were encoded as bit patterns on wires 02:07:26 Hmm. 02:15:41 -!- Cale_ has quit (Read error: Connection reset by peer). 02:22:28 Is there some well-known computation model where a one-tape Turing machine is extended by a disk oracle, so that machine can call for reading or writing a symbol on the disk in a single step if it first writes its address to the tape (so the disk is random access for timing), 02:23:03 and the disk is infinitely large, so the address can be arbitrarily long, and has to be delimited by a particular tape symbol (so you have at least three tape symbols: zero, one, delimiter)? 02:23:41 https://en.wikipedia.org/wiki/Random-access_Turing_machine ? 02:24:33 shachaf: nice 02:24:38 although that one only reads the disk 02:24:44 I definitely want to be able to write the disk too 02:25:00 Oh, true. 02:25:02 some of the other details are negotiable, but I need writing 02:26:11 -!- ATMunn_ has joined. 02:26:20 so that the program is able to store an arbitrarily large amount of data on the disk and access it in time only logarithmic in the amount of data stored 02:26:22 -!- Bowserinator_ has joined. 02:27:07 There seem to be other models of random-access Turing machines that include writing. 02:27:15 I don't know whether there's a standard one. 02:27:16 I want to use something like this as a reduction to show that my esolang is powerful enough to simluate a RAM machine, or a pointer machine with logarithmic slowdown 02:27:38 because I can't simulate a pointer machine directly without using addresses on a disk 02:28:07 I prefer pointer machines, but I need an intermediate step like this in this case 02:31:08 if there isn't a well-known one, then I'll just define such a model and prove myself that a pointer machine can be reduced to it 02:32:17 but I'm hoping there's some well-known RAM model like htis 02:32:47 -!- Bowserinator has quit (Quit: Blame iczero something happened). 02:32:47 -!- ATMunn has quit (Quit: lol rip). 02:32:59 -!- ATMunn has joined. 02:33:09 -!- Bowserinator has joined. 02:33:09 -!- Bowserinator has quit (Remote host closed the connection). 02:33:09 -!- ATMunn has quit (Remote host closed the connection). 02:33:49 -!- Bowserinator_ has quit (Quit: Blame iczero something happened). 02:33:49 -!- ATMunn_ has quit (Quit: lol rip). 02:33:58 -!- ATMunn has joined. 02:34:08 -!- Bowserinator has joined. 02:36:16 -!- LKoen has joined. 02:41:13 -!- LKoen has quit (Ping timeout: 240 seconds). 02:41:44 -!- Bowserinator has changed nick to Guest32241. 02:43:31 -!- Guest32241 has changed nick to Bowserinator. 02:47:33 fungot: any idea where the HackEgo is? 02:47:33 boily: i don't think so 02:47:39 dammit. 02:47:56 -!- boily has quit (Quit: BALE CHICKEN). 02:51:29 -!- Cale_ has joined. 02:57:45 @tell boily The system is back up, I think it's just gotten stuck. Yeah, there's a 100%-CPU socat process again. I'll try to give it a kick. 02:57:45 Consider it noted. 03:02:22 KickEgo 03:02:42 Hmm. "fopen: Read-only file system" 03:04:22 http://ix.io/PDl that doesn't look terribly good. 03:05:48 I could try restarting it, I guess. 03:06:24 (Of course it's possible it might not come back up.) 03:11:12 -!- HackEgo has joined. 03:11:58 `ping 03:12:08 pong 03:12:26 There were a few filesystem errors, but I'm sure the files weren't important. 03:12:57 O KAY 03:13:13 `5 w 03:13:20 1/2:itidus19//itidus19 disappeared into a space-time anomaly \ cipation//A cipation is an evil scheme that only works if no one is prepared for it. \ russia//Russia is a country so huge it manages to be so near to both Finland and Japan. It used to be part of the Soviet Union before Ronald Reagan destroyed it. \ inverness//Inverness is a ci 03:13:34 `n 03:13:35 2/2:ty in Scotland. The ring road isn't multiplicative. \ firefly//FireFly was a short-running but well-loved sci-fi TV series released in 2003, starring Nathan Fillion and directed and written by Joss Whedon. 03:13:39 oerjan: should `6 x run x five times and then show the second line twh 03:13:58 ntwnh 03:31:39 -!- moonythedwarf has quit (Ping timeout: 256 seconds). 03:39:38 -!- ais523 has quit (Quit: quit). 03:44:15 `mkx bin/wrjan//\? oerjan 03:44:18 bin/wrjan 03:44:24 `wrjan 03:44:25 Your omnidryad saddle principal swatty kind "Darth Ook" oerjan the shifty loud punster is a hazy expert in minor compaction. Also a Groadep who minces Roald Dahl. He could never render the word "amortized" so he put it here for connivance. His ark-nemesis is Noah. He twice punned without noticing it. 03:44:33 Hm. 03:44:43 `mv bin/wrjan bin/owrjan 03:44:44 mv: missing destination file operand after ‘bin/wrjan bin/owrjan’ \ Try 'mv --help' for more information. 03:44:55 `` mv bin/wrjan bin/owrjan 03:44:57 No output. 04:15:53 -!- variable has joined. 04:20:05 -!- variable has quit (Client Quit). 04:20:36 I have seen they thought computer design is too much complicated so they decided instead to make one from Subleq. I also thought computer design too much complicated and would make a more simpler one, although, mine is different. I would probably to based on a variant of MMIX: PRELD and PREGO and SYNCID and SYNCD is now same as SWYM, LDUNC is now same as LDO, STUNC is now same as STO, and a few instructions are replaced with new ones: LDVTS, PREST 04:22:50 -!- variable has joined. 04:23:16 SYNC may act like SWYM, or possibly, depend on the bits somehow such that if the XYZ value is 0 to 3 it acts like SWYM but otherwise it might not. PREST may be something that writes to those addresses or fakes it, since any existing program that uses PREST will not care what data is there before it writes there again. LDVTS will be some entirely new kind of instruction, nothing to do with virtual memory. 04:24:17 TRAP will still call the operating system, although the mechanism for doing so might differ. Some of the special registers only used by the operating system, as well as rN, may be altered. The other special registers used by user code will remain same as normal MMIX, though. 04:24:45 -!- augur has quit (Remote host closed the connection). 04:26:06 -!- augur has joined. 04:27:29 -!- sleffy has joined. 04:30:00 -!- augur has quit (Remote host closed the connection). 04:30:12 -!- augur has joined. 04:35:37 -!- augur has quit (Ping timeout: 245 seconds). 04:44:59 -!- variable has quit (Quit: /dev/null is full). 04:46:13 -!- augur has joined. 04:46:32 (TRIP would still work the same way as normal MMIX, though.) 05:01:27 -!- sleffy has quit (Ping timeout: 245 seconds). 05:20:17 One chess variant is "Pole Chess". The Pole moves to any vacant cell, and can neither capture nor be captured. Initially the Pole is not on the board, but can be placed on any vacant cell as a move; it can then teleport on later turns. 05:28:33 -!- augur has quit (Remote host closed the connection). 05:48:32 -!- Cale_ has quit (Remote host closed the connection). 06:29:10 -!- sleffy has joined. 06:55:29 -!- Guest6451 has quit (Ping timeout: 248 seconds). 06:55:56 -!- Guest6451 has joined. 07:11:53 -!- sleffy has quit (Ping timeout: 252 seconds). 07:56:43 Many old Arabian chess problems have the feature that you have to give check during every turn, which is now a feature of Japanese problems. 08:21:16 -!- oerjan has quit (Quit: Nite). 09:06:54 -!- xkapastel has quit (Quit: Connection closed for inactivity). 09:29:28 -!- LKoen has joined. 09:30:15 -!- variable has joined. 09:44:41 -!- AnotherTest has joined. 10:19:38 zzo38: PREGO being the same as SWYM is a very bad idea. x86 does that for compatibility with the original 386, but it requires a ton of expensive circuits to detect self-modifying code and flush like four different kinds of code caches whenever it happens. 10:20:01 seriously, don't do that 11:35:53 -!- boily has joined. 11:51:31 -!- vertrex- has changed nick to vertrex. 12:03:13 -!- Melvar has quit (Ping timeout: 240 seconds). 12:10:58 -!- variable has quit (Quit: Found 1 in /dev/zero). 12:16:49 -!- Melvar has joined. 12:18:09 -!- LKoen has quit (Remote host closed the connection). 12:20:57 `5 w 12:21:11 1/2:astronomy//Astronomy is the study of stars, such as Julia Child and Gordon Ramsay, typically through long-distance viewing devices. Despite the name, it does not involve the study of the astrointestinal tract. \ `help//`help [] gives HackEgo's default help message, or help for a specific command. Or currently possibly some other wi 12:21:12 `n 12:21:12 2/2:sdom. \ narutoverse//narutoverse is a place where they haven't heard of having a bus factor of >1. Sgeo drives the bus. \ e//e is a freenode admin. e is not known to be an Agora player. \ web access//Sorry, HackEgo's sandbox currently has no web access. However, see `? `fetch 12:21:37 @massages-loud 12:21:37 fizzie said 9h 23m 52s ago: The system is back up, I think it's just gotten stuck. Yeah, there's a 100%-CPU socat process again. I'll try to give it a kick. 12:21:49 * boily rejoices ^^ 12:22:11 -!- boily has quit (Quit: SWIFT CHICKEN). 12:31:35 I thought the 100%-CPU socat bug was fixed (on debian stable which is what lambdabot is on...) 12:36:16 @tell fizzie afair, the infinite loop in socat was fixed in socat 1.7.3.0. (the latest version seems to be 1.7.3.1) 12:36:16 Consider it noted. 12:42:53 -!- ATMunn has quit (Quit: lol rip). 12:43:16 -!- ATMunn has joined. 12:43:17 -!- Bowserinator has quit (Remote host closed the connection). 12:43:44 -!- Bowserinator has joined. 12:57:02 -!- AnotherTest has quit (Ping timeout: 276 seconds). 13:50:11 `ping 13:50:12 pong 13:50:17 `uptime 13:50:18 ​ 13:50:17 up 0 min, 0 users, load average: 0.00, 0.00, 0.00 13:50:26 -!- wob_jonas has quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client). 13:51:03 `pom 13:51:03 ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: pom: not found 13:51:10 `ls 13:51:11 bin \ canary \ emoticons \ esobible \ etc \ evil \ factor \ good \ hw \ ibin \ interps \ izash.c \ karma \ le \ lib \ misle \ paste \ ply-3.8 \ quines \ quinor \ quotes \ share \ src \ test2 \ testfile \ tmflry \ tmp \ wisdom 13:51:15 `cd bin 13:51:15 ​/home/hackbot/hackbot.hg/multibot_cmds/lib/limits: line 5: exec: cd: not found 13:51:17 -!- LKoen has joined. 13:51:19 `ls bin 13:51:20 ​` \ `` \ `^ \ `̀ \ ^.^ \ ! \ ? \ ?? \ ¿ \ ' \ " \ ( \ @ \ * \ # \ ؟ \ ⁗ \ \ \ \ welcome \ 1 \ 13 \ 1492 \ 2 \ 2014 \ 2015 \ 2016 \ 2017 \ 3 \ 4 \ 5 \ 5quote \ 5w \ 7z \ 7za \ 8ball \ 8-ball \ 8ball \ aaaaaaaaa \ addquote \ addscowrevs \ addtodo \ age \ aglist \ airport \ airport-lookup \ allquotes \ analogy \ 13:51:32 `3 13:51:33 3/1: 13:51:38 `3 43 13:51:39 3/1: 13:51:43 `2017 13:51:44 No output. 14:32:50 -!- ski has joined. 14:43:44 -!- zseri has joined. 14:50:19 -!- LKoen has quit (Remote host closed the connection). 15:08:27 -!- `^_^v has joined. 15:33:43 -!- LKoen has joined. 15:34:45 int-e: Oh yes, I think we discussed that. 15:35:38 int-e: It's "1.7.2.4+sigfix" on the HackEgo chroot, which I really should update at some point. 15:36:04 int-e: (I think we speculated that the "+sigfix" might've meant backporting that fix, but not sure if I ever investigated really.) 15:59:27 -!- contrapumpkin has quit (Ping timeout: 240 seconds). 15:59:36 -!- propumpkin has joined. 16:09:45 [[User:Enoua5]] M https://esolangs.org/w/index.php?diff=54241&oldid=52209 * Enoua5 * (-346) 16:10:57 -!- ATMunn has quit (Ping timeout: 265 seconds). 16:11:26 -!- Bowserinator has quit (Ping timeout: 265 seconds). 16:19:45 -!- xkapastel has joined. 16:20:34 [[Esolang:Introduce yourself]] M https://esolangs.org/w/index.php?diff=54242&oldid=54235 * Soaku * (+217) /* Introductions */ 16:20:39 [[Pepe]] N https://esolangs.org/w/index.php?oldid=54243 * Soaku * (+519) Created page with "[https://github.com/Soaku/Pepe Pepe] is a programming language inspired by the Pepe meme made by [https://codegolf.stackexchange.com/users/72792/ PPCG user Soaku]. It operate..." 16:21:37 -!- ATMunn has joined. 16:22:29 -!- Bowserinator has joined. 16:43:07 -!- LKoen has quit (Ping timeout: 245 seconds). 16:48:04 -!- sleffy has joined. 17:03:08 -!- LKoen has joined. 17:06:53 -!- sleffy has quit (Ping timeout: 240 seconds). 17:20:23 -!- lldd has joined. 17:31:14 If there are no code caches then it is the same. If you do have code caches then obviously it is not the same. 17:32:17 -!- Melvar has quit (Ping timeout: 252 seconds). 17:39:40 -!- sftp has quit (Ping timeout: 240 seconds). 17:42:33 (That is what I mean) 17:44:03 -!- AnotherTest has joined. 17:45:13 -!- Melvar has joined. 17:47:23 -!- sftp has joined. 17:58:55 -!- prooftechnique_ has changed nick to prooftechnique. 18:01:46 -!- zseri has quit (Quit: Leaving). 18:05:43 -!- zseri has joined. 18:06:19 zsync error: failed to retrieve from https://esolangs.org/dump/esolang.xml.gz 18:12:45 -!- Melvar has quit (Ping timeout: 265 seconds). 18:13:12 -!- Melvar has joined. 18:18:10 -!- zseri has quit (Quit: Leaving). 18:25:27 -!- propumpkin has changed nick to contrapumpkin. 19:03:58 -!- hakatashi has quit (Remote host closed the connection). 19:15:48 -!- zseri has joined. 19:27:31 -!- Phantom_Hoover has joined. 19:27:31 -!- Phantom_Hoover has quit (Changing host). 19:27:31 -!- Phantom_Hoover has joined. 19:36:51 -!- brandonson has joined. 19:39:25 -!- sprocklem has joined. 19:55:16 -!- augur has joined. 19:59:29 -!- jjthrash has quit (Quit: WeeChat 0.4.2). 20:09:59 -!- zseri has quit (Quit: Leaving). 20:14:00 [[Special:Log/newusers]] create * Robgero * New user account 20:18:11 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=54244&oldid=54242 * Robgero * (+188) /* Introductions */ 20:25:13 -!- sprocklem has quit (Read error: Connection reset by peer). 20:25:31 -!- sprocklem has joined. 20:27:08 @tell zseri Hmm, that's not very informative as far as errors go. But it might be some sort of a HTTPS issue. 20:27:08 Consider it noted. 20:29:22 Judging from http://ix.io/PWl 20:30:26 Not sure what's up with that, wget/curl have no problems downloading from the HTTPS path. 20:36:34 [[The Code of the Seven]] N https://esolangs.org/w/index.php?oldid=54245 * Robgero * (+935) Created page with "Before computers, the Gods were speaking code. Code that not even Three-Eyed Raven could understand. They called it the code of the seven. However, thankfully, after her untim..." 20:39:33 -!- Guest6451 has changed nick to Slereah. 20:46:35 [[The Code of the Seven]] https://esolangs.org/w/index.php?diff=54246&oldid=54245 * Robgero * (+50) 20:58:50 [[The Code of the Seven]] https://esolangs.org/w/index.php?diff=54247&oldid=54246 * Robgero * (+137) 21:02:45 -!- lldd has quit (Quit: Leaving). 21:34:47 -!- laerling has joined. 21:38:43 -!- jaboja has joined. 22:03:53 -!- sleffy has joined. 22:36:39 -!- boily has joined. 22:45:25 -!- sprocklem has quit (Ping timeout: 268 seconds). 22:47:06 -!- Phantom_Hoover has quit (Remote host closed the connection). 22:47:50 `5 w 22:48:09 ... 22:48:16 ...? 22:48:44 * boily kicks HackEgo 22:50:57 @metar lowi 22:50:57 LOWI 262220Z AUTO 07003KT 360V130 9999 FEW050 BKN060 M10/M17 Q1014 22:51:19 M10? 22:51:27 isn't it unusually cold? 22:51:55 yeah, it's been a topic in the news 22:52:11 @metar KOAK 22:52:12 KOAK 262153Z 28017KT 10SM FEW020 12/04 A2994 RMK AO2 SLP138 T01170044 22:52:18 so cold :'( 22:52:52 [[Special:Log/newusers]] create * Darkness3840 * New user account 22:53:01 -!- `^_^v has quit (Quit: This computer has gone to sleep). 22:53:13 Germany too. https://www.thelocal.de/20180221/cold-snap-lows-of-20c-set-to-hit-germany-at-weekend 22:53:32 -!- HackEgo has quit (Ping timeout: 245 seconds). 22:53:43 "The reason for the cold snap is that a strong current from the north and northeast is on its way, bringing with it bitterly cold air from Finland, Sweden and Russia." 22:54:02 (But not Norway? Funny.) 22:54:12 @metar EGLL 22:54:12 EGLL 262220Z AUTO 04007KT 010V070 9999 FEW029 M02/M06 Q1029 22:54:15 @metar ENVA 22:54:15 ENVA 262220Z 12010KT CAVOK M14/M18 Q1046 RMK WIND 670FT 10012KT 22:55:25 @metar EFHK 22:55:36 EFHK 262250Z 04015KT 9999 FEW028 BKN055 M16/M20 Q1037 NOSIG 22:55:45 bitter indeed 22:55:58 bitter uhww 22:56:00 er 22:56:02 @metar uhww 22:56:03 UHWW 262230Z 32003MPS 4300 -SHSN BKN026CB M13/M17 Q1026 R25L/0///70 NOSIG RMK QFE768 23:02:40 News here: "Temperatures of minus 5C (23F) over the weekend were the lowest recorded in the week leading up to 1 March, the first day of spring, since 1986." 23:02:45 -!- AnotherTest has quit (Ping timeout: 265 seconds). 23:02:47 "The wind chill, which could make parts of the UK feel as cold as minus 15C (5F), will create temperatures that rival the forecast for parts of northern Norway and Iceland." 23:02:56 They're making a big deal out of it. 23:03:32 (Also there were a few snowflakes in the air today. And probably more coming tomorrow.) 23:04:13 -!- zzo38 has quit (Ping timeout: 240 seconds). 23:04:21 "Heavy snow and freezing conditions are expected along the east coast of the UK and south-east England, causing disruption on the roads, railways and in the air, as the “beast from the east” envelops the British Isles." 23:05:26 beast from the east... let me guess... this alludes to the cold war. 23:05:29 :P 23:05:51 -!- laerling has quit (Quit: Leaving). 23:06:09 (way too obvious pun) 23:07:47 Apparently it's either a Russian "politician and former professional boxer", or "a live album recorded by the American heavy metal band Dokken in Japan in April 1988". 23:08:26 -!- HackEgo has joined. 23:13:18 -!- sprocklem has joined. 23:13:57 `5 w 23:14:31 1/2:beethoven's ninth symphony//Beethoven's Ninth Symphony is a package most commonly installed in order to convert ODE files into JOY files. \ drone//Drones are tools used to perform certain criminal actions that were not possible in ancient times. \ mark//A mark of one's destiny singled out alone, fulfilled. \ ping//Ping is a Peking Duck 23:15:25 `n 23:15:26 2/2:H4XX0R who amuses himself by making people's IRC connections timeout. \ bicyclic monoid//The bicyclic monoid is the free monoid generated by two wheels of a bicycle, quotiented by the restriction that the bicycle itself is equal to the identity. 23:16:03 `cwlprits bicyclic monoid 23:16:15 shachäf 23:16:20 what! 23:17:05 that's possible? 23:18:42 -!- moonythedwarf has joined. 23:18:58 `5 23:19:01 1/2:744) Gregor: i watched the first episode of MLP [...] Gregor: it wasn't bad, but there was very little sex and violence \ 933) I'm a story about the prohibition of chocolate \ 1125) Every time I end up on an audiophile web-crawl I get this feeling maybe we should just get rid of ears in general. \ 1169) `n 23:19:05 2/2:iott_> you win this round. your prize is hosting the wiki I don't like this game show. \ 1235) what? I just wanted a laugh... lol I need to stop using lol, lol just stop then, hth 23:19:14 -!- jaboja has changed nick to jabojaa. 23:20:28 -!- jabojaa has quit (Quit: Leaving). 23:26:45 -!- wob_jonas has joined. 23:27:37 I was testing what happens if I plug together various mobile phones or other small devices into various chargers or the computer with various USB cables, to figure out which combinations let the phone or small device charge, and which ones allow data communication with the computer. 23:27:56 After like ten minutes I realized the switch on the power strip was off, which is why most of the combos weren't working. 23:29:49 It's not trivial to notice because my primary phone doesn't charge from USB at all, it can only be charged with its round plug charger. 23:31:13 -!- LKoen has quit (Quit: “It’s only logical. First you learn to talk, then you learn to think. Too bad it’s not the other way round.”). 23:40:45 wellob_jonas. round plug? 23:41:39 I think the proper word is "coaxial power connector". 23:42:04 wob_jonas has a BNC plug on his phone??? 23:42:37 yes, what fizzie says. boily: no 23:42:46 boily: a much thinner coaxial plug 23:43:19 "A coaxial power connector is an electrical power connector used for attaching extra-low voltage devices such as consumer electronics to external electricity. Also known as barrel connectors, concentric barrel connectors or tip connectors, these small cylindrical connectors come in an enormous variety of sizes." 23:43:27 As it says, there's an enormous variety of sizes. 23:43:50 you know, one of these thin DC coax plugs where the male side is on where the power is supplied, one connector is inside, the other is outside a cylinder 23:44:32 5 V voltage 23:47:34 -!- boily has quit (Quit: FLAMING CHICKEN). 23:57:16 -!- erkin has joined.