#Soylent | Logs for 2016-11-20

« return
[00:06:09] <Bender> [SoylentNews] - Google to Ban Fake News - http://sylnt.us - so-when-does-real-news-become-fake-news
[00:26:21] -!- chromas-remote [chromas-remote!~AndChat60@00-05-615-700.dhcp.knwc.wa.charter.com] has joined #Soylent
[01:08:19] Fnord666_Away is now known as Fnord666
[01:30:41] <cmn32480> TheMightyBuzzard - you around?
[01:41:40] <TheMightyBuzzard> cmn32480, he's set
[01:42:13] <cmn32480> Thanks TheMightyBuzzard
[01:42:30] * Subsentient sprays chunky vomit all over the floor, ceiling and walls
[01:42:46] * TheMightyBuzzard yawns
[01:42:46] * MrPlow flips a Skittle into TheMightyBuzzard's gaping mouth
[01:43:58] * Fnord666 tips his hat to TMB
[01:44:12] <Subsentient> TheMightyBuzzard: How goes it?
[01:47:11] <TheMightyBuzzard> eh, it goes pretty good
[01:47:27] <Bender> [SoylentNews] - Famicom Classic Mini Console Sold 263k Units in Japan - http://sylnt.us - up,-up,-down,-down,-left,-right,-left,-right,-b,-a,-start
[02:01:31] <Subsentient> #fite Leebert
[02:01:32] <MrPlow> #fite spam going to channel #fite
[02:01:39] <MrPlow> #fite Leebert falls broken at Subsentient's feet.
[02:03:41] <aqu4> #fite CoolHand
[02:03:41] <MrPlow> #fite spam going to channel #fite
[02:03:45] <MrPlow> #fite CoolHand falls broken at aqu4's feet.
[02:04:36] <aqu4> #fite Aphrodite
[02:04:36] <MrPlow> #fite spam going to channel #fite
[02:04:40] <MrPlow> #fite aqu4 falls broken at Aphrodite's feet.
[02:09:33] <Subsentient> TheMightyBuzzard: So what's MrPlow written in this week?
[02:10:23] -!- charon has quit []
[02:13:41] <TheMightyBuzzard> haven't changed him up none. still gonna be rust for the foreseeable future.
[02:14:13] <Subsentient> TheMightyBuzzard: Can I see the source? Curious.
[02:14:25] <TheMightyBuzzard> been going back through and getting rid of potential errors though
[02:14:48] <TheMightyBuzzard> https://github.com
[02:15:20] <TheMightyBuzzard> the early stuff is inefficient as hell and looks like butt. works though.
[02:17:08] <Subsentient> TheMightyBuzzard: Rust's syntax seems alien to me. O.o
[02:17:15] <Subsentient> I don't see a single pointer, shame on you.
[02:17:41] <TheMightyBuzzard> &varname = pointer, kinda
[02:17:50] <Subsentient> Reference, not pointer, right?
[02:17:55] <TheMightyBuzzard> yar
[02:18:15] <Subsentient> C++ has references too, but I still end up using pointers a lot. They're really useful.
[02:18:15] <Bender> karma - c: 62
[02:18:17] <TheMightyBuzzard> more like borrowing. ownership of variables is extremely strict in rust.
[02:19:13] <Subsentient> TheMightyBuzzard: Does rust have pointer math?
[02:19:18] <TheMightyBuzzard> like if you declare a variable in main and pass it directly to a function, it is gone from main and is only accessible to that function.
[02:19:29] <TheMightyBuzzard> nope
[02:19:40] <Subsentient> Argh. Ok, I don't like it.
[02:19:44] <TheMightyBuzzard> not that i'm aware anyhow. still learning a bit though.
[02:19:55] <TheMightyBuzzard> eh, you can write C and call it from rust.
[02:20:38] <Subsentient> C++ and C have flaws but are 'do what you want' kinda languages. T_T
[02:21:00] <TheMightyBuzzard> if you pass a function &varname it's a reference to varname that the function can read but not write.
[02:21:13] <Subsentient> C++ has const and non-cost references too.
[02:21:13] <Bender> karma - c: 63
[02:21:52] <TheMightyBuzzard> and if you pass &mut varname to a function you can write to it but you can only have one function able to write to a variable at a time. it will not allow you to create a race condition like that.
[02:22:34] <Subsentient> It's not a race condition if the program is single-threaded. T_T
[02:22:53] <TheMightyBuzzard> true nuff.
[02:23:21] <Subsentient> I can't tell you how frequently I rely on my code not being multithreaded.
[02:23:24] <TheMightyBuzzard> main point is you can only have one &mut reference out at a time for a variable.
[02:23:32] <TheMightyBuzzard> hehe, yup
[02:23:32] <TheMightyBuzzard> mine is though.
[02:24:07] <TheMightyBuzzard> has one constant side thread i use for timed events and one for sending submissions.
[02:24:44] <Subsentient> I can have 1,500 pointers and references all over the place to the same object, and that's what mutexes are for.
[02:25:21] <TheMightyBuzzard> s'quite easy to multi-thread in rust. you literally can't create problems for yourself without going to an external data source.
[02:25:52] <Subsentient> I admit C's pthreads thing in POSIX is an abomination, lol
[02:26:08] <TheMightyBuzzard> oh it wasn't THAT bad
[02:26:20] <TheMightyBuzzard> but you did have to be pretty careful.
[02:27:47] <TheMightyBuzzard> i also dig that even with all the libs compiled in static-like, it's still generating <5MB executables. only takes 10MB of ram even.
[02:27:53] <Subsentient> TheMightyBuzzard: Mmh so Rust has implicitly created mutexes all over the place?
[02:28:49] <TheMightyBuzzard> s'kinda weird. they call em channels and they're one directional.
[02:29:09] <TheMightyBuzzard> so to read from and write to a thread you gotta have two pairs of sender/receiver
[02:29:54] <Subsentient> Sigh.
[02:30:59] <TheMightyBuzzard> but the thread starts with access to all the variables/structs/etc... from its parent and takes ownership of anything you use away so the main thread can't use them anymore. so you really, really need channels.
[02:35:01] <TheMightyBuzzard> the only bit i really don't like is having both str and String types with entirely different capabilities but you have to change back and forth often to get what you need done.
[02:36:09] <TheMightyBuzzard> like if you take a string and use .trim() on it, it yoinks whitespace from either end of the string and passes back a str object containing the leftovers, which you then have to use .to_string() on to get a string back.
[02:41:33] <TheMightyBuzzard> anyway, i gotta hit me some nicotine then get to bed. see you lot in the morning.
[02:52:13] -!- charon [charon!Mibbit@vmry-748-80-387-890.bstnma.fios.verizon.net] has joined #Soylent
[02:52:27] <Subsentient> TheMightyBuzzard: Yeah I'll stick with C family hehe
[03:26:47] <Bender> [SoylentNews] - Canadians Surveyed on Digital Privacy and Police Powers - http://sylnt.us - balls-in-your-court
[03:59:42] -!- mrpg [mrpg!~m@201.209.thr.nnk] has joined #Soylent
[04:06:01] -!- chromas-remote has quit [Quit: Bye]
[04:09:12] -!- mrpg [mrpg!~m@201.209.thr.nnk] has parted #Soylent
[04:29:59] Greatoutdoors|afk is now known as GreatOutdoors
[05:05:01] -!- charon has quit [Ping timeout: 244 seconds]
[05:07:04] <Bender> [SoylentNews] - I Am Capital - http://sylnt.us - made-of-money
[05:12:05] -!- DECbot [DECbot!~DECbot@90-244-262-780.prtg.in.frontiernet.net] has joined #Soylent
[05:27:48] -!- Fnord666 has quit [Quit: Leaving]
[05:41:30] -!- julian has quit [Remote host closed the connection]
[05:41:48] <Subsentient> TheMightyBuzzard: Reading MrPlow's source, it doesn't take a knowledge of rust to see an unholy abomination. O.o
[05:42:16] <Subsentient> else if noprefix.len() > 7 && &noprefixbytes[..7] == "nelson ".as_bytes()
[05:42:36] <Subsentient> Sorry, but it's true. >.<
[05:46:12] -!- charon [charon!Mibbit@vmry-748-80-387-890.bstnma.fios.verizon.net] has joined #Soylent
[05:47:38] -!- jasassin [jasassin!~jasassin@666-607-82-08-hsnhmpx.midco.net] has joined #Soylent
[05:48:23] <jasassin> if gravity has an effect on light it must have an effect on electricity right?
[05:48:34] <jasassin> no?
[05:49:08] <jasassin> can gravity pull electricity it must right?
[05:49:11] <jasassin> yes
[05:49:23] <jasassin> yes
[05:50:02] Bytram is now known as Bytram|away
[05:52:49] -!- Ethanol-fueled [Ethanol-fueled!~62b0c8c6@SectorZeroZeroOne] has joined #Soylent
[05:52:51] <exec> welcome Ethanol-fueled: San Diego, CA, USA, 17°C/63°F, 9:52 pm GMT-8, Saturday, 19 November 2016
[05:53:00] <Ethanol-fueled> Good evening, gentlemen.
[05:56:13] -!- Ethanol-fueled has quit [Client Quit]
[06:02:32] <Subsentient> $tell Ethanol-fueled What a shame I keep missing you. I have fresh chunky vomit to aggressively inject down your throat.
[06:02:32] <aqu4> I'll tell them in a PM next time I see 'em.
[06:10:07] -!- Web_weasel has quit [Ping timeout: 244 seconds]
[06:12:52] -!- chromas [chromas!~chromas@0::1] has joined #Soylent
[06:12:55] <exec> welcome chromas: Walla Walla, WA, USA, 3°C/37°F, 10:12 pm GMT-8, Saturday, 19 November 2016
[06:37:02] -!- popeydoll [popeydoll!~popeidol@05-1-317-986.dyn.iinet.net.au] has joined #Soylent
[06:40:05] -!- Popeidol has quit [Ping timeout: 244 seconds]
[06:47:43] <Bender> [SoylentNews] - Cosmic Whistle Packs a Surprisingly Energetic Punch - http://sylnt.us - space-rave
[06:48:52] -!- SoylentSnow has quit [Ping timeout: 244 seconds]
[08:02:19] -!- charon has quit [Quit: http://www.mibbit.com ajax IRC Client]
[08:15:29] <Bender> [SoylentNews] - Decrypting TLS Browser Traffic with Wireshark - http://sylnt.us - give-me-your-keys
[09:55:46] <Bender> [SoylentNews] - Storing Carbon Dioxide Underground by Turning It Into Rock - http://sylnt.us - rock-of-ages
[10:02:00] -!- Web_weasel [Web_weasel!~Stefan@lddw807-735-342-81.range857-280.btcentralplus.com] has joined #Soylent
[10:05:35] <aqu4> #fite Loggie
[10:05:35] <MrPlow> #fite spam going to channel #fite
[10:05:46] <MrPlow> #fite Loggie falls broken at aqu4's feet.
[10:06:13] <Subsentient> #fite Runaway1956
[10:06:13] <MrPlow> #fite spam going to channel #fite
[10:06:27] <MrPlow> #fite Subsentient falls broken at Runaway1956's feet.
[10:06:57] <aqu4> #fite Runaway1956
[10:06:57] <MrPlow> #fite spam going to channel #fite
[10:07:17] <MrPlow> #fite aqu4 falls broken at Runaway1956's feet.
[10:07:22] <Subsentient> dafuq
[11:05:16] -!- n1 [n1!~n1@Soylent/Staff/Editor/n1] has joined #Soylent
[11:05:16] -!- mode/#Soylent [+v n1] by Aphrodite
[11:07:43] -!- nick has quit [Ping timeout: 244 seconds]
[11:22:03] <TheMightyBuzzard> Subsentient, there's a reason it's done that way, though i should have just written a function to do the same thing over and over.
[11:22:48] <Subsentient> TheMightyBuzzard: No I mean, that you manually counted out the number of bytes in a string and used it in a comparison like that.
[11:23:35] <TheMightyBuzzard> yarp, that's cause i started it the quick n lazy way and haven't gotten around to writing a function for it yet.
[11:24:14] <Subsentient> TheMightyBuzzard: So there's no rust way to do sizeof "String"?
[11:24:21] <Subsentient> It works with string literals
[11:25:52] <TheMightyBuzzard> .len() gets you the size of a string. the &noprefixbytes[..7] equality there's a reason for though. that's comparing the first 7 raw bytes of a string to the raw bytes of the stuff in quotes
[11:26:48] <TheMightyBuzzard> and you have to use bytes because bytram will stick a bloody unicode character in there otherwise.
[11:27:05] <Subsentient> TheMightyBuzzard: if (strncmp(StringPointer, "Gerbils", sizeof "Gerbils") != 0)
[11:28:48] <TheMightyBuzzard> might have a similar function but i'm unaware of it
[11:29:03] <Subsentient> TheMightyBuzzard: I'd look for it. Magic numbers are evil.
[11:30:29] <TheMightyBuzzard> they're not really all that magic. they're just done that way because it's easier than writing a function to get length of a string and storing a variable of len+1 for checking against and i wanted to see if it worked not write more code.
[11:31:43] <TheMightyBuzzard> keep in mind that's some code i wrote in rust on the very first day then just kept doing it that way because i haven't taken time to do it a better way.
[11:35:06] <TheMightyBuzzard> Subsentient, thanks for pointing it out though. it's occasionally a pain to count to 7 and remember not to fencepost myself. think i'll fix it this am.
[11:36:25] <Bender> [SoylentNews] - Illinois Senate Overrides Governor's Veto of Automatic Voter Registration - http://sylnt.us - right-to-vote
[11:36:43] <Subsentient> TheMightyBuzzard: ^^
[11:37:05] <TheMightyBuzzard> whadda i care about illinios?
[11:37:39] <TheMightyBuzzard> #yt sweet home chicago robert johnson
[11:37:39] <MrPlow> https://www.youtube.com
[12:02:13] * n1 wants to go back to sleep
[12:04:06] <TheMightyBuzzard> oh, right, you're not on brit time currently. was going to say going back to sleep at noon is acceptable and called a "nap"
[12:05:43] <n1> indeed, i'm back on 'never quite sure what the time is' time .... as the cellphone networks have still not updated to no DST
[12:06:14] <n1> due to how smart smartphones are, my phone refuses to show me the actual time in my location
[12:06:37] <TheMightyBuzzard> yeurg
[12:07:24] <n1> does a bot in here do time?
[12:07:49] <TheMightyBuzzard> put your location in exec and ~time works
[12:08:11] <TheMightyBuzzard> ~weather-add TheMightyBuzzard humboldt, tn
[12:08:12] <exec> name "TheMightyBuzzard" set for location "humboldt, tn"
[12:08:15] <TheMightyBuzzard> ~time
[12:08:17] <exec> Sunday, 20 November 2016 @ 6:08 am GMT-6 - Humboldt, TN, USA
[12:08:52] <n1> ~weather-add n1 montevideo
[12:08:53] <exec> name "n1" set for location "montevideo"
[12:08:57] <n1> ~time
[12:08:59] <exec> Sunday, 20 November 2016 @ 9:08 am GMT-3 - Montevideo, Montevideo Department, Uruguay
[12:09:12] <n1> well at least exec gets it right
[12:09:33] <TheMightyBuzzard> exec's surprisingly good at what he does for just scraping google
[12:09:50] <n1> try and set a clock for montevideo on an android phone though
[12:10:16] <n1> every one forces it to GMT-2
[12:10:26] <n1> or at least the 3 i've tried it with
[12:11:35] <TheMightyBuzzard> noice
[12:11:47] <TheMightyBuzzard> scuse me a moment, need nicotines
[12:13:08] <n1> not a bad idea
[12:27:09] zz_janrinok is now known as janrinok
[12:27:44] janrinok is now known as zz_janrinok
[12:37:41] <cmn32480> or yo can just put in the place after ~ time
[12:37:56] <cmn32480> ~time Montevideo
[12:37:58] <exec> Sunday, 20 November 2016 @ 9:37 am GMT-3 - Montevideo, Montevideo Department, Uruguay
[12:38:30] zz_janrinok is now known as janrinok
[12:39:05] <TheMightyBuzzard> ~gday cmn32480
[12:39:07] * exec cautiously twerks a hashref of dancing baby for cmn32480
[12:39:11] <cmn32480> ~gday TheMightyBuzzard
[12:39:13] * exec accidentally derives a raid 1 volume of extra lives from TheMightyBuzzard
[12:39:29] <janrinok> ~gday TheMightyBuzzard
[12:39:30] * exec overratedly spews a snapshot of unchecked parameters on TheMightyBuzzard
[12:39:31] <TheMightyBuzzard> i dunno who won that one
[12:39:33] <janrinok> ~gday cmn32480
[12:39:35] * exec historically refactors a drum of doughnuts for cmn32480
[12:39:37] <cmn32480> ~gday janrinok
[12:39:38] <TheMightyBuzzard> ~gday janrinok
[12:39:39] * exec single-candidly flings a wallet of Satya Nadella's anus at janrinok
[12:39:41] * exec buttmagically fires a raid 1 volume of whoopass at janrinok
[12:39:59] <TheMightyBuzzard> pretty sure janrinok lost though
[12:40:05] <cmn32480> i got donuts
[12:40:05] <janrinok> haven't a clue who initiated what on that exchange!
[12:42:12] <TheMightyBuzzard> #fite Loggie
[12:42:12] <MrPlow> #fite spam going to channel #fite
[12:42:20] <MrPlow> #fite Loggie falls broken at TheMightyBuzzard's feet.
[12:42:29] <TheMightyBuzzard> #fite cmn32480
[12:42:29] <MrPlow> #fite spam going to channel #fite
[12:42:35] <janrinok> anyone got anything of interest to say?
[12:42:49] <cmn32480> worked w/ fnord666 last night
[12:42:58] <janrinok> how'd he do?
[12:42:58] <cmn32480> about 2 1/2 hours worht
[12:43:08] <janrinok> you must have been tired after that!
[12:43:09] <cmn32480> he understand the interface
[12:43:21] <janrinok> can he type better than you?
[12:43:21] <cmn32480> and will be trying his hand today someimte
[12:43:28] <cmn32480> gad I hope so
[12:43:35] <janrinok> we'll take him then
[12:43:56] <cmn32480> lol
[12:43:57] <MrPlow> #fite cmn32480 falls broken at TheMightyBuzzard's feet.
[12:44:12] <cmn32480> had a minor issue w/ no perms at the beginning
[12:44:32] <cmn32480> but TMB soprted that after a text message to wake him from his before bed time nap
[12:44:37] <TheMightyBuzzard> #fite FatPhil
[12:44:37] <MrPlow> #fite spam going to channel #fite
[12:44:53] <cmn32480> #fitectl scoreboard
[12:44:53] <MrPlow> There's a fight going on. You'll have to wait.
[12:45:17] <MrPlow> #fite TheMightyBuzzard falls broken at FatPhil's feet.
[12:45:25] <cmn32480> #fitectl scoreboard
[12:45:25] <MrPlow> #fite scoreboard updated: https://sylnt.us
[12:45:49] <TheMightyBuzzard> scoreboard autoupdates now. you can bookmark it
[12:45:59] <cmn32480> looms like charon is still testing on dev as well as prod
[12:46:05] <cmn32480> woot
[12:46:19] <janrinok> I'm switching to #ed - too much violence and fite'ing on here :)
[12:47:21] <Subsentient> #fite janrinok
[12:47:21] <MrPlow> #fite spam going to channel #fite
[12:47:22] <MrPlow> #fite janrinok falls broken at Subsentient's feet.
[12:47:44] <janrinok> bugger
[12:48:47] <Subsentient> janrinok: Muahahahaha
[12:48:55] <cmn32480> ~say #fite Subsentient
[12:48:57] <exec> #fite Subsentient
[12:48:57] <MrPlow> #fite spam going to channel #fite
[12:49:05] <MrPlow> #fite exec falls broken at Subsentient's feet.
[12:49:06] -!- RustyPlow [RustyPlow!RustyPlow@Soylent/BotArmy] has joined #Soylent
[12:49:12] <TheMightyBuzzard> ##part
[12:49:12] -!- RustyPlow [RustyPlow!RustyPlow@Soylent/BotArmy] has parted #Soylent
[12:50:31] <Subsentient> cmn32480: You fail.
[12:50:46] <cmn32480> subsentient... just wiat
[12:51:22] <aqu4> #fite cmn32480
[12:51:22] <MrPlow> #fite spam going to channel #fite
[12:51:31] <MrPlow> #fite aqu4 falls broken at cmn32480's feet.
[12:51:46] <cmn32480> #fite Subsentient
[12:51:46] <MrPlow> #fite spam going to channel #fite
[12:52:03] <MrPlow> #fite Subsentient falls broken at cmn32480's feet.
[12:52:14] <Subsentient> cmn32480: Well gg lol
[12:52:18] <cmn32480> #fite Aphrodite
[12:52:18] <MrPlow> #fite spam going to channel #fite
[12:52:32] <MrPlow> #fite Aphrodite falls broken at cmn32480's feet.
[12:52:58] <cmn32480> #fite Regurgitator
[12:52:58] <MrPlow> #fite spam going to channel #fite
[12:53:21] <MrPlow> #fite Regurgitator falls broken at cmn32480's feet.
[13:07:35] <Bender> [SoylentNews] - Plug-In Electric Vehicles—a Consumer Wish List - http://sylnt.us - I-have-the-power
[13:10:19] <cmn32480> #fite Bender
[13:10:19] <MrPlow> #fite spam going to channel #fite
[13:10:29] <MrPlow> #fite Bender falls broken at cmn32480's feet.
[13:10:38] <cmn32480> #fite arti
[13:10:38] <MrPlow> #fite spam going to channel #fite
[13:10:46] <MrPlow> #fite arti falls broken at cmn32480's feet.
[13:11:54] <TheMightyBuzzard> blarg, forgot rustyplow would do all the fite stuff too
[13:14:47] <cmn32480> tee hee
[13:14:52] <cmn32480> #fite aqu4
[13:14:52] <MrPlow> #fite spam going to channel #fite
[13:14:52] <MrPlow> #fite aqu4's corpse is currently rotting on the ground. Try fighting someone who's alive.
[13:15:32] <cmn32480> #fite FatPhil
[13:15:32] <MrPlow> #fite spam going to channel #fite
[13:15:47] <MrPlow> #fite cmn32480 falls broken at FatPhil's feet.
[13:48:34] -!- pinchy [pinchy!~krimskree@axg-01-89-53-201.tx.res.rr.com] has joined #Soylent
[13:51:43] <cmn32480> coffee++
[13:51:43] <Bender> karma - coffee: 3036
[13:54:43] <TheMightyBuzzard> coffee++
[13:54:43] <Bender> karma - coffee: 3037
[14:15:02] <TheMightyBuzzard> fuck but MrPlow has a lot of commands
[14:22:54] <TheMightyBuzzard> smoke break
[14:22:54] <TheMightyBuzzard> nicotine++
[14:22:54] <Bender> karma - nicotine: 217
[14:34:04] -!- FAMAS [FAMAS!~673caf2a@103.60.rkr.ts] has joined #Soylent
[14:34:10] <FAMAS> greetings to all
[14:35:30] <AndyTheAbsurd> hello
[14:35:31] <cmn32480> ~gday FAMAS
[14:35:33] * exec cohesively culturally appropriates a safe space of paper chads from FAMAS
[14:37:15] <FAMAS> this user enquires to user exec as to what the user is referring to with the phrase "culturally appropriates"
[14:37:49] <cmn32480> exec doesn't answer questions... he's a bot
[14:38:33] <FAMAS> ~gday cmn32480
[14:38:35] * exec readily twerks a pinch of bacon-flavored candy canes for cmn32480
[14:38:51] <AndyTheAbsurd> ~gday cmn32480
[14:38:53] * exec crutchyly pisses a sacful of cheese on cmn32480
[14:39:04] <cmn32480> \~gday AndyTheAbsurd
[14:39:08] <cmn32480> ~gday AndyTheAbsurd
[14:39:08] <AndyTheAbsurd> exec just slaps a bunch of random things together for the ~gday command
[14:39:10] * exec problematically snatches an alternative view of humbuggery from AndyTheAbsurd
[14:39:18] <AndyTheAbsurd> ~weather Saint Petersburg, FL
[14:39:19] <exec> 10Saint Petersburg, FL, USA - currently 55°F / 13°C, sunny, wind NE at 19 mph, humidity 45% - Sunday sunny (53°F:66°F / 12°C:19°C), Monday sunny (55°F:68°F / 13°C:20°C), Tuesday sunny (60°F:74°F / 16°C:23°C), Wednesday mostly sunny (63°F:77°F / 17°C:25°C)
[14:39:23] <FAMAS> this user discovered the network recently and enquires the nature of the news site
[14:39:45] <cmn32480> mostly technical/science
[14:39:52] <cmn32480> aggregation from other places
[14:39:58] <cmn32480> some politics/social stuff
[14:40:29] <FAMAS> this user enquires the political and economical bias of the network to be more specific
[14:40:32] <cmn32480> take a look at it
[14:40:40] <cmn32480> https://soylentnews.org
[14:40:42] <exec> └─ 13SoylentNews: SoylentNews is people
[14:41:03] <cmn32480> the news isn't always breaking stuff, but generalyl there to foster discussion in the comments
[14:41:17] <FAMAS> in reply to user cmn32480 , this user is currently in a state of being where this user is unable to continue for lengthened reading
[14:41:43] <cmn32480> understood
[14:43:24] <FAMAS> https://soylentnews.org this user is requesting to see accounts of others in this chat
[14:43:26] <exec> └─ 13FAMAS - SoylentNews User
[14:45:04] <cmn32480> same format with the other nicksin place of yours
[14:45:29] <Bender> [SoylentNews] - U.S. Lawmakers Introduce Bill to Delay Enhanced Government Hacking Powers - http://sylnt.us
[14:45:56] <AndyTheAbsurd> Bytram is an exception to that, he is martyb on the site.
[14:46:23] <AndyTheAbsurd> and also you have to drop the |away from Bytram|away because apparently he's AFK at the moment
[14:47:01] <FAMAS> this user enquires the location of the friend, foe, fan add remove buttons in the profiles of other users
[14:49:56] <cmn32480> under the relation tab
[14:51:29] <FAMAS> this user notices that the site operates as a community blog and a wiki with a comment system that is visually similar to that of reddit
[14:52:29] Bytram|away is now known as Bytram
[14:53:10] <cmn32480> no
[14:53:23] <cmn32480> visially similar to slashdot. there was a shared original codebase
[14:57:39] <FAMAS> this user enquires the origin story of soylentnews as to when the network was created and the reason for maintaining a seperate wiki and irc server for the site
[14:59:53] <janrinok> FAMAS, you could always be replaced by a human who could make deductions without all the questions?
[15:01:38] <FAMAS> in reply to user janrinok , the privileges belong to the network operators as to which persons they will keep and not
[15:04:27] <cmn32480> FAMAS, thi information is on the wiki
[15:05:28] <TheMightyBuzzard> #fite xhedit
[15:05:28] <MrPlow> #fite spam going to channel #fite
[15:07:18] <MrPlow> #fite TheMightyBuzzard falls broken at xhedit's feet.
[15:09:00] <TheMightyBuzzard> =poo
[15:09:04] <TheMightyBuzzard> =poop
[15:09:14] <TheMightyBuzzard> ~💩
[15:09:18] <TheMightyBuzzard> 💩
[15:09:19] * exec chucks a nasty sloppy dogshit at aqu4
[15:10:09] <TheMightyBuzzard> ya know, i'm tired of coding for now. i'll finish up this nonsense later when i get bored
[15:56:01] -!- FAMAS has quit [Ping timeout: 244 seconds]
[16:08:54] -!- Fnord666 [Fnord666!~Fnord666@Soylent/Readers/IRC/Fnord666] has joined #Soylent
[16:13:05] janrinok is now known as janrinok_afk
[16:18:37] <Bender> [SoylentNews] - Internet Association Releases Policy Roadmap - http://sylnt.us - if-you-wish-upon-a-star
[16:24:37] <Bytram> #submit https://www.usgs.gov
[16:24:38] <MrPlow> Unable to find a summary for that page
[16:24:40] <exec> └─ 13USGS Estimates 20 Billion Barrels of Oil in Texas’ Wolfcamp Shale Formation
[16:24:45] <Bytram> ~submit https://www.usgs.gov
[16:24:49] <exec> └─ 13USGS Estimates 20 Billion Barrels of Oil in Texas’ Wolfcamp Shale Formation
[16:25:20] <exec> submission successful - https://soylentnews.org
[17:27:43] Bytram is now known as Bytram|away
[17:56:17] GreatOutdoors is now known as Iwonderwhatthenickna
[17:56:17] <Bender> [SoylentNews] - Reporting Rape in UAE Could Lead to the Victim's Arrest - http://sylnt.us - don't-blame-the-messenger-—-charge-them
[17:56:34] Iwonderwhatthenickna is now known as GreatOutdoors
[18:04:56] Fnord666 is now known as Fnord666_afk
[18:07:24] janrinok_afk is now known as janrinok
[18:59:03] GreatOutdoors is now known as GreatOutdoors|afk
[19:22:58] Fnord666_afk is now known as Fnord666
[19:27:28] <Bender> [SoylentNews] - Economist's Research Reveals Poverty Should be Measured by More than Income - http://sylnt.us - how-much-less-do-I-have-than-others
[20:03:53] janrinok is now known as zz_janrinok
[20:52:28] <cmn32480> #fite Regurgitator
[20:52:28] <MrPlow> #fite spam going to channel #fite
[20:52:32] <MrPlow> #fite Regurgitator falls broken at cmn32480's feet.
[20:52:41] <cmn32480> #fite Bed
[20:52:41] * MrPlow #fite looks around but doesn't see Bed
[20:52:43] <cmn32480> #fite Bender
[20:52:43] <MrPlow> #fite spam going to channel #fite
[20:52:46] <MrPlow> #fite Bender falls broken at cmn32480's feet.
[20:53:02] <cmn32480> #fite Aphrodite
[20:53:02] <MrPlow> #fite spam going to channel #fite
[20:53:11] <MrPlow> #fite Aphrodite falls broken at cmn32480's feet.
[20:53:41] <cmn32480> #fite MRplow
[20:53:41] * MrPlow #fite looks around but doesn't see MRplow
[20:53:46] <cmn32480> #fite MrPlow
[20:53:46] <MrPlow> #fite spam going to channel #fite
[20:53:51] <MrPlow> #fite MrPlow falls broken at cmn32480's feet.
[20:55:06] * TheMightyBuzzard jumps on cmn32480 while he's weakened
[20:55:07] <TheMightyBuzzard> #fite cmn32480
[20:55:07] <MrPlow> #fite spam going to channel #fite
[20:55:23] <MrPlow> #fite cmn32480 falls broken at TheMightyBuzzard's feet.
[20:55:24] <cmn32480> see I was gonna scacrifice to FatPHil
[20:55:32] * TheMightyBuzzard chuckles
[20:55:40] <TheMightyBuzzard> ambushes are more fun
[20:55:43] <cmn32480> oh well
[20:55:54] <cmn32480> maybe next tiem
[20:56:23] * TheMightyBuzzard looks around his room
[20:56:33] <TheMightyBuzzard> i should really clean this place
[20:56:44] * cmn32480 eonders if there is a path from the desk to the door with a side trail to the bed
[20:56:52] <TheMightyBuzzard> basically
[20:56:58] <cmn32480> my wife woudl kill me
[20:57:39] <TheMightyBuzzard> just got two tubs of shat dumped on me cause my dad was cleaning out the storage shed and declared that stuff i left there 20 years ago was now mine again
[20:58:47] <TheMightyBuzzard> it kinda pushed the normal mess over the top and ima hafta clean it soon.
[20:59:13] <cmn32480> my parents ahve done that
[21:00:26] <TheMightyBuzzard> among the many things in the first tub was a geforce 2 gtx video card
[21:01:05] <cmn32480> lol
[21:01:18] <TheMightyBuzzard> and an amd 486 chip
[21:01:31] <cmn32480> geewsh
[21:01:48] <cmn32480> worth $0.50 on ebay
[21:02:00] <TheMightyBuzzard> or fun to stick on a keychain
[21:02:42] <TheMightyBuzzard> i used to use a defective stick of ram as a keychain. stick it in my pocket and leave the keys hanging out.
[21:03:16] <cmn32480> whatever makes you happy
[21:03:56] <TheMightyBuzzard> worked pretty well. never had to dig for my keys and the chips grabbed just enough to keep it from falling out of my pocket.
[21:06:09] <TheMightyBuzzard> think i may take another nap and avoid the rest of the second tub till tomorrow
[21:06:14] <cmn32480> crap.. the 4 year old knowns how to turn on the xbox
[21:06:18] <TheMightyBuzzard> yeah, that sounds like a good sunday plan
[21:06:20] <TheMightyBuzzard> ha!
[21:06:27] * cmn32480 sighs
[21:06:50] <TheMightyBuzzard> put masking/electric tape over the touch areas
[21:07:14] <cmn32480> nah.. they know better than to turn it one w/o permission
[21:07:14] <TheMightyBuzzard> should work unless it's a hall effect switch
[21:07:20] <Bender> [SoylentNews] - Icy Surprises at Rosetta's Comet - http://sylnt.us - meteor-storms-in-the-making
[21:07:22] <cmn32480> last time they did that, I took it way for a month
[21:07:26] <TheMightyBuzzard> har
[21:07:35] <n1> brutal...
[21:07:42] <cmn32480> any by took it away, I mean literally unplugged all the cbales and removed it
[21:07:58] <TheMightyBuzzard> good man
[21:09:52] <cmn32480> they were agahst
[21:10:33] <cmn32480> coudl not believe I left a gaping hole in the entertainment center and left all the attachemnts and wires for it
[21:10:45] <cmn32480> the wife thought it was hilarious
[21:14:02] Fnord666 is now known as Fnord666|away
[21:16:56] <cmn32480> fek.. I don't feel like editing anything
[21:17:06] * cmn32480 goes to take a nap
[21:17:11] <cmn32480> naps++
[21:17:11] <Bender> karma - naps: 52
[21:18:04] <FatPhil> that's estonian for a shot, as in a mangled "schnapps"
[22:35:00] -!- charon [charon!~0c0959f3@12.9.xk.pqn] has joined #Soylent
[22:36:31] <Bender> [SoylentNews] - Peter Thiel in a Trump Administration a Threat to Free Speech. - http://sylnt.us - points-to-ponder
[22:47:14] <Runaway1956> Don't anyone tell Takyon that I'm jerking his chain just for the fun of it https://soylentnews.org
[22:47:18] <exec> └─ 13SoylentNews Comments | Icy Surprises at Rosetta's Comet
[23:08:00] -!- n1_ [n1_!~n1@Soylent/Staff/Editor/n1] has joined #Soylent
[23:08:00] -!- mode/#Soylent [+v n1_] by Aphrodite
[23:10:01] -!- n1 has quit [Ping timeout: 244 seconds]
[23:10:15] n1_ is now known as nick
[23:13:43] <cmn32480> #yt sweatin ot the oldies
[23:13:43] <MrPlow> https://www.youtube.com
[23:35:38] <Bender> [SoylentNews] - Tails Linux 2.7 is Released - http://sylnt.us - stay-secure