<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:12:24] ⇦
Quits: Vexaton (~Vexatos@port-92-192-13-96.dynamic.as20676.net)
(Quit: Insert quantum chemistry joke here)
L2[00:26:37] ⇦
Quits: Herobrine (~1@47.199.247.86) (Remote host closed the
connection)
L3[00:26:54] ⇨
Joins: Herobrine (~1@47.199.247.86)
L4[00:36:34] <Izaya> upside
L5[00:36:37] <Izaya> my wonky shuttle
works
L6[00:36:53] <Izaya> downside, it only just
has enough ion thrust to get out of the gravity well with zero
cargo
L7[00:36:59] <Izaya> guess I'll slap more
thrusters on it
L8[00:39:44] <Izaya> ah wonderful
L9[00:39:59] <Izaya> game froze on the
descent and by the time it unfroze the only thing left of the
shuttle was the cockpit
L10[00:42:30] <Izaya> time for a reboot I
think
L11[00:46:56]
<AdorableCatgirl> i have a shack on
triton
L12[00:47:05]
<AdorableCatgirl> my goal is to have a
comsat network around triton
L14[00:49:40] <Izaya> that + octal input +
LCD output and I'd have a semi-workable interactive system
L15[00:50:38]
<AdorableCatgirl> how small of a lua
implementation can we get
L16[00:51:00] <Izaya> is there any data
storage block in spengies
L17[00:51:09]
<AdorableCatgirl> the block itself
L18[00:51:17]
<AdorableCatgirl> also think the enemy
team is wallhacking lmao
L19[00:51:20]
<AdorableCatgirl> in cs
L20[00:51:27] <Izaya> you recompile and all
your stuff is gone
L21[00:51:28] <Izaya> >.>
L22[00:51:35] <Izaya> I guess you can use
the custom data but that's icky
L23[00:54:16]
<AdorableCatgirl> ah yes
L24[00:54:20]
<AdorableCatgirl> the running AK
headshot
L25[00:54:25]
<AdorableCatgirl> a classic csgo
move
L26[00:54:31]
<AdorableCatgirl> that and the running
deagle headshot
L27[00:55:01]
<Kristopher38> Izaya: the intended way to
do it is custom data, really
L28[00:55:25] <Izaya> I hate that tbh
L29[00:55:29] <Izaya> it's just a
string
L30[00:55:35] <Izaya> an arbitrary length
string
L31[00:58:47]
<AdorableCatgirl> god i'm fuckin
pissed
L32[00:58:52]
<AdorableCatgirl> bullets just phased out
of reality
L33[00:59:27]
<AdorableCatgirl> alright i'm done with CS
for today
L34[00:59:32]
<AdorableCatgirl> time to see how to make
spengies plugins
L36[01:22:16]
<ThePiGuy24> no
L37[01:29:15] ⇦
Quits: Kostik (webchat@87.117.56.49) (Quit:
webchat.esper.net)
L38[01:35:48] ⇦
Quits: flappy (~flappy@mobile-access-567376-214.dhcp.inet.fi) (Ping
timeout: 189 seconds)
L39[01:44:40]
<BrianH>
Hm, is there an easy way to tell if a table has keys?
L40[01:44:51]
<Ocawesome101> `if table[key] then ...
end`
L41[01:44:55]
<BrianH>
No...
L42[01:45:08]
<Ocawesome101> what are you trying to do
then
L43[01:45:10]
<BrianH>
Not what I asked as much as it sounds like it 😄
L44[01:45:23]
<Kristopher38> clarify your question
then
L45[01:45:24]
<BrianH>
I'm trying to figure out a way to detect if a table is a keyed
table or not
L46[01:45:46] <Izaya> purely numerical vs
arbitrary keys?
L47[01:45:55]
<BrianH>
correct
L48[01:46:02] <Izaya> count pairs() vs
ipairs()
L49[01:46:23]
<Kristopher38> I was about to suggest just
this but I was concerned about performance
L50[01:46:28] <Amanda> %choose waves or
radiation
L51[01:46:28] <MichiBot> Amanda: I'm 40%
"radiation"!
L52[01:46:35]
<Ocawesome101> count pairs() vs #
L53[01:46:46] <Izaya> oh that's a good
point
L54[01:48:20]
<BrianH>
Yeah # could work, It appears that if a table has any arbitrary
keys, even if you give it numerical keys with arbitrary keys, the
size of table t is always 0
L55[01:48:23]
<BrianH>
good
L56[01:48:38] <Izaya> I think ipairs and #
are basically the same thing
L57[01:48:42] <Izaya> but I don't actually
know
L58[01:48:58]
<Ocawesome101> # is a lot faster since no
function call
L59[01:48:58]
<BrianH>
ipairs returns an iterator though
L60[01:49:00] <Izaya> like, I think #
returns a count using ipairs, but I'm not sure why I think
that
L61[01:49:02]
<Ocawesome101> and no iteration
L62[01:49:11] <Izaya> oh, there you
go
L63[01:49:13] <Izaya> carry on them
L64[01:49:14]
<Ocawesome101> i don't think it does - but
ask kris, he'd know
L65[01:50:04]
<BrianH>
]
L66[01:50:34]
<BrianH>
Now to determine if I should autotectect it or if I should store
them as different datatypes...
L67[01:50:43]
<BrianH> I
think I should just store them as the same
L69[01:52:50]
<Kristopher38> good explanation on what
happens exactly behind the scenes
L70[01:53:22]
<Kristopher38> so no, # does not return
count by using ipairs() iteration
L71[01:54:07]
<Kristopher38> (funfact - I know the guy
that answered, the world really is small)
L72[01:55:14]
<Kristopher38> also why am I assumed to
know such things? D:
L73[01:55:46]
<BrianH> I
am goin to cheat
L74[01:56:03]
<BrianH> so
I will store the type of table as two separate types
L75[01:56:10]
<BrianH>
but I will handle them as the same
L76[01:56:38]
<BrianH>
That way I know what I want the end result to be by the type number
with the table
L77[01:56:40]
<BrianH>
but that's it
L78[01:56:54]
<BrianH>
(reduces duplicate code)
L79[02:08:04]
<Bramble>
How do i power a computer?
L80[02:08:26]
<Ocawesome101> With generators
L81[02:08:29]
<Ocawesome101> Or maybe sheep
L82[02:08:50]
<Bramble>
Do i need a separate mod?
L83[02:08:59]
<Ocawesome101> No
L84[02:09:09]
<Ocawesome101> I’d recommend one for
survival tho
L85[02:09:21]
<Ocawesome101> Simple Generators is
good
L86[02:09:22]
<Bramble>
what mod would you use
L87[02:09:24]
<Bramble>
ok
L88[02:10:05]
<Bramble>
How would you do it just with the base mod
L89[02:10:17] <Elfi> %choose Stay on Safina
or go to SPAAAAAACE
L90[02:10:17] <MichiBot> Elfi: Wait, what
was the question again? Uhh... "go to SPAAAAAACE"?
L91[02:11:03]
<Ocawesome101> Sheep on top of carpeted
capacitors
L92[02:11:30]
<Ocawesome101> You’d need several for a T3
computer
L93[02:11:50]
<Bramble>
ok
L94[02:12:50]
<Ocawesome101> With cables running from
the capacitors to all components, obvs
L95[02:13:08]
<Bramble>
ok
L96[02:20:16]
<ThePiGuy24> or just disable the power
requirement in the config
L97[02:20:45]
<Bramble>
ok
L98[02:23:36] ⇦
Quits: ben_mkiv|afk (~ben_mkiv@i59F67828.versanet.de) (Quit:
Leaving)
L99[02:25:48]
<Bramble>
where would i find this setting
L100[02:39:49]
<DaComputerNerd> oh lovely apparently
downgrading the mod from 1.7.5.212 to 1.7.5.209 corrupted the
world
L101[03:35:04]
⇨ Joins: Ocawesome101 (~ocawesome@38.65.248.143)
L102[03:58:13] <Amanda> %remindme 30m
jump
L103[03:58:13] <MichiBot> I'll remind you
about "jump" at 08/11/2020 08:28:13 PM
L104[04:27:26]
⇨ Joins: ocawesome (~ocawesome@38.65.249.225)
L105[04:28:13] <MichiBot> Amanda REMINDER:
jump
L106[04:28:49] ⇦
Quits: Ocawesome101 (~ocawesome@38.65.248.143) (Killed (NickServ
(GHOST command used by
ocawesome!~ocawesome@38.65.249.225)))
L107[04:28:55] ***
ocawesome is now known as ocawesome101
L108[04:28:59] ***
ocawesome101 is now known as Ocawesome101
L109[04:35:22]
⇨ Joins: immibis_
(~immibis@x4e36b131.dyn.telefonica.de)
L110[04:36:17] ⇦
Quits: immibis (~immibis@x4e371af9.dyn.telefonica.de) (Ping
timeout: 189 seconds)
L111[04:36:18] ***
immibis_ is now known as immibis
L113[04:51:24] <Ocawesome101> lmao
L114[04:51:28] <Ocawesome101> also hi
saghetti
L115[05:05:04] ⇦
Quits: Ocawesome101 (~ocawesome@38.65.249.225) (Quit: I'm probably
going to bed.)
L116[05:12:25]
<Saghetti>
i dont exist anymore
L117[05:12:26]
<Saghetti>
bye again
L118[05:35:12]
⇨ Joins: Backslash
(~Backslash@d75-156-174-114.abhsia.telus.net)
L120[06:21:10] <MichiBot> Ariri: Inari
will be notified of this message when next seen.
L121[06:37:21] ⇦
Quits: Backslash (~Backslash@d75-156-174-114.abhsia.telus.net)
(Read error: Connection reset by peer)
L122[07:30:22] ⇦
Quits: Thutmose (~Patrick@host-69-59-79-181.nctv.com) (Quit:
Leaving.)
L123[08:00:49]
⇨ Joins: Inari
(~Pinkishu@p4fe7ee02.dip0.t-ipconnect.de)
L125[08:33:35] <Inari> @Ariri haha, it was
a nice movie
L126[08:56:18]
⇨ Joins: Vexatos
(~Vexatos@port-92-192-13-96.dynamic.as20676.net)
L127[08:56:18]
zsh sets mode: +v on Vexatos
L128[10:25:41] <Lizzy> %tonkout
L129[10:25:42] <MichiBot> Sard! Lizzy!
You beat simon816's previous record of 10 hours, 1 minute and 1
second (By 2 hours, 19 minutes and 11 seconds)! I hope you're
happy!
L130[10:25:43] <MichiBot> Lizzy has
stolen the tonkout! Tonk has been reset! They gained 0.012 tonk
points! plus 0.011 bonus points for consecutive hours! (Reduced to
50% because stealing) Current score: 1.02094. Position #3 Need
0.02672584 more points to pass SquidDev!
L131[11:52:41] <SquidDev> %tonk
L132[11:52:41] <MichiBot> Zounderkite!
SquidDev! You beat Lizzy's previous record of <0 (By 1 hour,
26 minutes and 59 seconds)! I hope you're happy!
L133[11:52:42] <MichiBot> SquidDev's new
record is 1 hour, 26 minutes and 59 seconds! SquidDev also gained
0.00145 tonk points for stealing the tonk. Position #2. Need
0.04435 more points to pass Forecaster!
L134[11:54:21] <Skye> ~markov Lizzy
L135[11:54:23] <Skye> wait
L136[11:54:26] <Skye> is that bot
broken
L137[11:55:53] <Lizzy> ~oc test
L138[11:56:02] *
Lizzy baps ocdoc
L139[11:56:57] ⇦
Quits: ocdoc (~ocdoc@ip160.ip-192-99-104.net) (Ping timeout: 204
seconds)
L140[11:59:54] <Lizzy> rip
L141[12:52:55]
⇨ Joins: ben_mkiv
(~ben_mkiv@i59F67828.versanet.de)
L142[13:07:49]
<Kristopher38> I can't seem to generate
tablet_use events
L143[13:07:58]
⇨ Joins: Vexaton
(~Vexatos@port-92-192-100-157.dynamic.as20676.net)
L144[13:07:58]
zsh sets mode: +v on Vexaton
L145[13:07:58]
<Kristopher38> I've got analyzer installed
in a tablet
L146[13:08:46]
<Kristopher38> Amanda: any idea what the
issue might be since you're the one who contributed this?
L148[13:10:01]
<Kristopher38> I'm trying to scan an OC
component though
L149[13:10:32] ⇦
Quits: Vexatos (~Vexatos@port-92-192-13-96.dynamic.as20676.net)
(Ping timeout: 189 seconds)
L150[13:11:04]
<Kristopher38> Isn't the commit message
related to scanning things that won't return anything when analyzer
is used on them?
L151[13:13:58]
<Kristopher38> (also to be clear, I'm on
the latest dev build, so that commit
is in my mod
version)
L152[13:15:12]
<Kristopher38> neither right nor left
click works
L154[13:21:39] <fingercomp> hold the RMB
until your hear a beep
L155[13:21:46] <fingercomp> just clicking
won't fire an event
L156[13:22:06]
<Kristopher38> OOH
L157[13:22:13] ⇦
Quits: bauen1 (~bauen1@ipbcc03d1e.dynamic.kabel-deutschland.de)
(Quit: Lost terminal)
L158[13:22:14]
<Kristopher38> that wasn't clarified
anywhere
L159[13:22:23]
⇨ Joins: bauen1
(~bauen1@ipbcc03d1e.dynamic.kabel-deutschland.de)
L160[13:22:49]
<Kristopher38> lemme test that
L161[13:23:56] <fingercomp> I'm quite sure
the manual includes this information
L162[13:24:15] <fingercomp> I remember
translating it into Russian a couple of years ago
L163[13:26:23]
<Kristopher38> it works, thanks a
lot
L164[13:26:56]
<Kristopher38> the changelog includes a
note `When clicking on a block with a tablet containing this
upgrade, the tablet_use event will contain information the Analyzer
would normally reveal.`
L166[14:33:35]
⇨ Joins: t20kdc
(~20kdc@cpc139340-aztw33-2-0-cust225.18-1.cable.virginm.net)
L167[15:06:20]
⇨ Joins: flappy
(~flappy@88-113-149-197.elisa-laajakaista.fi)
L168[15:25:41]
<Ariri>
%tonk
L169[15:25:42] <MichiBot> Waesucks!
Ariri! You beat SquidDev's previous record of 1 hour, 26 minutes
and 59 seconds (By 2 hours and 6 minutes)! I hope you're
happy!
L170[15:25:43] <MichiBot> Ariri's new
record is 3 hours and 33 minutes! Ariri also gained 0.0042 (0.0021
x 2) tonk points for stealing the tonk. Position #11. Need 0.06548
more points to pass DaComputerNerd!
L171[15:51:56] <Izaya> it amuses me that
the Defiant's bridge is in the middle under the circle part
L172[15:53:44]
<Ariri> The
uss defiant?
L173[15:54:49] <Izaya> yeah
L174[15:55:02] <Izaya> I mean it's pretty
typical design and it makes a lot of sense, but it's still kinda
funny
L175[15:56:02] <Izaya> It has the whole
nose part at the front then the bridge isn't even there
y'know?
L176[15:56:29]
<MGR> You
would want the bridge in the most protected part of the ship
L177[15:56:34]
<MGR> And
no windows
L178[15:56:36] <Izaya> exactly
L179[15:56:38]
<Ariri> On
schematics, it also looks silly that the warp core also runs from
the top to bottom of the hull
L180[15:56:51]
<Ariri>
Because it’s a smol ship
L182[15:57:31] <Izaya>
TBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9OTA1IiwicGF0aCI6IlwvZlwvY2FiODA3NzUtMTAzMy00N2Q3LThlNzMtNTY4ZDk4ZmRhY2UwXC9kMmFjN3ZmLWRkNTlhNDU3LThkZDQtNDM4ZS1iN2M1LWE3OTRiNTQ4NGNiMy5qcGciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.FXTRmxPJR0-4P3xruqTDwxZCcfka8HqMsf6Dmsgtv1k
L183[15:57:32] <Izaya> argh
L184[16:00:37]
<Ariri>
There’s also a shuttle bay that’s not connected to any side of the
ship iirc
L185[16:05:41] <Izaya> they just replicate
a shuttle each time they need one
L186[16:32:59]
⇨ Joins: Webchat499
(webchat@d118-75-251-141.try.wideopenwest.com)
L187[16:33:09] <Webchat499> Hello
L188[16:33:31] ⇦
Quits: Webchat499 (webchat@d118-75-251-141.try.wideopenwest.com)
(Client Quit)
L189[16:42:13]
⇨ Joins: Test
(webchat@d118-75-251-141.try.wideopenwest.com)
L190[16:43:36]
⇨ Joins: Tester
(webchat@d118-75-251-141.try.wideopenwest.com)
L191[16:44:19] ⇦
Quits: Test (webchat@d118-75-251-141.try.wideopenwest.com) (Client
Quit)
L192[16:44:24]
⇨ Joins: Azzy
(~azzy@sn-phy1.bhs.ovh.shadownode.ca)
L193[16:44:32] <Azzy> test?
L194[16:44:44] <Izaya> test failed
L195[16:44:45] <Amanda> Sorry, you got an
F.
L196[16:45:04] <Amanda> And a "See me
after class" note from the teacher
L197[16:45:13] <Azzy> hello!
L198[16:45:28] <Amanda> I mean, what were
you thinking, putting Jelly Beans as a nobel gas?
L199[16:46:57] ⇦
Quits: Tester (webchat@d118-75-251-141.try.wideopenwest.com)
(Client Quit)
L200[16:50:56] ⇦
Quits: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca) (Remote host
closed the connection)
L201[16:53:12]
<Forecaster> but jelly is the noblest of
gases D:
L202[17:02:46]
⇨ Joins: Azzy
(~azzy@sn-phy1.bhs.ovh.shadownode.ca)
L203[17:03:57] ⇦
Quits: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca) (Quit:
Azzy)
L204[17:31:17]
⇨ Joins: Thutmose
(~Patrick@host-69-59-79-181.nctv.com)
L205[17:59:48]
<Ariri>
jelly go wubbb
L206[18:04:59]
<Ariri>
Inari: You should use this to convince cats to conspire with you in
the cat vs fox feud, it’s like brainwashing but i like it
L208[18:32:28] <Amanda> %choose risk
overshooting or play it safe and fly the difference
L209[18:32:28] <MichiBot> Amanda: A
wizard is never late, and sometimes engages in some "risk
overshooting".
L210[18:38:31] <Izaya> kinda contradictory
but okay
L211[18:43:00] ⇦
Quits: t20kdc
(~20kdc@cpc139340-aztw33-2-0-cust225.18-1.cable.virginm.net) (Ping
timeout: 378 seconds)
L212[19:52:10] <Amanda> %choose do my
crack-job idea?
L213[19:52:10] <MichiBot> Amanda: Are you
sure? Well alright.
L214[19:52:19] <Amanda> Sounds like the
correct response, MichiBot
L215[19:52:23]
<Kristopher38> %discord
L217[19:55:03]
<Hackuuermeun> Hey @Lizzy-chan !
L218[19:55:03]
<Hackuuermeun> Do you know what could be
the reason I'm not able to sign up to
https://oc.cil.li/ ?
L219[19:55:04]
<Hackuuermeun> I get **You did not pass
the security check. Please try again.** error on submit
L220[19:59:32]
<Ariri> Do
you have any electronic components in your brain or body?
L221[19:59:58] <Izaya> hey hey
L222[20:00:03] <Izaya> are captchas meant
to stop cyborgs?
L223[20:00:42] <Izaya> Also, I now cannot
unsee the mental image of people in the Terminator future using
captchas to control access to their settlements and weed out
robots
L224[20:01:09]
<Ariri> I
was just going to say that if they aren’t, they should so we can
prevent Judgement Dat
L225[20:01:12]
<Ariri>
Day*
L226[20:01:37] <Izaya> Nuclear weapons
launch thingos with a captcha verification
L227[20:01:42] <Izaya> I love and also
hate this whole concept
L228[20:01:57]
<Ariri>
That’s hilarious to imagine
L229[20:02:27]
<Ariri>
“Enter the code from the red handbook!
L230[20:02:27]
<Ariri>
Turn your key!
L231[20:02:27]
<Ariri>
Click on the bicycles!”
L233[20:07:17] ⇦
Quits: ben_mkiv (~ben_mkiv@i59F67828.versanet.de) (Killed (NickServ
(GHOST command used by
ben_mkiv|afk!~ben_mkiv@i59F6783D.versanet.de)))
L234[20:07:22]
⇨ Joins: ben_mkiv|afk
(~ben_mkiv@i59F6783D.versanet.de)
L235[20:26:32]
<Lizzy-chan> @Hackuuermeun if you're using
stuff like noscript or have javascript disabled, try temp allowing
everything / enabling JS and see if that does it. failing that, DM
me your email & current public IP address (that error you have
is known to be caused by some of our old ip blocks, why it doesn't
say 'sign-up is blocked' idk)
L236[20:37:43]
<Hackuuermeun> @Lizzy-chan it worked! The
issue was that on chrome the security captcha wasn't appearing, so
I tried it on mozilla and it worked! Thanks for advice anyways!
❤️
L237[20:52:56]
⇨ Joins: Azzy
(~azzy@sn-phy1.bhs.ovh.shadownode.ca)
L238[20:53:06]
<Forecaster> %sip
L239[20:53:07] <MichiBot> You drink a
stirring strawberry potion (New!). The potion bottle insults
Forecaster's haircut.
L240[20:53:16]
<Forecaster> D:
L241[20:53:22]
<Forecaster> it's messy on purpose!
L242[20:53:25] <Azzy> hello all
L243[20:53:33]
<Forecaster> hi
L244[20:54:01] <Azzy> idk how i got this
far, never used IRC before
L245[20:54:45]
<Forecaster> I'd guess by starting a
client and connecting to the server
L246[20:54:52]
<Forecaster> probably something like
that
L247[20:54:58] <Inari> Good theory
L248[20:55:23] <Azzy> lol, im running this
in minecraft rn too soo
L249[20:55:54] <CompanionCube>
%hello
L250[20:55:54] <MichiBot> CompanionCube:
Hello! Welcome to #oc! The one and only opencomputers channel!
Please ask your questions directly (dont ask to ask) and provide
error/code examples! (Use pastebin.com if theyre more than one
line!) Dont mind the random conversation you might have walked
into.
L251[20:55:58] <Inari> Even easier
then
L252[20:56:07] <Inari> You just insatlled
wocchat (or whatever mineos uses) and ran it
L253[20:56:07] <Inari> :p
L254[20:56:42] <Azzy> ye pretty much, hows
everyones day going?
L255[20:56:48] <Inari> Melting
L256[20:57:23] <Azzy> %sip
L257[20:57:23] <MichiBot> You drink a
goopy pink potion (New!). For about a second Azzy knows the
location of a great treasure.
L258[21:00:55] ⇦
Quits: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca) (Quit:
Azzy)
L259[21:01:25] <Inari> rip
L260[21:04:20]
zsh sets mode: +v on asie
L261[21:06:23] <Amanda> %choose temper my
patience?
L262[21:06:23] <MichiBot> Amanda: Hm. I
can't choose. Ask me again in a couple of minutes.
L263[21:06:29] <Amanda> That's a no
then
L264[21:06:44] <Amanda> Time to preform
what might be my stupidest idea ever
L265[21:07:06]
<Forecaster> stupid waits for nobody
L266[21:07:56]
⇨ Joins: Azzy
(~azzy@sn-phy1.bhs.ovh.shadownode.ca)
L267[21:08:03] <Azzy> %sip
L268[21:08:04] <MichiBot> You drink a
viscous silver potion (New!). Azzy spots a shiny thing!
L269[21:08:34] <Azzy> %help
L271[21:10:35] <Azzy> %choose
L272[21:10:35] <MichiBot> Azzy: I'd
advice against "" right now.
L273[21:10:51]
<Forecaster> oh
L274[21:10:56]
<Forecaster> I probably want to fix
that
L275[21:11:10] <Azzy> fix what?
L276[21:11:17] <Azzy> im not sure what im
doing
L277[21:11:29] <Azzy> %google 89+97
L278[21:11:58] <Azzy> %search google
89+97
L280[21:12:13] <Azzy> huh
L281[21:12:16]
<Forecaster> that providing no argument
outputs a string with nothing inserted
L282[21:13:57] <Azzy> ah, it seems a lot
at least in the irc program for OC is geared twords knowing what to
put where
L283[21:14:18] <Azzy> im not sure what
paramaters to use for say /join
L284[21:17:09] <CompanionCube> well, if
you don't know of other places there's no use for /join
L285[21:18:39] <Azzy> fair enough
L286[21:18:57] <Azzy> i know you guys have
a minecraft channel but i cant type in it
L287[21:19:09]
<Forecaster> who's "you
guys"
L288[21:19:46] <Azzy> you all on the irc
chat
L289[21:19:53]
<Forecaster> there's hundres of thousands
of irc channels
L290[21:19:57]
<Forecaster> we only run this one
L292[21:22:21] <Azzy> oh =P i wasnt really
aware, i figured ircs died off since my first interaction with one
was though a minecraft mod and not wondering the internet
L293[21:22:23] <Amanda> That was my base
on Titan. Now it's my station above titan
L294[21:23:50]
<Ariri>
Beautiful
L295[21:24:02]
<Ariri>
Also ffs my pc bsod’d while watching youtube
L296[21:24:08]
<Ariri>
Damn it chrome
L297[21:24:27]
<Forecaster> irc still has plenty of users
for all kinds of things
L298[21:24:59]
<Ariri>
like manga downloads :3
L299[21:25:07] <Azzy> fair enough ig,
learn something new every day
L300[21:25:07]
<Forecaster> for most minecraft
communities it's been surpassed by discord for the most part
though
L301[21:26:23] <Azzy> i wonder if i can
direct connect to this through a text browser like lynx on my
raspberry pi... something ill test later
L302[21:28:12]
<Ariri> Or
just install znc
L303[21:28:41] <Azzy> znc? is that a irc
client?
L304[21:29:56]
<Forecaster> no, znc or a
"bouncer" is like a proxy between you and irc that lets
you disconnect, then reconnect later and get messages that were
sent to certain channels while you were gone
L305[21:29:58]
<Ariri>
It’s a bouncer, you run it on a server and connect to it with your
client
L306[21:30:50]
<Forecaster> you can download the software
or use a service that provides it
L307[21:31:58] <Azzy> oh, sounds
interesting, thanks for the info!
L308[21:32:37]
<Ariri> My
computer probably BSOD’d to make itself update lol
L309[21:33:05] <Azzy> welp, ill get off
now, thanks for informing me, see ya'll around!
L310[21:33:25] ⇦
Quits: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca) (Quit:
Azzy)
L311[22:37:22] <Amanda> %choose side or
top
L312[22:37:23] <MichiBot> Amanda: Haven't
you always gone with "side"? Hm, maybe not.
L313[22:45:05]
<Ocawesome101> Ariri: ERRTOOLONGNOUPDATE
:P
L314[22:51:28]
<Forecaster> %sip
L315[22:51:28] <MichiBot> You drink a
porous gold potion (New!). A genie appears out of the empty bottle,
turns it into a pie, then vanishes.
L316[22:51:43] <Corded> *
<Forecaster> has pie
L317[22:51:49]
<Forecaster> %tonk
L318[22:51:49] <MichiBot> Aw jeez!
Forecaster! You beat Ariri's previous record of 3 hours and 33
minutes (By 3 hours, 53 minutes and 7 seconds)! I hope you're
happy!
L319[22:51:50] <MichiBot> Forecaster's new
record is 7 hours, 26 minutes and 7 seconds! Forecaster also gained
0.01556 (0.00389 x 4) tonk points for stealing the tonk. Position
#1.
L320[23:26:25]
<Ariri>
Ocawesome101: It might as well have been that honestly
L321[23:33:18]
<Ocawesome101> lo
L322[23:33:20]
<Ocawesome101> lol*
L324[23:38:38] <Izaya> Ariri: Petra is so
cute
L325[23:42:16] <Amanda> %roll 1d2+3
L326[23:42:16] <MichiBot> 1+3 =>
4
L328[23:44:38]
<Ocawesome101> jesus
L329[23:45:18] <Michiyo> ....
L330[23:45:23] <Michiyo> the source of
that page makes me fucking sad.
L331[23:48:15] <CompanionCube> (extra
info: the original page had a copyright of 2010 on it.)
L332[23:51:00]
<Ocawesome101> there we go, error
reporting in the Monolith shell actually works now lol
L333[23:51:26] *
CompanionCube wasn't sure which is weirder: that chrome is included
or that 'enable style sheets' is in one of them