<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:02:50] <freacknate09> How did the forum get the url "oc.cil.li"?
L2[00:06:40] <DerpiusDerp> How do i use CTIF
L3[00:11:46] <freacknate09> What is CTIF?
L4[00:12:09] <freacknate09> Is it that Image Format?
L5[00:12:31] <freacknate09> I know it is something something Image Format
L6[00:12:53] <DerpiusDerp> Yeah
L7[00:31:35] ⇨ Joins: ba7888b72413a16a (ba7888b72413a16a!~ba7888b72@66.109.211.167)
L8[00:34:57] <freacknate09> Is there a lua for retards guide available?
L9[00:38:39] <freacknate09> I found a 1 hour course on Skillshare
L10[00:39:14] <freacknate09> and I like his voice so far
L11[00:43:10] <asie> @DerpiusDerp You use the JAR tool as a converter in the command line
L12[00:43:25] <asie> If you want something simpler, https://oc.cil.li/index.php?/topic/1653-pngview-high-resolution-png-viewer-in-opencomputers/ lets you just view PNGs but at a lower quality
L13[00:53:48] <freacknate09> If I do Code Block pastebined https://paste.pc-logix.com/xejozoqeja would that print "nil" or error, or neither?
L14[00:56:14] <fingercomp> you would get an error ("attempt to perform arithmetic on a nil value") on line 3
L15[00:56:34] <freacknate09> ahh, ok
L16[00:59:10] <freacknate09> Is there a way to add a function to handle it so it doesn't kill the entire program?
L17[00:59:59] <fingercomp> use pcall or xpcall
L18[01:00:56] <freacknate09> What are those?
L19[01:02:10] <fingercomp> https://www.lua.org/manual/5.3/manual.html#pdf-pcall https://www.lua.org/manual/5.3/manual.html#pdf-xpcall
L20[01:02:50] <freacknate09> thanks
L21[01:03:25] <Forecaster> %loot
L22[01:03:25] <MichiBot> Forecaster: You get a loot box! It contains a tiny model shoe.
L23[01:04:16] <freacknate09> %loot
L24[01:04:16] <MichiBot> freacknate09: You get a loot box! It contains a metal bearing.
L25[01:04:20] <freacknate09> %inventory
L26[01:04:20] <MichiBot> freacknate09: Must specify sub-command. (Try: list, create (add), remove (rem, del), preserve (pre), unpreserve (unpre), count, favourite (fav))
L27[01:04:31] <freacknate09> %inventory list
L28[01:04:32] <MichiBot> freacknate09: Here's my inventory: http://michibot.pc-logix.com/inventory
L29[01:04:48] <freacknate09> %help
L30[01:04:48] <MichiBot> freacknate09: Command list: http://michibot.pc-logix.com/help
L31[01:05:34] <freacknate09> %manual
L32[01:15:43] ⇦ Quits: Cervator (Cervator!~Thunderbi@2601:4c1:4001:1d5d:ec5f:721e:dab3:82c6) (Quit: Cervator)
L33[01:17:24] <freacknate09> I just want to inform you all of the best xkcd ever: https://xkcd.com/327/
L34[01:17:25] <MichiBot> XKCD Comic Name: Exploits of a Mom Posted on: 10/10/2007
L35[01:17:25] ⇨ Joins: Doty1154 (Doty1154!~Doty1154@c-73-189-164-179.hsd1.ca.comcast.net)
L36[01:17:46] <freacknate09> Good bot
L37[01:22:10] <gamax92> My CyberLife is sent, I'm Android the Connor by name
L38[01:30:24] <freacknate09> What does "ipairs" do? I am watching a tutorial, and he explained what the entire loop did, but didnt address "ipairs" directly. It is a loop listing all the values in a table. Here is the loop: Code Block pastebined https://paste.pc-logix.com/jedisomiju
L39[01:31:06] <freacknate09> What does "ipairs" do? I am watching a tutorial, and he explained what the entire loop did, but didnt address "ipairs" directly. It is a loop listing all the values in a table. Here is the loop: Code Block pastebined https://paste.pc-logix.com/pohucasawi [Edited]
L40[01:41:38] <freacknate09> Can someone help me with the ipairs?
L41[01:42:11] <Kleadron> it gives you the apple ipair
L42[01:44:01] <freacknate09> lol
L43[01:44:04] <freacknate09> ?
L44[01:50:34] <Mimiru> http://www.luafaq.org/#T1.10
L45[01:50:48] <freacknate09> Is it possible to have 2 entries per index in a table? I want the index, then item name, then quantity
L46[01:52:59] <Forecaster> https://youtu.be/OnqDfwULCgM
L47[01:53:00] <MichiBot> hackmud launch trailer | length: 1m 5s | Likes: 86 Dislikes: 0 Views: 20,113 | by The Trust | Published On 22/9/2016
L48[01:53:37] <freacknate09> lol
L49[01:56:12] <Forecaster> @freacknate09 multi-level tables
L50[01:58:28] <freacknate09> Can I get a link to how to make/use those?
L51[01:59:17] <freacknate09> How do I use the serialization API in openos? The documentation is confusing me, and I already don't know much
L52[01:59:18] <Forecaster> just... assign another table that contains the name and quantity to your first table?
L53[01:59:23] <freacknate09> ok
L54[02:00:54] <Forecaster> %lua local myindexes = {} myindexes[1] = { name = "somename", quantity = 1 } print(myindexes[1].name)
L55[02:00:54] <MichiBot> somename
L56[02:01:15] <Forecaster> %lua print(myindexes[1].quantity)
L57[02:01:15] <MichiBot> main:1: attempt to index global 'myindexes' (a nil value)
L58[02:01:34] <Forecaster> oh right, local is local to the line
L59[02:01:47] <Forecaster> you get the idea
L60[02:02:22] <freacknate09> yeah, thank you
L61[02:04:03] <Forecaster> for serialize you have to require("serialization")
L62[02:04:27] <freacknate09> ok, thank you. I was about to test serializing a table, and I didnt do that
L63[02:04:45] <Forecaster> then you just `local mystring = serialization.serialize(myvariable)`
L64[02:04:59] <Forecaster> then you can write that to a file or something
L65[02:05:18] <freacknate09> ok
L66[02:05:22] <Forecaster> then `local myvariable = serialization.unserialize(mystring)` to reverse
L67[02:12:23] <freacknate09> So I created a program to test serialization, and my file IO is not working right. When I give it index 1 of the table, then press enter, it serializes the table, and writes the string to a file. I am getting an error in the file writing part. Program: https://pastebin.com/WDt7QGV7
L68[02:13:55] <freacknate09> The error is line 16
L69[02:14:41] <freacknate09> line 16 is ```file:write(items_serial)```
L70[02:16:34] <fingercomp> 1. don't use `fs.open` (yet), as there's `io.open`, which is better
L71[02:16:42] <freacknate09> ok
L72[02:16:59] <freacknate09> do I need to do ```require("io")```?
L73[02:17:11] <fingercomp> no, it's already available
L74[02:17:21] <freacknate09> ok
L75[02:17:28] <fingercomp> 2. the second argument to `io.open` is a string, but you are passing `nil` there (replace the line with `file = io.open("/home/ID/file.txt", "w")`)
L76[02:18:02] <fingercomp> 3. it may still fail to open the file if the `/home/ID/` directory does not exist
L77[02:18:15] <freacknate09> ok, the directory exists, since that is where ID.lua is
L78[02:18:28] <fingercomp> oh, ok
L79[02:18:30] <freacknate09> and how do you do the inline code thing?
L80[02:18:54] <Forecaster> surround with `
L81[02:19:14] <freacknate09> ok, because I know 3 ` will do the whole line code, which is what I do
L82[02:19:37] <Forecaster> yes
L83[02:19:53] <freacknate09> but how is it inline for him?
L84[02:20:10] <Forecaster> and `\`\`\`Lua` will add highlighting to that as well
L85[02:20:15] <freacknate09> ok
L86[02:20:16] <Forecaster> ...
L87[02:20:19] <freacknate09> `test`
L88[02:20:22] <freacknate09> ahh, I see
L89[02:20:22] <Forecaster> not what I intended but okay
L90[02:20:43] <Forecaster> three ` followed by the language name adds highlighting to the multi-line blocks
L91[02:20:48] <Kleadron> this is unnacceptable http://tinyurl.com/y9ljlo5g
L92[02:20:54] <Kleadron> it must be eliminated
L93[02:20:56] <freacknate09> I got it now Forecaster
L94[02:20:59] <Forecaster> surrounding with single ` does inline code
L95[02:21:03] <Kleadron> preparing purge
L96[02:21:10] <Kleadron> ima charging my laser
L97[02:21:23] <Kleadron> wopwopwopwop etc
L98[02:21:40] <Kleadron> >insert boom noise here<
L99[02:21:46] <Kleadron> purge complete
L100[02:21:53] <Kleadron> resuming scan
L101[02:22:35] <freacknate09> well, I got me another error!
L102[02:27:28] <freacknate09> Code: Code Block pastebined https://paste.pc-logix.com/ceqoyoqamo
L103[02:27:28] <freacknate09> Error: `bad argument #1 (string expected, got table)` on line 4
L104[02:27:51] <freacknate09> Code: ``` `\luaCode Block pastebined https://paste.pc-logix.com/hojedeqece
L105[02:27:51] <freacknate09> Error: `bad argument #1 (string expected, got table)` on line 4 [Edited]
L106[02:28:31] <freacknate09> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/yozoyahuce
L107[02:28:39] <Forecaster> and `\```Lua` will add highlighting to that as well [Edited]
L108[02:28:42] <freacknate09> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/tavuwayozo
L109[02:29:00] <freacknate09> Code: ``` ` \luaCode Block pastebined https://paste.pc-logix.com/ogetuworef
L110[02:29:00] <freacknate09> Error: `bad argument #1 (string expected, got table)` on line 4 [Edited]
L111[02:29:09] <Forecaster> and `\\```Lua` will add highlighting to that as well [Edited]
L112[02:29:33] <Forecaster> it's just "lua" after the three `
L113[02:29:39] <freacknate09> Code: Code Block pastebined https://paste.pc-logix.com/owesapelix
L114[02:29:39] <freacknate09> Error: `bad argument #1 (string expected, got table)` on line 4 [Edited]
L115[02:29:49] <freacknate09> Code: Code Block pastebined https://paste.pc-logix.com/ayadigokok
L116[02:29:50] <freacknate09> Error: `bad argument #1 (string expected, got table)` on line 4 [Edited]
L117[02:29:57] <freacknate09> I got it! ?
L118[02:29:59] <freacknate09> thank you
L119[02:30:10] <freacknate09> I am still learning lua and discord markdown
L120[02:30:25] <Forecaster> also, use local
L121[02:30:27] <Forecaster> :|
L122[02:30:53] <freacknate09> on which one? line 4?
L123[02:31:17] <Forecaster> variables in general
L124[02:31:20] <freacknate09> oh
L125[02:31:42] <freacknate09> how do I fix that error? I can not get it to go away
L126[02:32:11] <freacknate09> It is really frustrating me
L127[02:32:18] <Forecaster> open doesn't read the file
L128[02:32:44] <Forecaster> it returns a file stream, you have to read the stream to get a string
L129[02:32:45] <freacknate09> oh
L130[02:32:48] <freacknate09> I am stupid
L131[02:32:56] <freacknate09> I can't believe I overlooked that
L132[02:34:02] <freacknate09> different error now
L133[02:34:06] <freacknate09> I am still doing stuff wrong
L134[02:35:16] <freacknate09> how do I read with the IO library?
L135[02:35:29] <freacknate09> I am trying *mine
L136[02:35:40] <Forecaster> you're putting the pointer into "data"
L137[02:35:54] <Forecaster> so `data:read(999999999999)`
L138[02:35:57] <freacknate09> I changed that part now
L139[02:35:57] <freacknate09> ok
L140[02:36:20] <fingercomp> `local contents = file:read("*a")` if you want to read everything
L141[02:36:28] <Forecaster> ^
L142[02:36:32] <Forecaster> I couldn't remember that
L143[02:37:44] <freacknate09> still not working
L144[02:38:21] <freacknate09> why am I so stupid?
L145[02:38:28] <freacknate09> I figured it out
L146[02:38:39] <Forecaster> so not stupid :P
L147[02:38:44] <freacknate09> YES!!!!!!!!!!!!!!!!!!!!!!!!
L148[02:38:48] <Kleadron> i ask that myself every day
L149[02:38:48] <freacknate09> I got it to work!
L150[02:38:57] <Molinko> yay
L151[02:39:05] <freacknate09> now to cry
L152[02:39:11] <freacknate09> it isnt working completly correct
L153[02:39:19] <Kleadron> lol rip
L154[02:39:27] <freacknate09> different program not working right at lease
L155[02:39:32] <freacknate09> different program not working right at least [Edited]
L156[02:39:35] <Forecaster> Welcome to programming™
L157[02:39:44] <freacknate09> yeah lol
L158[02:40:06] <freacknate09> how do I let it overwrite data in a file?
L159[02:40:24] <freacknate09> My first program will not overwrite the file.txt
L160[02:40:44] <freacknate09> I am just using `w`, is there a different mode I should use so it overwrites?
L161[02:40:54] <fingercomp> no, `"w"` is the right one
L162[02:41:02] <freacknate09> how do I make it overwrite then?
L163[02:41:10] <freacknate09> I will just make it delete the file
L164[02:41:21] <fingercomp> it already does that
L165[02:41:56] <freacknate09> but the data is still there. The first time I run the program, I had it store "test". I re-ran it, and had it store "lol". I open the file, still "test"
L166[02:42:07] <freacknate09> so it isn't deleting the file with io.open
L167[02:44:10] <fingercomp> what's the code of your writer program?
L168[02:48:38] <freacknate09> https://pastebin.com/063mhMhf
L169[02:50:44] <freacknate09> this is very annoying. That if statment that is supposed to delete the file DOES NOTHING. This is really, incredibly, annoying. I need to go very soon, and can not fix this stupid issue
L170[02:50:59] <fingercomp> line 17: you set `items[1]` to `nil`, because `toadd` is undefined
L171[02:51:28] <freacknate09> That has already been proven to work, what the issue is is that it will not overwrite the file!
L172[02:51:39] <fingercomp> it does overwrite the file
L173[02:51:44] <freacknate09> IT IS NOT!
L174[02:51:49] <fingercomp> it does, twice
L175[02:51:53] <fingercomp> the program is somewhere else
L176[02:51:56] <freacknate09> I am on the edge of just deleting _everything_
L177[02:51:56] <fingercomp> *problem
L178[02:52:13] <freacknate09> the problem is very much down to the fact that it will not overwrite
L179[02:56:20] <freacknate09> so, it seems to be dead set on writing "test" instead of what i am telling it to write. I am going to bed before I burn the ingame hardrive
L180[03:00:58] <Forecaster> have you tried deleting the file manually?
L181[03:01:06] <Forecaster> to see if it still writes test to it?
L182[03:02:04] <freacknate09> I deleted it manually, and it still writes test. "test" is not written anywhere in the program, so it is confusing me. Anyway, I am off to bed for the night
L183[03:39:59] <Forecaster> %loot
L184[03:39:59] <MichiBot> Forecaster: You get a loot box! It contains a mask of someones face.
L185[03:44:49] <Lizzian> %loot
L186[03:44:49] <MichiBot> Lizzian: You get a loot box! It contains a Magic fried mice! (25%)
L187[03:47:26] <Lizzian> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/erukipofaz
L188[03:50:15] <Lizzian> Just a heads up (this is contained in the pastebinned link above on the irc side but re-posting in case people cant view the PB file.
L189[03:50:15] <Lizzian> The forums will be down for up-to 2 hours, starting around 2018-07-14 1300 GMT+1 (BST/UK Time). Unfortunatly I couldn't make it a seamless experience due to me having to change some base networking stuff
L190[04:30:06] ⇦ Quits: Doty1154 (Doty1154!~Doty1154@c-73-189-164-179.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
L191[05:27:56] <Forecaster> hm
L192[05:28:11] <Forecaster> I need a way to trigger a python script remotely
L193[05:39:19] <Izaya> ssh is the method that comes to mind
L194[05:43:11] <Forecaster> the remote is a windows machine by the way
L195[05:43:32] <Forecaster> it's my media server, and the python scripts updates a directory of symlinks
L196[05:43:58] <Izaya> how inconvenient
L197[05:44:16] <Izaya> I think Powershell has a remote login thing?
L198[05:45:14] <Forecaster> so it does, it seems
L199[05:46:02] <Izaya> That might be the way to go then.
L200[06:02:23] <DerpiusDerp> @asie#0000 It keeps saying that it doesn't exist
L201[06:09:18] <DerpiusDerp> Also I have the ctif file but don't know how to view it
L202[06:12:41] <asie> ?
L203[06:12:56] <asie> viewers/ctif-oc file.ctif
L204[06:13:36] <Izaya> asie do you like BeOS/Haiku?
L205[06:13:51] <asie> kinda? no strong feelings either way
L206[06:13:56] <Izaya> oh okay
L207[06:42:54] <DerpiusDerp> Ok I don't think I even have ctif installed on my open computers because viewers/ctif-oc doesn't exist
L208[06:47:06] ⇨ Joins: DerpiusDerp (DerpiusDerp!~DerpiusDe@c-73-164-66-213.hsd1.mn.comcast.net)
L209[06:48:25] <DerpiusDerp> How do I install CTIF
L210[07:07:48] <AmandaC> %give MichiBot 3 tickets to Inari's funeral and monster truck rally
L211[07:07:48] * MichiBot accepts 3 tickets to Inari's funeral and monster truck rally and adds it to her inventory
L212[07:19:51] ⇨ Joins: xarses_ (xarses_!~xarses@c-67-180-86-164.hsd1.ca.comcast.net)
L213[07:21:55] ⇦ Quits: xarses (xarses!~xarses@c-67-180-86-164.hsd1.ca.comcast.net) (Ping timeout: 198 seconds)
L214[08:01:49] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L215[08:21:57] <AmandaC> @Forecaster it might be neat once users have individual inventories to be able to split up items like what I just added.
L216[08:22:39] <AmandaC> @Forecaster eg: `%give Tem ia a ticket to Inari's funeral and monster truck rally` and it'll become `2 tickets to ...` in michibot's inventory
L217[08:28:01] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L218[08:30:03] <Forecaster> users will have individual inventories
L219[08:30:34] <AmandaC> Yeah, I'm saying that the %give there would give Tem ia one of the three tickets.
L220[08:30:54] <AmandaC> Leaving MichiBot with 2
L221[08:31:34] <Forecaster> items still wont have quantities though
L222[08:32:31] <Forecaster> that'd require changing a lot
L223[08:38:52] ⇨ Joins: Inari (Inari!~Pinkishu@p5DEC64EB.dip0.t-ipconnect.de)
L224[08:38:56] <Inari> Boop
L225[08:39:15] <Inari> AmandaC: ruru's witch?
L226[08:39:23] <Inari> MCPW?
L227[08:39:32] ⇨ Joins: AshIndigo_ (AshIndigo_!~ashindigo@79-67-163-198.dynamic.dsl.as9105.com)
L228[08:39:35] ⇦ Quits: AshIndigo (AshIndigo!~ashindigo@79-67-163-198.dynamic.dsl.as9105.com) (Ping timeout: 182 seconds)
L229[08:39:52] <AmandaC> Inari: Miryad Colours Phantom World
L230[08:40:16] <AmandaC> And the witch that turns Ruru into a human-sized person
L231[08:41:49] <Temia> Multiple arbitrary items would require a pretty robust text parsing system
L232[08:42:09] <Inari> Ah
L233[08:42:25] <Forecaster> well, I could just split at "and" and add each part as an individual item
L234[08:42:50] <Inari> Temia: You should watch Natsu no Arashi
L235[08:42:51] <Inari> :3
L236[08:42:55] <Forecaster> I think that'd be more detrimental than beneficial though
L237[08:43:50] <DerpiusDerp> hmm currently trying to use pngviewer and I keep getting "stdin :1: malformed number near 'filename'
L238[08:44:24] <Temia> It's altogether a bit much for a silly bot command
L239[08:44:34] <Temia> Inari: oh?
L240[08:44:57] <Inari> Its such a nice anime
L241[08:44:58] <Inari> :p
L242[08:45:18] <Temia> That's subjective. What's it about?
L243[08:45:54] <Inari> Hrmm
L244[08:46:11] <Inari> I'm bad with that kinda question :D It's about summer and time travel and usch, I guess?
L245[08:51:33] <Temia> Okay, what do you like about it? >.>
L246[08:52:19] <Inari> The general style and direction, the music, the characters :3 It has kind of a very japanese feel to it I guess?
L247[08:52:43] <Temia> I'll see about it
L248[08:58:15] <Inari> The artstyle might take an episode or two to get used to thouhg :P
L249[09:01:59] <DerpiusDerp> reeee
L250[09:02:26] <DerpiusDerp> Can't figure out this code
L251[09:02:28] <Forecaster> %loot
L252[09:02:28] <MichiBot> Forecaster: You get a loot box! It contains the bottom of a barrel.
L253[09:07:27] ⇦ Quits: Kasen (Kasen!~rakiru@hi.i.wanted.to.let.you.all.know.that.i.think.incest.is.wince.st) (Ping timeout: 198 seconds)
L254[09:08:14] <Inari> "What do you pair when you get the creator of School Rumble with the director of Puella Magi Madoka Magica and the Monogatari series?" heh
L255[09:09:39] <DerpiusDerp> a Twisted Highschool Magical Girl Series that spans for more then three years
L256[09:20:25] ⇨ Joins: Devis (Devis!~Devis@host-37-190-198-8.dynamic.mm.pl)
L257[09:20:58] <AmandaC> Inari: I love watching Riko's lie continue to snowball throughout the series
L258[09:23:21] ⇨ Joins: SkyMain (SkyMain!~SkyMain@host-37-190-198-8.dynamic.mm.pl)
L259[09:26:21] ⇦ Quits: Devis (Devis!~Devis@host-37-190-198-8.dynamic.mm.pl) (Ping timeout: 194 seconds)
L260[09:29:15] <Inari> DerpiusDerp: Nah, you get Natsu no Arashi :D
L261[09:29:19] <Inari> AmandaC: Hmm I don't ercall
L262[09:31:59] ⇦ Quits: SkyMain (SkyMain!~SkyMain@host-37-190-198-8.dynamic.mm.pl) (Ping timeout: 194 seconds)
L263[09:48:13] <DerpiusDerp> but-t-t Madoka Magica came after Natsu no Arashi
L264[09:50:52] <DerpiusDerp> hmmm so I have ctif-oc.lua on my ls but I can't figure out how to use it
L265[10:03:04] <Inari> DerpiusDerp: So? :P
L266[10:13:30] <DerpiusDerp> It just doesn't really make sense
L267[10:15:17] <Inari> It does
L268[10:15:26] <Inari> You get that if you take those two people :P When they've made which doesn't matter
L269[10:24:11] <DerpiusDerp> Oh well...
L270[10:32:31] <asie> @DerpiusDerp uh
L271[10:32:36] <asie> just put ctif-oc.lua from the ctif repo on your computer?
L272[10:32:42] <asie> you can use the internet card and the relevant disk for this
L273[10:32:53] <asie> CTIF is not bundled with OpenComputers, I mean, why would it? It's third-party...
L274[10:36:01] <DerpiusDerp> I mean like I have the ctif.oc-lua thing on the list of my computer, but I don't know how to exactly use it
L275[10:36:24] <DerpiusDerp> and when i attempt to use it, it either doesn't exist or gives me a error
L276[10:36:41] <asie> what error?
L277[10:36:43] <asie> o
L278[10:36:48] <asie> do you have Lua 5.3 configured as the CPU architecture
L279[10:36:51] <asie> shift-right-click the item to change it
L280[10:37:01] <asie> ctif-oc requires Lua 5.3 for reasons of me being too lazy to add 5.2 support... :<
L281[10:37:13] <DerpiusDerp> Yes I have Lua 5.3 on the CPU
L282[10:37:20] <asie> ... what error, then?
L283[10:41:08] <DerpiusDerp> stdin :1: syntax error near '\'
L284[10:42:48] <asie> uh?
L285[10:42:50] <asie> what?
L286[10:43:01] <asie> https://github.com/ChenThread/ctif/blob/master/viewers/ctif-oc.lua
L287[10:43:04] <asie> there's no \ on the first line here
L288[10:43:13] <asie> did you download it by wgetting this link and not the raw link? that would download the webpage and not the file
L289[10:43:21] <gamax92> are you trying to run commands in the lua shell?
L290[10:44:01] <DerpiusDerp> Already did
L291[10:44:19] <DerpiusDerp> Also yeah I was on the Lua shell
L292[10:44:40] <DerpiusDerp> I'm a noob when it comes to code and such
L293[10:51:46] <DerpiusDerp> Might as well Make a idiot's guide to ctif
L294[10:52:51] <Izaya> Step 1: Acceptance
L295[10:55:49] <Forecaster> Step 2: Profit
L296[10:55:50] <Forecaster> wait
L297[10:59:15] <Forecaster> oh, I could just run the script periodically I guess
L298[10:59:27] <Forecaster> or
L299[10:59:28] <Forecaster> hm
L300[10:59:41] <Forecaster> have something monitor the source dirs for changes
L301[11:12:06] ⇨ Joins: Cervator (Cervator!~Thunderbi@2601:4c1:4001:1d5d:ddc8:398c:dc7f:e61f)
L302[11:23:53] <DerpiusDerp> Y
L303[11:29:38] <Forecaster> K
L304[11:42:15] ⇨ Joins: Vexatos (Vexatos!~Vexatos@p200300C10717947331636E9E11E7C2D5.dip0.t-ipconnect.de)
L305[11:42:16] zsh sets mode: +v on Vexatos
L306[11:49:40] <DerpiusDerp> @asie what do i do after running wget ?
L307[11:50:56] <asie> DerpiusDerp: ctif-oc file.ctif
L308[11:54:03] <DerpiusDerp> hmm
L309[11:55:17] <DerpiusDerp> So ctif-oc does nothing (to my knowledge) and file.ctif gives me a file not found error
L310[11:56:08] <asie> No
L311[11:56:13] <asie> That's one command
L312[11:56:16] <asie> ctif-oc takes an argmuent
L313[11:56:19] <DerpiusDerp> crap misread that rip
L314[11:58:36] <DerpiusDerp> hmm
L315[11:59:21] <DerpiusDerp> is there anything else i should type or just ctif-oc file.ctif
L316[11:59:58] <asie> ctif-oc file.ctif
L317[12:00:03] <asie> if ctif-oc.lua is 0 bytes you downloaded it wrong again :/
L318[12:03:01] <DerpiusDerp> how do I delete files ?
L319[12:03:10] <asie> rm
L320[12:03:15] <asie> rm [file]
L321[12:03:47] <gamax92> fflush(fbrain);
L322[12:07:23] <DerpiusDerp> Mind i if i post a image link
L323[12:07:25] <DerpiusDerp> ?
L324[12:08:47] <DerpiusDerp> https://gyazo.com/c637748f17a6c729ccfb14013114f5a2
L325[12:13:24] <asie> edit ctif-oc.lua ,_ screenshot that
L326[12:13:39] <asie> that's still not the right file
L327[12:13:43] <asie> you want the raw ctif-oc.lua link
L328[12:13:45] <asie> not the webpage
L329[12:15:42] <DerpiusDerp> So this one
L330[12:15:44] <DerpiusDerp> https://raw.githubusercontent.com/ChenThread/ctif/master/viewers/ctif-oc.lua
L331[12:19:49] <asie> yes
L332[12:21:09] ⇨ Joins: erratic (erratic!~erratic@shells.yourstruly.sx)
L333[12:23:26] <DerpiusDerp> I'm assuming you want me to screenshot the entire logs ?
L334[12:26:37] <asie> what, is there another problem?
L335[12:26:39] <asie> if so yes
L336[12:32:59] <DerpiusDerp> oof here goes my pleb attemp at trying to log them http://tinyurl.com/y87t4k5a
L337[12:33:05] <DerpiusDerp> http://tinyurl.com/ybymvqf9
L338[12:33:08] <DerpiusDerp> http://tinyurl.com/y7ocfs8l
L339[12:33:10] <DerpiusDerp> http://tinyurl.com/yd7arlbq
L340[12:33:12] <DerpiusDerp> http://tinyurl.com/ya253uyw
L341[12:33:15] <DerpiusDerp> http://tinyurl.com/ybkcmjyu
L342[12:33:17] <DerpiusDerp> http://tinyurl.com/y9eq4gfv
L343[12:33:34] <DerpiusDerp> there's some overlap i think
L344[12:35:15] <DerpiusDerp> oh and here's the error in question https://gyazo.com/1fe11953fa215baad4fd4386335aada2
L345[12:35:26] <gamax92> I feel really dumb ... -Os is the slowest of the optimization group
L346[12:36:26] <gamax92> I went from this encoder taking 8 minutes to 1 minute
L347[12:45:43] <Inari> Um
L348[12:46:43] <Inari> Can't you just upload it or somehting :D Also why are you posting code now, I'm confused
L349[12:47:17] <Inari> %inv list
L350[12:47:17] <MichiBot> Inari: Here's my inventory: http://michibot.pc-logix.com/inventory
L351[12:48:27] <AmandaC> D: I said not to look!
L352[12:48:42] <AmandaC> Besides, don't you approve of the funeral I planned for you!?
L353[12:48:58] <AmandaC> I thought it'd be what you wanted! :P
L354[12:49:47] <Inari> Why would I want a funeral D:
L355[12:51:54] <Forecaster> to bury your enemies
L356[12:52:10] <Inari> Time to play the game of "Let's find something to watch for dinner". Probably will just be some Melth though
L357[12:56:57] <Wuerfel_21> %yt tanic the hedgehog episode 1
L358[12:56:58] <MichiBot> Wuerfel_21: https://www.youtube.com/watch?v=m1bBnpkDjNI - *TANIC THE HEDGEHOG: EPISODE 1 - YouTube*: "Aug 17, 2010 ... Just to make it clear, I didn't make this. I only reuploaded it after Petur took it down . This video was made somewhere between 2008-2009 and I ..."
L359[12:57:08] <Wuerfel_21> there you go, Inari
L360[12:58:56] <Inari> I'm realtively sure I don't want to watch that
L361[12:58:57] <Inari> :p
L362[13:00:20] <Inari> https://www.youtube.com/watch?v=mW4lhbnQIII&feature=em-uploademail That sounds good
L363[13:00:20] <MichiBot> Super Smash Bros. Melee LOST BITS | Unused Content & Debug Mode [TetraBitGaming] | length: 23m 14s | Likes: 3,312 Dislikes: 50 Views: 97,072 | by TetraBitGaming | Published On 7/7/2018
L364[13:05:43] <Wuerfel_21> cursed video: https://www.youtube.com/watch?v=x5Mpc6mj0gw
L365[13:05:43] <MichiBot> Letsunterhaltung Intro | length: 21s | Likes: 42 Dislikes: 296 Views: 6,860 | by letsUnterhaltung | Published On 8/11/2014
L366[13:08:25] <DerpiusDerp> @asie should i be worried about not knowing how to set a path to an env variable called IM4JAVA_TOOLPATH
L367[13:10:55] <Wuerfel_21> ~~yes~~
L368[13:23:54] <Izaya> man it's too bad I can't stick two monitors opposite each other
L369[13:24:35] <Wuerfel_21> why not?
L370[13:24:48] <vifino> I've decided that I want to revamp the already decent automation infrastructure in our hackerspace.
L371[13:24:58] <vifino> This time, no more WiFi.
L372[13:25:06] <vifino> Instead, full industrial CAN bus.
L373[13:25:25] <Izaya> Like, next to each other facing out.
L374[13:25:32] <vifino> UAVCAN, to be specific. Firmware updates over CAN bus~
L375[13:26:11] <Wuerfel_21> haha my local space's stuff is just random ESPs and RasPis
L376[13:26:14] <Izaya> 'cause if you do that you end up with networks connecting and monitors binding weirdly
L377[13:26:24] <Izaya> My 'local' space is 300km away :D
L378[13:27:13] <vifino> @Wuerfel_21 What part of Germany do you live in?
L379[13:27:25] <Wuerfel_21> Bavaria
L380[13:27:29] <vifino> Wanna visit Frankfurts space? ;)
L381[13:27:50] <Wuerfel_21> haha do i look like i have a way of getting there?
L382[13:27:59] <vifino> We got LEDs, a big chunk of that is thanks to me.
L383[13:28:19] <vifino> You look like text, so... yes?
L384[13:28:23] <Wuerfel_21> we have like, a strip of adressable LEDs hooked up to an ESP
L385[13:28:37] <Izaya> just stick em on a floppy disk
L386[13:28:42] <vifino> I sortakinda put more than 16k RGB leds in here..
L387[13:29:04] <Wuerfel_21> no i don't look like text. but i am unsure wether posting images of myself in google index irc channels is the best idea
L388[13:29:18] <Wuerfel_21> %s/index/indexed
L389[13:29:23] <Izaya> generally speaking
L390[13:29:30] <Izaya> posting pictures of yourself anywhere is bad
L391[13:29:34] <Izaya> you're in enough cameras already
L392[13:30:39] <vifino> Anyhow, CAN. My plan is like this: UAVCAN spec-compliant devices powered by STM32 things running NuttX, wired using CAN transceivers and 4-pin XLR cables.
L393[13:30:45] * Izaya says as he uses face tracking to control a space ship
L394[13:30:47] <Wuerfel_21> ~~but wat when u so qt u want to share?~~
L395[13:31:10] <Temia> if only.
L396[13:31:20] <vifino> Temia!
L397[13:31:31] <vifino> How are you? :D
L398[13:36:47] ⇨ Joins: bendu56 (bendu56!~bendu56@s43.location-minecraft.com)
L399[13:40:07] ⇦ Quits: bendu56 (bendu56!~bendu56@s43.location-minecraft.com) (Client Quit)
L400[13:49:25] <Inari> Hades 9 seems like an interesting sapce game (but still in dev)
L401[13:57:04] <Inari> %inv add a sour-toe cocktail
L402[13:57:04] * MichiBot summons 'a sour-toe cocktail' and adds to her inventory. I could get some good swings in with this.
L403[14:08:24] ⇨ Joins: istilldontknowwhattodo (istilldontknowwhattodo!~istilldon@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net)
L404[14:08:38] ⇦ Quits: istilldontknowwhattodo (istilldontknowwhattodo!~istilldon@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net) (Remote host closed the connection)
L405[14:09:07] ⇨ Joins: idontknow (idontknow!~idontknow@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net)
L406[14:09:14] <idontknow> hi
L407[14:09:17] <MGR> Hi
L408[14:09:32] <Inari> %pet AmandaC
L409[14:09:32] * MichiBot brushes AmandaC with an oinker. 6 health gained!
L410[14:09:39] <Inari> Whats an oinker
L411[14:09:50] <idontknow> where can i find some code for a drone eeprom?
L412[14:10:56] <Inari> Guess only @Wuerfel_21 would know what an oinker is
L413[14:11:31] <Wuerfel_21> lots of oinkers: https://cdn.discordapp.com/attachments/270008971891441674/465623699362676747/20180707_180757.jpg
L414[14:12:20] <Inari> Reminds me of the dango family
L415[14:12:41] <Inari> idontknow: I think theres the drone sorting stuff?
L416[14:13:04] <Inari> https://github.com/OpenPrograms/Sangar-Programs/blob/master/drone-sort.lua
L417[14:18:15] <Forecaster> it'd be interesting if I could make it so my 3 monitor setup plays sound so it seems to come from the monitor the source is on
L418[14:19:41] <Wuerfel_21> one'd think that to be difficult under linux, where desktop manager and audio subsystem have nothing to do with each other
L419[14:19:43] <Forecaster> so for example if a youtube video is playing on the left monitor the balance would be adjusted so it's weaker in the right channel
L420[14:19:54] <Forecaster> I don't linux
L421[14:19:59] <Forecaster> :P
L422[14:20:07] <Wuerfel_21> tfw you assume
L423[14:20:39] <Forecaster> it'd probably be very difficult to achieve globally either way
L424[14:20:40] <Wuerfel_21> in windows you have the problem of hardcoded shit though
L425[14:20:52] <Forecaster> you'd have to add support to specific programs
L426[14:20:58] <idontknow> how do i write the code to the eeprom?
L427[14:21:07] <Forecaster> flash
L428[14:21:24] <idontknow> do i write flash and then i can write the code?
L429[14:21:27] <Forecaster> it's a program that takes the contents of a file and writes it to an eeprom
L430[14:21:36] <Wuerfel_21> you could replace the directsound dlls i guess
L431[14:22:10] <Forecaster> ~oc flash
L432[14:22:11] <ocdoc> Predicted http://ocd.cil.li/component:leash
L433[14:22:16] <Forecaster> no D:<
L434[14:22:48] <gamax92> could put the man pages up on the wiki
L435[14:23:16] <idontknow> right i am gonna try that
L436[14:23:22] ⇦ Quits: idontknow (idontknow!~idontknow@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net) (Remote host closed the connection)
L437[14:24:00] ⇨ Joins: idontknow (idontknow!~idontknow@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net)
L438[14:24:10] <idontknow> it didnt work
L439[14:24:25] <Forecaster> what did you do
L440[14:24:54] <idontknow> wait a min
L441[14:25:08] <idontknow> what was the command to write the code?
L442[14:25:17] <Forecaster> flash is a program
L443[14:25:33] <Forecaster> just type that and it'll print the instructions on how to use it
L444[14:25:44] <idontknow> ook
L445[14:25:50] <idontknow> ima do that know
L446[14:25:53] ⇦ Quits: idontknow (idontknow!~idontknow@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net) (Remote host closed the connection)
L447[14:27:24] <gamax92> should probably point them to a web based irc client
L448[14:27:26] <gamax92> or discord
L449[14:28:06] ⇨ Joins: idontknow (idontknow!~idontknow@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net)
L450[14:28:31] <idontknow> when i type flash it gives me 3 options but they dont do anything
L451[14:29:03] <Forecaster> you have to tell us what you've tried.
L452[14:29:13] <Forecaster> we're not psychic
L453[14:30:20] ⇦ Quits: idontknow (idontknow!~idontknow@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net) (Remote host closed the connection)
L454[14:30:30] <Izaya> Not yet, anyway.
L455[14:31:06] ⇨ Joins: idontknow (idontknow!~idontknow@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net)
L456[14:32:59] <idontknow> when i type flash and it gives the 3 options do i click them or type and press enter????
L457[14:33:03] <DerpiusDerp> Still can't figure out what's causing home/ctif-oc.lua:74:
L458[14:33:16] <Forecaster> does clicking them do anything?
L459[14:33:43] <idontknow> no
L460[14:33:52] <idontknow> but is it supposed to?
L461[14:33:56] <Forecaster> no
L462[14:34:17] <idontknow> oh
L463[14:34:27] <Inari> DerpiusDerp: Does it not say anything else?
L464[14:35:26] <DerpiusDerp> attempt to index a nilvalue (local 'file'); slack traceback:
L465[14:36:35] <idontknow> so what option from the menu do i chose
L466[14:36:39] <DerpiusDerp> https://gyazo.com/1fe11953fa215baad4fd4386335aada2
L467[14:37:44] <Inari> DerpiusDerp: run ls and screenshot that
L468[14:37:59] <idontknow> i type ls?
L469[14:38:11] <Inari> Well, it isn't your name before that message
L470[14:38:12] <Inari> So, no
L471[14:38:44] <DerpiusDerp> https://gyazo.com/587c515efc3158dfcbfd19e7344db149
L472[14:39:09] <Inari> Well
L473[14:39:20] <Inari> clearly theres no file.ctif there :p
L474[14:40:15] <DerpiusDerp> how do i get file.ctif
L475[14:40:31] ⇦ Quits: idontknow (idontknow!~idontknow@cpc112521-pres22-2-0-cust28.18-3.cable.virginm.net) (Remote host closed the connection)
L476[14:40:37] <Inari> You're telling it to open/something file.ctif
L477[14:40:40] <Inari> But tehres no file.ctif
L478[14:42:04] <Inari> So... generally you'd hand it one of those ctif files that ls lists you are there
L479[14:42:50] <DerpiusDerp> Ok so i replace the file with one of the ctif files i have in ls
L480[14:43:05] <Inari> Well, yes
L481[14:43:22] <Inari> Programs work better when you give them an actaul file that exists to open
L482[14:43:47] <Inari> Just like if I put you infront of a table with 3 cylinders and tell you to open the box, you'll have nothing to do :P
L483[14:44:19] <Forecaster> psh, my programs accept imaginary files all the time, and like it. or else D:<
L484[14:44:40] <Inari> Psh
L485[14:44:48] <Inari> My programs know what file I do want
L486[14:45:02] * Izaya places Inari in front of a screen
L487[14:45:13] <Izaya> You have opinions, complain about this https://safebooru.org//samples/1174/sample_e2e201b00c1bc8e605f11fb308a07915c16ff4aa.jpg
L488[14:46:05] <MGR> Is that.... a personified AMD?
L489[14:46:19] <Izaya> No.
L490[14:46:29] <Izaya> Not sufficiently red for that.
L491[14:46:39] <MGR> Huh
L492[14:46:49] <MGR> Was thrown off by the AMD name and logo
L493[14:47:06] <Izaya> there's these though https://safebooru.org//images/2374/9f06a69853364cd78b18b5e4a942155d775c3cb4.png https://safebooru.org//images/2374/6708166cab828ef46b2162df70aeebc30330961e.png
L494[14:47:23] <Izaya> complete with team colours
L495[14:47:56] <MGR> ?
L496[14:48:06] <DerpiusDerp> What does it mean by Unsupported character with
L497[14:48:22] <DerpiusDerp> width
L498[14:48:26] <Izaya> [01F014]
L499[14:51:37] <gamax92> DerpiusDerp: please do not truncate error messages, there are two numbers after that "Unsupported character width: " and those are important too
L500[14:52:04] <gamax92> there's also a file name and line number before that, equally important
L501[14:53:44] <Inari> Izaya: Hm, not sure, looks a bit plasticy?
L502[14:54:31] <Inari> https://twitter.com/Lunaa/status/1015827589418627072
L503[14:54:32] <MichiBot> Sun Jul 08 00:19:05 CDT 2018 @Lunaa: .@peta https://t.co/6UeMXYiAcY
L504[14:54:54] <DerpiusDerp> gaamx92: Unsupported character width: 50x0
L505[14:54:59] <DerpiusDerp> *gamax
L506[14:55:28] <gamax92> Izaya: is AMD's logo supposed to be green or red, cause I've seen both before
L507[14:55:49] <DerpiusDerp> hmm when I do get it to work it's just a blob of pink yellow and blueish purple
L508[14:55:50] <Izaya> that is true, I have an Athlon 64 box here and it's green
L509[14:55:56] <Izaya> but team colours are red now
L510[14:56:38] <gamax92> novidya
L511[14:58:02] <Izaya> novideo
L512[15:05:24] <DerpiusDerp> hmmm
L513[15:05:48] <asie> DerpiusDerp: "50x0"?
L514[15:05:50] <asie> you're sending a corrupted file
L515[15:06:24] <DerpiusDerp> I'm starting to believe the files that I have are corrupted
L516[15:06:38] <DerpiusDerp> Because they either end in error or mess
L517[15:07:39] <DerpiusDerp> asie: Do i need imagemagick ?
L518[15:08:18] <DerpiusDerp> and if so how do path to an env variable called IM4JAVA_TOOLPATH
L519[15:08:29] <DerpiusDerp> *to do
L520[15:09:00] <gamax92> I like dog
L521[15:11:54] <asie> just tweak ctif settings
L522[15:11:55] <asie> DerpiusDerp: no
L523[15:12:08] <asie> gamax92: just tweak ctif setting, set --dither-mode to ordered and --dither-type to say 4x4
L524[15:12:15] <asie> and --dither-level to say 0.8
L525[15:17:22] ⇨ Joins: Johannes13 (Johannes13!~Johannes1@dslb-188-099-000-247.188.099.pools.vodafone-ip.de)
L526[15:21:47] <gamax92> I suppose, I'm not really doing much with ctif myself atm
L527[15:22:30] <gamax92> writing a crappy encoder that draws a rectangle per frame, black/white
L528[15:22:36] <gamax92> and sometimes circles
L529[15:30:07] <DerpiusDerp> So how do i create uncorrupted files ?
L530[15:30:07] <gamax92> circles were kinda hacked on as an after thought, if y2 < y1 then interpret x1, y1, x2, y2 as x, y, c, 0
L531[15:30:28] <gamax92> which means that a circle can never be drawn at y=0 or the check would treat it as a rectangle
L532[15:38:04] <DerpiusDerp> asie how do ctif files since the conveter i was using doesn't work
L533[15:38:11] <asie> DerpiusDerp: how do you get the file into the computer
L534[15:38:21] <asie> you've had lots of issues with that before so i'd suspect that part first
L535[15:38:48] <DerpiusDerp> I used wget in combo with https://cax.no/conv/index.html
L536[15:38:58] <asie> That should work fine?
L537[15:39:15] <asie> I wonder what version of CTIF that page uses.
L538[15:39:28] <DerpiusDerp> Don't know
L539[15:40:08] <DerpiusDerp> Assuming not recent since, It gives me a Monster or a error of some sort
L540[15:40:22] <asie> i think they're compatible though?
L541[15:40:35] <asie> Maybe the page itself is broken
L542[15:40:43] <asie> Should have used the JAR, as i said, you don't need imagemagick or anything
L543[15:41:05] <DerpiusDerp> I don't know how to use the jar though...
L544[15:41:20] <DerpiusDerp> Do i just click with java
L545[15:42:28] <asie> No.
L546[15:42:30] <asie> Command line.
L547[15:42:58] <asie> Sorry I can't be more step-by-step, I'm busy hanging out with friends and I'm leaving tomorrow so...
L548[15:43:16] <DerpiusDerp> It's fine, Any help i can get will help
L549[15:46:11] <DerpiusDerp> I'm assuming I replace the image and preview with the name of the picture
L550[15:47:13] <Temia> Salmiaaaak
L551[15:47:17] * Temia bliss~
L552[15:54:23] <DerpiusDerp> hmmm
L553[15:55:05] <DerpiusDerp> It keeps saying Error: Unable to access jarfile CTIFConverter.jar
L554[15:55:16] <asie> ? ? ?
L555[15:56:43] * gamax92 pets Temia with a brush
L556[15:57:51] * Temia tailswishes happily~ =u=
L557[15:58:03] * Temia double bliss~
L558[16:01:32] <DerpiusDerp> https://gyazo.com/45809862334a005f633cbe9ff78a5900
L559[16:02:08] <Izaya> I assume you didn't put the converter in system32
L560[16:03:54] <DerpiusDerp> Can't tell if troll or not
L561[16:04:01] <gamax92> not a troll
L562[16:04:12] <DerpiusDerp> But my Converter is in my downloads folder
L563[16:04:22] <Izaya> But you're in the system32 folder.
L564[16:04:28] <gamax92> it's very unlikely that you downloaded CTIFConverter.jar into System32, so you should probably run cmd from the Downloads folder or CD into the Downloads folder
L565[16:08:19] <DerpiusDerp> How would i do taht
L566[16:08:21] <DerpiusDerp> *that
L567[16:17:51] <freacknate09> Thank you guys for the help last night with my program
L568[16:21:45] <Izaya> DerpiusDerp: 'cd c:\users\username\Downloads'
L569[16:23:11] <DerpiusDerp> Ok i think my CTIF Converter is corrupted because i still get thte same error
L570[16:28:05] <Izaya> I suspect it's more of a PEBKAC problem
L571[16:28:20] <Izaya> If it's giving you that error, you're not trying to run it from the right place
L572[16:32:51] <DerpiusDerp> "Error: Could not find or load main class C:\Users\apple\Downloads\CTIFConverter-0.2.2.jar"
L573[16:33:22] <DerpiusDerp> When i do try to use Java to open it, it says it can't find it
L574[16:34:06] ⇦ Quits: Keridos (Keridos!~Keridos@static.56.72.76.144.clients.your-server.de) (Quit: ZNC - http://znc.in)
L575[16:34:39] ⇨ Joins: Keridos (Keridos!~Keridos@static.56.72.76.144.clients.your-server.de)
L576[17:03:01] <Forecaster> https://xkcd.com/2015/
L577[17:03:02] <MichiBot> XKCD Comic Name: New Phone Thread Posted on: 7/4/2018
L578[17:22:12] <Forecaster> also https://loadingartist.com/comic/cats-and-dots/
L579[17:22:50] ⇦ Quits: erratic (erratic!~erratic@shells.yourstruly.sx) (Ping timeout: 182 seconds)
L580[17:34:46] <Forecaster> @Vexatos https://www.smbc-comics.com/comic/noun
L581[17:36:07] <Vexatos> yes
L582[17:37:59] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L583[17:38:22] <Forecaster> bloody murder!
L584[17:49:46] <Vexatos> MURDER!
L585[17:49:54] <Vexatos> MUUUUUUUURRRRRRRRRRRDEEEEEEEERRRRRRRRRRRRRRRRRR
L586[18:02:13] <Inari> payonel: https://www.facebook.com/thevitalist9/videos/1718486611603523/
L587[18:02:22] <Inari> %tell AmandaC https://www.facebook.com/thevitalist9/videos/1718486611603523/
L588[18:02:22] <MichiBot> Inari: AmandaC will be notified of this message when next seen.
L589[18:08:25] <freacknate09> I think lua may not like me.
L590[18:11:11] <freacknate09> My program I made last night is not working today
L591[18:11:37] <AmandaC> Inari: it's hard being a cat detective in modern Tokyo
L592[18:11:50] <AmandaC> Ren
L593[18:11:56] <AmandaC> Er. Ww
L594[18:11:57] <Inari> Oh, you're here, odd
L595[18:12:01] <Inari> Autocomplete didn't want to work
L596[18:12:02] <Inari> :p
L597[18:12:09] <AmandaC> Haha
L598[18:14:55] ⇦ Quits: ba7888b72413a16a (ba7888b72413a16a!~ba7888b72@66.109.211.167) (Quit: WeeChat 2.1)
L599[18:15:08] ⇨ Joins: beesnees2 (beesnees2!~ba7888b72@66.109.211.167)
L600[18:26:50] ⇨ Joins: Bear_Paaw (Bear_Paaw!~Bear_Paaw@173-25-19-105.client.mchsi.com)
L601[18:28:44] ⇦ Quits: Bear_Paaw (Bear_Paaw!~Bear_Paaw@173-25-19-105.client.mchsi.com) (Client Quit)
L602[18:40:50] ⇨ Joins: Nomoplantation4me (Nomoplantation4me!~user@46.166.142.221)
L603[18:45:32] <Nomoplantation4me> Friendly reminder that it was jews who kickstarted the slave trade in the US and made it flourish over time due to their use of slave labor.
L604[18:45:35] <Nomoplantation4me> Also important to remember that redpilling the Blacks is paramount to destroy jewish supremacism in the West ASAP, and that Blacks and other minorities are the best vessels to bring the redpill on jewish supremacism to gaslit progressives.
L605[18:45:39] <Nomoplantation4me> Also worthy of note is the subversive and treasonous way in which jewish supremacists have used Hollywood (which is controlled by jews) to pin slavery in the US on Whites, and the way jewish supremacists have dominated and exploited the Black Civil Rights Movement for their own selfish and subversive ends.
L606[18:45:43] <Nomoplantation4me> Proof of those claims here:
L607[18:45:45] <Nomoplantation4me> archive.is/7Oi5H
L608[18:45:46] <CompanionCube> ....er
L609[18:45:47] <Nomoplantation4me> archive.is/fQR6T
L610[18:45:48] <CompanionCube> admins?
L611[18:45:49] <Nomoplantation4me> archive.is/Gd8sA
L612[18:45:49] <CompanionCube> mods.
L613[18:45:51] <Nomoplantation4me> archive.is/vb4cW
L614[18:45:53] <Nomoplantation4me> archive.is/7lkKC
L615[18:45:55] <Nomoplantation4me> And before anyone tries to accuse me of “anti-semitism”, remember this: stating fully sourced verifiable FACTS is not anti-semitic, and if you think this is about hate, remember that TRUTH always sounds like hate to those that hate the TRUTH.
L616[18:45:56] <CompanionCube> Mimiru:
L617[18:46:03] <Nomoplantation4me> https://www.youtube.com/watch?v=D0kWAqZxJVE
L618[18:46:04] <Nomoplantation4me> Former Israeli Minister Shulamit Aloni says it herself in this video:"Anti-semitic", "its a trick we always use it".
L619[18:46:06] <Nomoplantation4me> And if you want to know the truth about the EU being a jewish-supremacist project that seeks to genocide all non-jewish races via miscegenation, study this fully sourced graph here: http://archive.is/vuttg
L620[18:46:09] <Nomoplantation4me> And if you want to know even more after you verify my factual claims, read this book called “When Victims Rule”, which consists of 2000 pages of fully sourced research on jewish supremacism, only available online here: http://archive.is/uHFnj
L621[18:46:09] <Kleadron> @Mimiru
L622[18:46:42] <Inari> I forget if Vexatos has bot rights :P
L623[18:47:01] <Kleadron> well then
L624[18:47:08] <Kleadron> uh
L625[18:47:19] <Kleadron> how about we purge the chat with something else
L626[18:47:41] <Kleadron> hmm
L627[18:48:08] ⇦ Quits: Inari (Inari!~Pinkishu@p5DEC64EB.dip0.t-ipconnect.de) (Quit: 'I own several hundred tentacles of various hues, I probably speak with them!')
L628[18:49:49] <Nomoplantation4me> It's fully sourced verifiable information. Why do some people hate the truth?
L629[18:50:06] <Nomoplantation4me> Have they no interest in people knowing the truth so we can have a better society?
L630[18:50:18] <Nomoplantation4me> Truth only sounds like hate to those that hate the truth.
L631[18:50:25] <CompanionCube> thabjs
L632[18:50:30] *** Nomoplantation4me was kicked by Mimiru (Nomoplantation4me))
L633[18:50:30] <Izaya> This is some new spam.
L634[18:50:39] <Mimiru> I just got home... sorry
L635[18:54:25] <MGR> That is new ?
L636[19:09:33] <gamax92> I just lost power
L637[19:13:22] <vifino> :(
L638[19:18:06] <Kleadron> Nomoplantation4me confirmed spambot
L639[19:20:13] <MGR> Figured as much
L640[19:20:22] <MGR> He never actually responded
L641[19:28:18] ⇦ Quits: Vexatos (Vexatos!~Vexatos@p200300C10717947331636E9E11E7C2D5.dip0.t-ipconnect.de) (Quit: Insert quantum chemistry joke here)
L642[19:35:51] <DerpiusDerp> So apparently I'm a idiot and didn't put the full name of the application
L643[19:42:20] ⇨ Joins: Lexxic (Lexxic!webchat@c-73-145-5-157.hsd1.mi.comcast.net)
L644[19:43:03] <Lexxic> Hey, does OpenComputers still support Project Red?
L645[19:46:00] <gamax92> whee power back on
L646[19:56:21] <Lexxic> hmm yeah I don't think setBundledOutput() is working w/ Project Red's bundled cable(sorry if this is already a known thing)
L647[20:08:51] <AmandaC> %choose Mars or Mars or medechi
L648[20:08:51] <MichiBot> AmandaC: Mars
L649[20:17:51] ⇨ Joins: Johannes13_ (Johannes13_!~Johannes1@ipservice-092-217-038-251.092.217.pools.vodafone-ip.de)
L650[20:20:28] ⇦ Quits: Johannes13 (Johannes13!~Johannes1@dslb-188-099-000-247.188.099.pools.vodafone-ip.de) (Ping timeout: 194 seconds)
L651[20:23:57] <Mimiru> Lexxic, 1.12?
L652[20:24:09] <Lexxic> ja
L653[20:24:14] <Mimiru> Broken IIRC
L654[20:24:17] <Lexxic> Oh, ok
L655[20:24:33] <Lexxic> might try and figure out some workaround then
L656[20:24:38] <Lexxic> Thanks!
L657[20:24:55] <Mimiru> Np, but yeah not an intentional change, as far as I know
L658[20:33:02] ⇦ Quits: jazzpi (jazzpi!~jazzpi@2a03:4000:6:20f::2) (Quit: ZNC - http://znc.in)
L659[20:34:23] ⇨ Joins: jazzpi (jazzpi!~jazzpi@jazzpis.space)
L660[20:44:55] <AmandaC> Man, I forgot how salty the colonists are in red faction when you "commender" their cars
L661[20:45:31] <AmandaC> "really marsdon, again?" Says one person "you going to blow this one up too?" Another
L662[20:46:29] <AmandaC> Then again, that might be a function of the fact I keep accidentally killing Innocents because I can't make out the difference of the outfits that well
L663[20:47:06] <AmandaC> S/marsdon/Mason/
L664[20:48:43] <AmandaC> Anyway, going to sleep. Hopefully my body remembers how to regulate heat while I sleep, and I won't be freezing while covered in sweat anymore. Night nerds
L665[20:58:25] ⇨ Joins: Webchat_12814 (Webchat_12814!webchat@cpe-123-211-85-19.bpbb-r-034.cha.qld.bigpond.net.au)
L666[20:59:15] ⇦ Quits: Johannes13_ (Johannes13_!~Johannes1@ipservice-092-217-038-251.092.217.pools.vodafone-ip.de) (Ping timeout: 194 seconds)
L667[21:03:05] ⇦ Quits: Lexxic (Lexxic!webchat@c-73-145-5-157.hsd1.mi.comcast.net) (Quit: webchat.esper.net)
L668[21:05:05] ⇦ Quits: Webchat_12814 (Webchat_12814!webchat@cpe-123-211-85-19.bpbb-r-034.cha.qld.bigpond.net.au) (Quit: webchat.esper.net)
L669[21:45:54] <DerpiusDerp> feelsbadman
L670[21:45:56] <DerpiusDerp> https://gyazo.com/5bdd46afa03b86e8997bec44ce8748fc
L671[22:06:54] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L672[22:17:21] ⇦ Quits: Cervator (Cervator!~Thunderbi@2601:4c1:4001:1d5d:ddc8:398c:dc7f:e61f) (Remote host closed the connection)
L673[22:19:01] ⇦ Quits: DerpiusDerp (DerpiusDerp!~DerpiusDe@c-73-164-66-213.hsd1.mn.comcast.net) (Remote host closed the connection)
L674[22:19:51] ⇨ Joins: DerpiusDerp (DerpiusDerp!~DerpiusDe@c-73-164-66-213.hsd1.mn.comcast.net)
L675[22:26:03] ⇦ Quits: DerpiusDerp (DerpiusDerp!~DerpiusDe@c-73-164-66-213.hsd1.mn.comcast.net) (Ping timeout: 198 seconds)
L676[22:29:50] ⇨ Joins: Doty1154 (Doty1154!~Doty1154@c-73-189-164-179.hsd1.ca.comcast.net)
L677[22:33:31] ⇨ Joins: tyler (tyler!~tyler@c-73-137-104-129.hsd1.ga.comcast.net)
L678[22:33:38] <tyler> hi
L679[22:34:38] ⇦ Quits: tyler (tyler!~tyler@c-73-137-104-129.hsd1.ga.comcast.net) (Client Quit)
<<Prev Next>> Scroll to Top