<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:00:05] ⇦
Quits: Corded (discord@2607:5300:60:51da::c0f:fee) (Remote host
closed the connection)
L2[00:00:32] ⇨
Joins: Corded (discord@2607:5300:60:51da::c0f:fee)
L3[00:00:32] zsh
sets mode: +v on Corded
L4[00:01:23] ⇦
Quits: Nachtara (uid74214@id-74214.charlton.irccloud.com) (Quit:
Connection closed for inactivity)
L5[00:09:18] <Saphire> .-.
L6[00:13:29] <sugoi> i need a new irc
handle
L7[00:13:36] <sugoi> people want to know
that i'm payonel
L8[00:13:48] <sugoi> but, i've had sugoi in
irc for.......13 years or so
L9[00:14:02] <Sharidan> is there a list of
keyboard.keys somewhere online?
L10[00:14:12] <sugoi> payonel is not half
that old in the webs
L11[00:14:18] <sugoi> Sharidan:
elaborate?
L12[00:14:43] <sugoi> do you mean
"all" possible keys, or the current ones defined for
oc?
L13[00:14:59] <Sharidan> the current ones
defined for OC should suffice
L14[00:15:24] <Sharidan> I'd like to see if
I can use that dual table to convert keys for my UI library
L15[00:16:46] <Sharidan> for buttons,
labels, menus, statusbars etc. I've got a general purpose function
that splits "&" in the caption into a keyboard
shortcut key, so I need to convert the letter into the key number
so I can numericly match it during event parsing
L16[00:16:55] <sugoi> dual table? you mean
how codes are mapped to strings and back?
L17[00:17:33] <Sharidan> well, the wiki
says: "This is a two-directional table, for example, the value
of keyboard.keys.numpad0 is 0x52, and the value of
keyboard.keys[0x52] is the string numpad0."
L18[00:17:46] <Kodos> ~w keys
L20[00:17:53] <Sharidan> so I was wondering
if there's a complete listing of that table somewhere or if I have
to dump it manually :)
L21[00:18:01] <sugoi> yes, thats Sharidan
is what i also was talking about
L23[00:18:26] <Sharidan> awesome sugoi -
you rock! thanks :)
L24[00:18:31] <sugoi> Sharidan: you could
loop it - but ... note in 1.6 for efficiency i'm assume people are
not looping it
L25[00:18:41] <sugoi> so it's very
partially loaded in 1.6
L27[00:18:57] <Sharidan> I'd need to rework
the strings for some of the specialty keys tho, so they format
better on screen but that's ok
L28[00:19:19] <sugoi> Sharidan: but you
expect to just loop them? with no assumed for knowledge of the data
set?
L29[00:20:23] <sugoi> s/for k/forek/
L30[00:20:23] <Kibibyte> <sugoi>
Sharidan: but you expect to just loop them? with no assumed
foreknowledge of the data set?
L31[00:21:31] <Sharidan> uhm, ok so let's
do a quick sample. say you create a button and set the caption as:
"S&ave". With a caption like that, "a"
becomes a shortcut key, which 1) needs to be highlighted on screen
and 2) needs to be converted into 0x1E so I can trigger a
"button_click" event when someone hits Alt+A
L32[00:21:52] <Sharidan> so all I need is a
quick way to convert the string "a" into the numeric
value 0x1E
L33[00:21:52] <sugoi> ah, so you DO have
source data to work from
L34[00:21:56] <sugoi> ok, no problem
L35[00:21:56] <Sharidan> yes
L36[00:22:09] <Kodos> string.byte, isn't
it?
L37[00:22:15] <greaser|q> wait derp
L38[00:22:16] <sugoi> i was worried you
expected to see ALL the mapping via for pairs(keyboard.keys)
L39[00:22:24] <greaser|q> string.byte would
give you 0x61 not 0x1E
L40[00:22:33] <Sharidan> string.byte would
convert into the byte value of the letter, not the key
mapping
L42[00:22:57] <sugoi> Sharidan: i dont load
all the key mappings into memory
L43[00:23:04] <sugoi> Sharidan: but asking
for any data WILL load it
L44[00:23:09] <Kodos> You'd have to do
isKeyDown, I think
L45[00:23:14] <Kodos> Which sucks
L46[00:23:17] <Kodos> For what you're doing
anyway
L47[00:23:41] <sugoi> Sharidan: so
keyboard.keys.a always works, even if it wasn't there before
asking
L48[00:23:48] <sugoi> but pairs won't see
it
L49[00:24:14] <sugoi> there is a way to
load everything, if you needs pairs
L50[00:24:24] <sugoi> but i had not yet
planned to confirm that as api
L51[00:24:36] <Sharidan> yea but I'd have
to do keyboard.keys["a"] instead, since I don't know the
letter before hand
L52[00:24:49] <Sharidan> "a"
being replaced by a variable from the fixCaption() parser
L53[00:24:53] <sugoi> yeah, i was just
trying to type less
L54[00:24:59] <sugoi> ^ which is moot
L55[00:25:05] <Sharidan> lol
L56[00:25:08] <Sharidan> I know mate
L57[00:25:20] <Sharidan> well, I have to
setup a different label mapping for all the specialty keys for
nicer screen display anyways, so I guess I could just add the rest
of the keymapping to that table
L58[00:25:44] <sugoi> just let me know if
you need pairs or some such to work as expected
L59[00:26:04] <sugoi> and i'll review the
method i have and consider an official api for that need
L60[00:27:40] <Sharidan> all the key_*
events return the charvalue and keymapping as numeric values, so I
need a way to map caption letters into those keymapping values, but
I can do that in my library
L61[00:29:02] <Sharidan> and I can use
keyboard.is*() methods to check for shift, control and alt keys
being pressed or not, so it's all good. no need for you, sugoi, to
do more work because of me :)
L63[00:29:45] <sugoi> Sharidan: sounds good
- but "because of you" is the reason to work. if i do
things that make users work harder, i'm doing it wrong
L64[00:30:17] <Sharidan> I like your
philosophy sugoi :)
L65[00:30:27] <Sharidan> we are of equal
minds on that topic
L66[00:30:37] <sugoi> now i just need a new
irc name
L67[00:30:50] <Kodos> Why not just use
payonel
L68[00:30:55] <sugoi> sugoi_payonel ...
sugpay .. sugnel
L69[00:31:06] <Kodos> sugonel
L70[00:31:09] <sugoi> because
"sugoi" is old, an irc handle i've had for super long
time
L71[00:31:14] <gamax92> /msg gameserv
namegen
L72[00:31:27] <Kodos> What's that do
L73[00:31:37] <gamax92> spouts a bunch of
shitty names at you
L74[00:31:43] <sugoi> gamax92: ha, that was
a ton
L75[00:31:48] <Izaya> Charalensteadew
L76[00:31:49] <gamax92> like super fantasy
type names
L77[00:31:55] <gamax92>
Pavastarrethiel,
L78[00:32:08] <sugoi> i like a lot of them
:)
L79[00:32:15] <sugoi> but i digress
L80[00:32:28] <Sharidan> uhm, so ...
L81[00:32:29] <sugoi> Kodos: i think gav.le
is mg.r
L82[00:32:44] <gamax92> gavle is probably
just mgr yeah.
L84[00:32:55] <sugoi> equally annoying :)
....
L85[00:32:57] *
sugoi hides
L86[00:33:01] <Sharidan> lol
L87[00:33:14] <Sharidan> OC even
L88[00:34:23] <sugoi> Sharidan: i dont
know, would have to compare
L89[00:34:26] <Kodos> Okay, so what's the
best way to get information from an event, storing it, and being
able to reset the info that's been stored at will
L90[00:34:58] <Sharidan> sugonel: fair
enough :)
L91[00:35:13] <sugoi> well a package.loaded
lib that stores them for you i guess
L92[00:35:29] <sugoi> can you listen to
_all_ events?
L93[00:35:36] <Kodos> Here's how to tell if
Gavle is MGR
L94[00:35:38] ***
Kodos is now known as Gavle
L95[00:35:42] ***
Gavle is now known as Kodos
L96[00:35:44] <Kodos> There
L97[00:35:46] <Kodos> Grouped Gavle
L98[00:35:53] <Sharidan> lol
L99[00:35:59] <sugoi> Kodos: you must feel
very dirty
L100[00:36:18] *
Sharidan hands Kodos a bar of soap
L101[00:36:19] <Kodos> sugoi: Not as dirty
as the time I held Azanor's nick for him for 3 months
L102[00:36:26] <sugoi> haha
L103[00:36:44] <Izaya> for or from?
L104[00:36:48] <Kodos> For
L105[00:36:57] <Izaya> ohok
L106[00:37:00] <Kodos> I noticed his nick
lapsed when foundership of #thaumcraft went to SL
L107[00:37:06] <Kodos> So I grabbed it
before the trolls could
L108[00:37:29] <Kodos> I'm sure the OPers
would've helped him get it back if the need arose
L109[00:37:33] <Kodos> But that saved him
the hassle
L110[00:38:02] <Kodos> So, OpenRadio, are
there any good uses for it
L111[00:38:34] <Kodos> I couldn't get
ahold of the example program that was used with it at btm
L112[00:39:16] ***
Kasen is now known as rakiru|offline
L114[00:43:53] <Sharidan> lol
L115[00:46:31]
⇨ Joins: Vexatos
(~Vexatos@p200300556E6CB766B9ECD139F666AE78.dip0.t-ipconnect.de)
L116[00:46:32]
zsh sets mode: +v on Vexatos
L117[00:49:18] <Sharidan> sugoi: so far
the keymappings seem identical
L118[00:52:23] ***
minecreatr is now known as Mine|dreamland
L119[00:58:26] <sugoi> if i'm on A and i
merged B onto A -- which is mine? A?
L120[00:58:34] <sugoi> just making sure, i
don't use git much
L121[00:58:47] <sugoi> using sourcetree
wording here
L122[01:04:48] <Saphire> Um
L123[01:05:03] <Saphire> It will merge
both into C?
L124[01:05:33] <sugoi> as a perforce user,
i really dislike git
L125[01:05:34] <Skye> Beep. Morning.
L126[01:05:37] <sugoi> it makes me feel
stupid
L127[01:05:59] <sugoi> Skye: i need to
watch some rick & morty
L128[01:06:08] <Skye> What?
L129[01:06:17] <sugoi> i'm not sure why i
said that to _you_
L130[01:06:29] <sugoi> s/Skye: //
L131[01:06:30] <Kibibyte> <sugoi> i
need to watch some rick & morty
L132[01:06:54] <Skye> Haha
L133[01:10:22] <Kodos> sugoi, Codecademy
does a decent git course, it's free and covers git merge
L134[01:11:35] <Saphire> ^
L135[01:11:58] <Saphire> Also there is a
good free ebook about git
L136[01:12:29] <sugoi> i think the problem
is that I return to perforce for my "9 to 5" and forget
all the craziness of git as I bask in the simplicity of
perforce
L137[01:22:33] <Saphire> Uh?
L138[01:25:36]
⇨ Joins: h3po
(~h3po@aftr-5-146-248-91.unity-media.net)
L139[01:39:50] <Kodos> Looks like my
rendering problem might be hardware-related
L140[01:39:56] <Kodos> I'm getting issues
with other mods, now too
L141[01:41:04] <Sharidan> some mods
introduce weird brightness shading glitches
L142[01:41:15] <Sharidan> usually a driver
program of sorts
L143[01:41:51] <Kodos> Well, water in an
IE assembler was showing up black
L144[01:41:53] <Kodos> And lava dark
red
L145[01:42:00] <Sharidan> meh - driver
problem*
L146[01:44:04] ⇦
Quits: h3po (~h3po@aftr-5-146-248-91.unity-media.net) (Quit:
Leaving.)
L147[01:44:46]
⇨ Joins: VikeStep (~VikeStep@120.156.54.17)
L148[01:48:09] <sugoi> gamax92: question -
about __gc removal, your point earlier was that it is harmless to
leave my usage of __gc - which I can see and that's a valid
point
L149[01:48:28] <sugoi> but why do you
think sangar removed it from existing openos code, such as file
stream closures
L150[01:48:46] <gamax92> handles are now
userdata and not numbers
L151[01:49:19] <gamax92> so the auto
closing can be handled java/scala side (lemme go find the
code)
L152[01:49:27] <sugoi> oh i see
L153[01:49:34] <Saphire> But..
L155[01:51:59] <gamax92> I believe it's
that now
L156[01:52:05]
⇨ Joins: h3po
(~h3po@aftr-5-146-248-91.unity-media.net)
L157[01:53:15] <gamax92> Saphire:
but?
L158[01:55:23] ⇦
Quits: VanillaBean (~VanillaBe@c-98-232-42-143.hsd1.wa.comcast.net)
(Ping timeout: 194 seconds)
L159[01:56:58] ⇦
Quits: h3po (~h3po@aftr-5-146-248-91.unity-media.net) (Ping
timeout: 186 seconds)
L160[02:05:51] <Saphire> Nevermind
>_>
L161[02:10:31] <Kodos> Anyone know of
Cyano whatshisname has a channel
L162[02:35:54] ⇦
Quits: Vexatos
(~Vexatos@p200300556E6CB766B9ECD139F666AE78.dip0.t-ipconnect.de)
(Quit: I guess I have to go now. Bye ✔)
L163[03:00:18] ***
Yepoleb is now known as Guest61245
L164[03:00:18] ⇦
Quits: Guest61245 (~quassel@194-166-7-68.adsl.highway.telekom.at)
(Killed (nova.esper.net (Nickname regained by
services)))
L165[03:00:19]
⇨ Joins: Yepoleb
(~quassel@194-166-7-52.adsl.highway.telekom.at)
L166[03:06:21] ⇦
Quits: t3hero (~t3hero@2601:202:200:fb50:e89e:7998:b5bb:df22) (Read
error: Connection reset by peer)
L167[03:52:09] ***
cbcercas|AFK is now known as cbcercas
L168[03:58:34]
⇨ Joins: Turtle (~SentientT@145.37.53.89)
L169[03:59:01] <Turtle> Anyone got a good
tool for modifying PDFs? >.> Textbook is free to downloaaa-
aaand it´s got ads.
L170[03:59:07] <Turtle> In a
textbook.
L171[03:59:13] <Turtle> Over the text.
</rant>
L172[03:59:43] <Saphire> :/
L174[04:05:54] <Turtle> There´s probably
got to be a way to just set up a pipeline to strip the ads.
:p
L176[04:05:59] <MichiBot> Kodos:
ComputerCraft - Turtle mining machine - Minecraft | length:
3m 43s | Likes:
9 Dislikes:
0 Views:
303 | by
Shizz0
L177[04:06:54] <Turtle> Now all we need is
that CC code parser for OC :p
L178[04:10:05] <Kodos> Good luck
L179[04:10:07] <Kodos> And goodnight
L180[04:10:24] ⇦
Quits: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net) (Quit: Web
client closed)
L181[04:11:21] <Sharidan> I've done
something similar with CC turtles
L182[04:16:00] <Turtle> Didn´t
cruor/whomever made a pseudostandardization for turtle/robot
instructions?
L183[04:16:20] <Sharidan> dunno
L184[04:16:52] <Sharidan> but you'd also
need to convert the networking code to get Shizz's stuff
working
L185[04:16:59] <Turtle> yup
L186[04:21:37] <Sharidan> I'm looking
forward to start working with robots and getting my old turtle
scripts rewritten for robots
L187[04:22:04] <Sharidan> I'm sure a lot
of them can be cut down because of how OC works
L188[04:22:22] <Turtle> yeah, letting them
run directly on OC is a pain >.<
L189[04:22:48] <Turtle> should still have
some code on my desktop that loaded some of the CC libs, but it was
faaaaaaaaaaar from done
L190[04:22:54] <Sharidan> I havnt really
played around that much with the stock robot apps yet
L191[04:40:35] <Cruor> Turtle: u wot
m8
L192[04:40:40] <Cruor> talking 'bout the
shurtles? .-.
L193[04:40:45] <Turtle> I think so?
L194[04:41:14] <Cruor> is this when i drag
out the farm program example
L195[04:42:36] <Cruor> just give me laptop
300 years to figure out that steam shouldnt be running
L196[04:43:46] ⇦
Quits: Turtle (~SentientT@145.37.53.89) (Quit:
Leaving)
L197[04:49:04] <Cruor> y u leave turtle
;_;
L199[04:49:15] <Sharidan> that the farm
sample?
L200[04:49:18] <Cruor> yup
L201[04:49:32] <Cruor> im sure its
incompatible with the current version
L202[04:49:40] <Cruor> and not written in
the new verbose mode :p
L203[04:50:20] <Cruor> but in theory, it
should do exactly the same on turtles and robots
L204[04:50:38] <Sharidan> ah so it's a
cross platform thing
L205[04:50:39] <Sharidan> nice
L206[04:50:49] <Cruor> its a stack based
language for turtles
L207[04:51:00] <Cruor> because the `go`
program is horribly inconvinient
L208[04:51:06] <Sharidan> no kidding -
lol
L209[04:51:44] <Cruor> so Shurtle main
goal is to make simple(and complex) movement from the console
possible
L210[04:51:47] <Cruor> as you might see
:p
L211[04:52:30] <Sharidan> yea I can see
how that works out
L212[04:52:38] <Sharidan> very nice idea
indeed
L213[04:52:41] ***
gAway2002 is now known as g
L214[04:52:59] <Sharidan> I wrote a
session persistant multiplot farming program for turtles, allowing
a single turtle to handle up to 10 plots each 9x9 blocks with
different crops
L215[04:56:23] <Cruor> the singlechar
operators and variables will be mostly the same in CC/OC at
least
L216[05:02:13] <Sharidan> yea not much
difference there :)
L217[06:18:03] <Lizzy> o/
L219[06:19:53]
⇨ Joins: AlexisMachina
(uid57631@2604:8300:100:200b:6667:3:0:e11f)
L220[06:20:03] ⇦
Quits: Something12 (~Something@S010634bdfa9eca7b.vs.shawcable.net)
(Read error: Connection reset by peer)
L221[06:23:16]
⇨ Joins: sivael
(webchat@user-31-175-19-143.play-internet.pl)
L222[06:23:33] <sivael> o/
L223[06:24:09] <sivael> I'm trying to add
a LUA function and I'm copying the durability() in
component/Robot.scala
L224[06:24:32] ⇦
Quits: Meow-J (uid69628@2604:8300:100:200b:6667:1:1:ffc) (Quit:
Connection closed for inactivity)
L225[06:24:35] <sivael> but it's not
getting added to the LUA
L226[06:24:58] <sivael> And I think I'm
missing a lua hookup function somewhere but I can't find it
anywhere
L227[06:25:13] <sivael> anyone knows where
that is?
L228[06:26:27]
⇨ Joins: Meow-J
(uid69628@2604:8300:100:200b:6667:1:1:ffc)
L229[06:27:00] <DeanIsaKitty> Lua is not
an acronym :P
L230[06:27:28] <sivael> heh, yeah.
L231[06:28:02] <sivael> I just always
write it capitalized for some reason
L232[06:29:25] <DeanIsaKitty> unless you
don't "lua hookup function" :P
L233[06:31:58] <sivael> @Callback(doc =
"function():number -- Get the HP of the robot.") def
hp(context: Context, args: Arguments): Array[AnyRef] = {
result(agent.info.hp, "no tool equipped") }
L234[06:32:05] <sivael> meh. formatting is
lost
L235[06:32:07] <sivael> 1mo
L236[06:32:23] <DeanIsaKitty> pastebin is
a thing. <.<
L237[06:32:40] <DeanIsaKitty> Or gists if
you want free syntax highlighting
L239[06:33:01] <sivael> There's syntax
highlighting in pastebin
L240[06:33:14] <DeanIsaKitty> This page
has been removed!
L241[06:33:32] <sivael> and I don't see
any other hookup directives or functios in the corde so I'm a bit
baffled...
L242[06:33:40] <DeanIsaKitty> This page is
no longer available. It has either expired, been removed by it's
creator, or removed by one of the Pastebin staff.
L244[06:33:48] <sivael> this one/
L245[06:33:49] <sivael> ?
L246[06:34:23] <sivael> unless....
L247[06:34:27] <sivael> unless...
L248[06:36:25] <sivael> yup, 2 issues in
my brain:
L249[06:36:35] <sivael> 1. Didn't reset
LUA VM by resetting the machine
L250[06:36:59] <sivael> 2. Assumed the
robot object is just that, while it's a wrapper around
components.robot
L251[06:37:06] <sivael> fixed:)
L252[06:38:24] <sivael> THanks anyway
:)
L253[06:39:11] *
vifino yawns and flops on Lizzy
L254[06:39:26]
⇨ Joins: Nachtara
(~Nachie@50-83-108-134.client.mchsi.com)
L255[06:40:16] *
Lizzy pets vifino
L256[06:40:23] <Lizzy> laptop, shut the
fuck down
L257[06:40:26] *
vifino purrs
L258[06:42:47] <Lizzy> fuck
L259[06:43:18] <Lizzy> my windows 7
install didn't get activated (i guess the install cd just removed
it) so i can't upgrade to 10 easilly :/
L260[06:44:04] <vifino> :/
L261[06:44:15] <sivael> why would you want
to upgrade to win10 o.0
L262[06:44:46] <Lizzy> because i want
to?
L263[06:45:16] <Lizzy> plus, if it had the
product key i'd be upgrading to 10 pro which has the group policy
editor which i can use to turn off some of the crap
L264[06:45:17] <sivael> yeah, I'm asking
why - I would like to understand the reasonong behind the
choice
L265[06:45:36] <Lizzy> sivael, because i
fucking want to.
L266[06:45:39] <sivael> Like - I like X
about W10 and don't like Y about win7
L267[06:46:00] <sivael> no need to be
aggressive:P
L268[06:49:16] <DeanIsaKitty> sivael:
Lizzy is used to me grilling her for even considering using
Windows, go easy on her :P
L269[06:53:06] <sivael> DeanIsaKitty: It's
okay:) Was just curious:P
L270[07:02:44] ⇦
Quits: wembly (~wembly@50.240.220.69) (Ping timeout: 189
seconds)
L271[07:06:31]
⇨ Joins: wembly (~wembly@50.240.220.69)
L272[07:06:32] <sivael> yup, all working
properly
L273[07:08:45] <DeanIsaKitty> Hmm,
prompted by Scott Manley's problems w/ youtube: What will happen to
all those YouTube fellas who made YouTube their day job when they
get old and are not hip anymore and lose too many subscribers and
then have to get a job with 40 and no previous experience? Is there
a field outside maybe video editing that those people could get a
job in?
L274[07:08:51] <sivael> now to plug in the
machine learning algos through internet:)
L275[07:09:39] <sivael> DeanIsaKitty: Same
thing that happens to not-well-known actors - they learn a new job
or starve
L276[07:19:00] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L277[07:19:33] <DeanIsaKitty> sivael:
Well, actors tend to have a classic education and then change into
acting later on (well, most of the better known that is). With YT
"stars" its the other way around. They start early (same
age as their audience) and people like Scott Manley are an
exception rather than the normal case.
L278[07:23:27] <sivael> DeanIsaKitty:
True, but it's not that YT stars are any different than TV stars -
they need to have a way of generating good content, continuously,
good presence and be pleasant to watch/listen to. Those qualities
require a lot of work to be really successful there. If people are
decent in those fields, there's a lot of other jobs, not
neccessarily media-related that would use them.
L279[07:24:06] <sivael> Obviously it would
require work and would be outside their comfort zone, but all
change is like that
L280[07:25:41] <DeanIsaKitty> Hmm, I guess
you're right
L281[07:32:11] <DeanIsaKitty> Also PR,
especially social media representative. They should be pretty good
for that position
L282[07:38:39] <Mimiru> Damn it.. the only
place I can reproduce this lighting issue is in a big pack.. but
Kodos can reproduce it with just OC and OS.. :/
L283[07:38:50] <Mimiru> Which makes it a
pain in the ass to debug and fix
L284[07:40:04] <sivael> Yup
L285[07:40:24] <sivael> Mimiru: Which
lighting bug?
L287[07:41:36] <Mimiru> And now it does
it
L288[07:41:37] <Mimiru> what
L289[07:41:38] <Mimiru> the
L290[07:41:40] <Mimiru> fuck
L291[07:43:33] <Mimiru> Yeah and now it's
fine again
L292[07:43:34] <Mimiru> IDK
L294[07:44:01] <Saphire> inb4 it being
fixed by "do not touch. magic"
L295[07:44:15] <Mimiru> in #88 my buttons
are brighter than his build #87 buttons...
L296[07:45:20] <Mimiru> Saphire, I can't
"fix" it with do not touch, as it does happen, randomly,
to me..
L297[07:46:06] <sivael> check if it
happens in a particular direction
L298[07:46:29] <Mimiru> Already done
L299[07:46:30] <Mimiru> doesn't seem
to
L300[07:46:42] <sivael> hm
L301[07:47:21] <sivael> HDR?
L302[07:47:21] <sivael> :P
L303[07:47:32] <Mimiru> ?
L304[07:48:01] <sivael> floating point
lighting so that lighting isn't clamped in 0..1
L305[07:48:20] <Mimiru> Ahh.... I'll pass
:p
L307[07:49:18] <sivael> hm
L308[07:49:32] <sivael> what if loight
behind the keypad would be brighter than the one in front of
it?
L309[07:49:36] <sivael> light*
L310[07:50:05] <Mimiru> world lighting
doesn't seem to matter too much..
L311[07:50:30] <Mimiru> But I placed a
torch behind it, and it's fine
L312[07:51:19] <sivael> hm
L313[07:51:33]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L314[07:51:38] <sivael> graphic
card/directX differences
L315[07:51:39] <sivael> ?
L316[07:51:58] <Lizzy> minecraft doesn't
use DirectX, what are you smoking?
L318[07:52:12] <Mimiru> sivael, I got it
to happen, once.
L319[07:52:23] <Mimiru> and it does happen
in my larger pack
L320[07:52:28] ⇦
Quits: VikeStep (~VikeStep@120.156.54.17) (Read error: Connection
reset by peer)
L321[07:52:41] <sivael> hm
L322[07:52:41] <Mimiru> I'm just trying to
reproduce it in dev
L323[07:53:07] ***
amadornes[OFF] is now known as amadornes
L324[07:53:25] <sivael> ah, forgot it's
lwgl
L325[07:53:35] <sivael> orlwjgl or
something
L326[07:54:07] <sivael> lemme try it
L327[07:58:23] <sivael> ok, so the texture
looks darker in darker places
L328[07:58:38] <sivael> You could make the
button text emissive>
L329[07:58:42] <Mimiru> See, that's the
thing, it DOESN'T for me.. lol
L330[07:59:13] <sivael> prolly
drivers/card
L331[07:59:25] <sivael> so if You disable
lighting during rendering would it not fix that
L332[07:59:29] <Mimiru> GTX 960 with
latest as of last week
L333[07:59:36] <sivael> Radeon here
L334[08:02:32] <Mimiru> Lemme go stab
around the renderer in OpenFM
L335[08:02:32] <Mimiru> lol
L336[08:02:40] <sivael> :)
L337[08:03:18] <Mimiru> Right
L338[08:03:18] <Mimiru>
GL11.glDisable(GL11.GL_LIGHTING);
L339[08:03:21] <Mimiru> Had to remember
how to do it
L340[08:04:55] <sivael> drop it for me
somewhere when you make the build and I'll test it for You
L343[08:05:38] <sivael> yup
L344[08:05:46] <sivael> should now work
better:)
L345[08:06:05] <Mimiru> Cleaned it up a
little more
L348[08:07:50] <sivael> running
L349[08:07:56] <sivael> hope it's not a
backdoor xD
L350[08:08:05] <Mimiru> lmao
L351[08:08:08] <Mimiru> damn you figured
it out
L352[08:08:30] <DeanIsaKitty> Is
"gruesome metal" as genre a thing? ^^
L353[08:08:49] <Mimiru> If not I +1 it
being one
L355[08:09:08] <MichiBot> DeanIsaKitty:
Machine Head - Locust [OFFICIAL VIDEO] | length:
6m
18s | Likes:
35321 Dislikes:
688 Views:
5047590 | by
Roadrunner Records
L356[08:09:26] <sivael> ok; it's not
fixed
L357[08:09:42] <Mimiru> damn it..
L358[08:09:45] <sivael> Lemme see how you
do emissive textures in GL
L359[08:11:00] <Mimiru> Well, the thing is
the text is just the MC font system...
L360[08:11:48] <sivael> yeah
L361[08:12:08] ***
BNCClient is now known as nekosune
L362[08:12:45] <Mimiru> Shit... work
soon
L363[08:12:46] <Mimiru> q_q
L364[08:14:01] <sivael> Happens to the
best of us:P
L365[08:14:12] <Mimiru> Well.. it's not
really any darker than a sign in the same place..
L366[08:14:18] <sivael> Might go with
blending and such
L367[08:14:48] <sivael> so that you just
do the text with blend mode on and set it as unlighted
L368[08:14:57] <Mimiru> blending made it
worse heh
L369[08:15:11] <sivael> but unsure how
it'll work inside MCs system - it might set the lighting
explicitly
L370[08:15:23] <sivael> oh well
L371[08:15:33] <sivael> in bright mode in
settings I see the keypad in total darkness
L372[08:15:40] <sivael> in moody mode I do
not
L373[08:15:57] <sivael> though TBH in
moody I see *nothing* there :P
L375[08:18:24] <Mimiru> But if I look at
JUST the right angle.. the text washes out to a darker gray
L376[08:18:25] <Mimiru> ¬_¬
L377[08:19:00] <Saphire> Optifine?
L378[08:19:26] <Mimiru> Not in dev
L379[08:20:45] <Mimiru> Oh
L380[08:20:46] <Mimiru> Hmm
L381[08:20:49] <sivael> tried low and high
and can't reproduce the issue
L382[08:20:50] <Mimiru> theres one other
thing to try
L383[08:21:00] <sivael> only that the
button color changes according to lighting
L384[08:21:07] <Saphire> Ah
L385[08:21:27] <Saphire> infamous MC
lighting?
L386[08:21:53] <sivael> yeah, seems like
there's a bug there somewhere
L387[08:21:55] <Mimiru> hahahahahaha
L388[08:21:56] <Mimiru> lmfao
L389[08:21:59] <Mimiru> oh man
L390[08:22:00] <Mimiru> that's great
L391[08:22:03] <sivael> I suggested doing
an emission textutre for text
L393[08:22:26] <Mimiru> GLOWING KEYPAD OF
DOOOOOOOOM
L394[08:22:29] <sivael> but no idea if
feasible at all
L395[08:22:30] <sivael> :P
L396[08:22:45] <sivael> yeah, it might
work if it glows;P
L397[08:22:53] <sivael> dirty fix but
meh
L398[08:22:56] <Mimiru> Yeah it doesn't
emit any light...
L399[08:23:03] <Mimiru> it just doesn't
give any fucks about the lighting
L400[08:23:11] <sivael> yup
L401[08:23:33] <Mimiru> Dirty fix until I
can dig into the MC lighting clusterfuck.
L402[08:24:21] <sivael> I wish I had the
time&money to do a ModCraft that's easy to be modded :P
L403[08:24:23] <Mimiru> ANyway gotta
finish getting ready for work
L404[08:24:41] <sivael> GL&HF
L405[08:24:58] <Mimiru> Meh, I'll
contemplate quitting a few times an hour I'm sure
L406[08:25:33] <Mimiru> Umm shit
L408[08:26:38] <sivael> wut
L409[08:26:54] <sivael> lighting makes it
dark? o.0
L410[08:27:24] <Mimiru> Yep
L411[08:27:29] <Mimiru> and out of time to
work on it
L412[08:27:29] <Mimiru> lol
L413[08:27:53] <Mimiru> I aborted the
build on jenkins, and reopened the ticket
L414[08:27:54] *
Mimiru sighs
L415[08:30:47]
⇨ Joins: Turtle
(~SentientT@82-171-92-73.ip.telfort.nl)
L416[08:30:59] <sivael> o/
L417[08:31:05] <sivael> GL and don't
die
L418[08:33:34] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L419[08:34:07] <Saphire> sivael: _Open_GL?
:P
L420[08:34:19] <sivael> Open Good Luck,
yeah :D
L421[08:46:03]
⇨ Joins: Vexatos
(~Vexatos@p200300556E6CB713E4DF4EA7FD72E280.dip0.t-ipconnect.de)
L422[08:46:04]
zsh sets mode: +v on Vexatos
L423[08:50:29] ⇦
Quits: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de) (Remote
host closed the connection)
L424[08:55:03] ⇦
Quits: AlexisMachina (uid57631@2604:8300:100:200b:6667:3:0:e11f)
(Quit: Connection closed for inactivity)
L425[08:56:02] ⇦
Quits: cpup (~cpup@32.218.114.117) (Ping timeout: 189
seconds)
L426[08:56:45] *
Michiyo quits
L427[08:57:05] <Michiyo> We're not even
open yet and fuck today
L428[08:57:30]
⇨ Joins: cpup (~cpup@32.218.114.117)
L429[08:57:50] ⇦
Quits: andreww (~xarses@c-73-202-191-48.hsd1.ca.comcast.net) (Ping
timeout: 198 seconds)
L430[09:12:20] <Michiyo> Damn... open 10
minutes, and $140 sale.. woo
L431[09:16:17] <Vexatos> Michiyo, what are
you doing
L432[09:17:57] <sivael> I'm thinking he's
selling something
L433[09:18:36] <Vexatos> ( ͡° ͜ʖ ͡°)
L434[09:18:56] <Michiyo> She :P
L435[09:19:00] <Michiyo> And yes, I sold 3
PA speakers
L436[09:19:13] <sivael> oh, she then
:P
L437[09:19:22] <Vexatos> Hence my reaction
<_>
L438[09:19:23] <Michiyo> Mimiru/Michiyo
same person too :P
L439[09:19:24] <Vexatos> Michiyo,
PA?
L440[09:19:26]
⇨ Joins: andreww (~xarses@64.124.158.100)
L441[09:19:32] <sivael> I assume most
people are guys on the internetz, sorry:P
L442[09:19:33] <Michiyo> Public Address,
loud
L443[09:19:45] <Michiyo> "Power
Horn"
L444[09:19:45] <Vexatos> so.... a loud
speaker? :3
L446[09:20:26] <Vexatos> how big are they
>_>
L447[09:20:52] <Michiyo> 100 watt peak,
pretty big bell though
L448[09:23:41] <Vexatos> a 100W
SPEAKER?
L449[09:23:52] <Vexatos> ;_;
L450[09:23:54] <Vexatos> what did I
miss
L451[09:24:27] <Michiyo> Yes..?
L452[09:24:36] <Michiyo> IDK.. what'd you
miss?
L453[09:24:47] <Michiyo> I feel like I've
missed something
L454[09:25:27] <Michiyo> I'VE MISSED
EVERYTHING MAN
L455[09:25:31] <Vexatos> Well now I know
what you mean by "loud" speaker
L456[09:25:33] <Michiyo> EVERYTHING!
L457[09:26:25] <Michiyo> Now, as long as
the guy doesn't bring 'em back, I'll have a good start to the sales
day
L458[09:26:26] <Michiyo> lol
L459[09:26:42] <Vexatos> is it sales
day
L460[09:26:49] <Vexatos> you work at an
electronics shop?
L461[09:26:59] <Michiyo> I work at
RadioShack, so yeah
L462[09:28:00] <Michiyo> Our goal is $250
per person... we don't work for commision thankfully, but we've
been hitting FAR below even break even for the store daily
L463[09:28:03] ***
LearningFairy is now known as Daiyousei
L464[09:28:21] <Michiyo> the only reason
he's able to keep this store open is that he ALSO owns 5 Sears
stores..
L465[09:28:33] <Michiyo> So savings and
stuff goes into this store.
L466[09:28:49] <Michiyo> afk
customer
L467[09:28:50] ⇦
Quits: Nachtara (~Nachie@50-83-108-134.client.mchsi.com) (Quit:
geeettttttt dunked on!!!)
L468[09:35:25]
⇨ Joins: Jezza (~Jezza@185.44.151.22)
L469[09:35:27]
⇨ Joins: Inari
(~Pinkishu@p5DEC6DD9.dip0.t-ipconnect.de)
L470[09:38:22] <Michiyo> wooooo boss is
gone
L471[09:39:10] <Vexatos> sounds like a bad
boss
L472[09:39:15] <Vexatos> if you are happy
they're gone >_>
L473[09:40:55] <Michiyo> lmao nah, just
means I don't have to worry about him coming over here and finding
me on IRC
L474[09:42:13] <Vexatos> and he'll be like
"Hey I'm DeanIsaKitty" or something
L475[09:42:53] <Michiyo> lmfao
L476[09:43:07] <Michiyo> That'd be my
fuckin luck... :P
L477[09:43:39] <DeanIsaKitty> and now get
back to work lazyass
L478[09:43:44] <Michiyo> lmfao
L479[09:43:46] <Michiyo> <3
L480[09:43:51] <DeanIsaKitty> <3
:P
L481[09:43:55] <Michiyo> Hey I just made
you $140!
L482[09:44:03] <Michiyo> I can't make
money with customers that aren't here!
L483[09:44:22] <DeanIsaKitty> Then we
gotta catch them all (tm)
L484[09:44:35] <DeanIsaKitty> And make
them give us money :3
L485[09:45:00] <Michiyo> :P
L486[09:48:51] <Michiyo> The bad thing
about OVH servers...
L487[09:49:21] <Michiyo> Google makes me
do a fucking captcha on searches
L488[09:54:23] <DeanIsaKitty> I think it
does that with every static ip
L489[09:54:33] <Vexatos> Michiyo, duck
duck go :P
L490[09:54:48] <Inari> is ddg viable by
now?
L491[09:54:57] <DeanIsaKitty> Inari:
Depends what you want
L492[09:55:04] <Inari> good results
L493[09:55:04] <DeanIsaKitty> If you want
the same results as on Google, no
L494[09:55:13] <Michiyo> DeanIsaKitty:
"static" my home IP hasn't changed in *months*
L495[09:55:34] <DeanIsaKitty> If you're
mainly using it for programming info ddg is usually better than
Google
L496[09:55:55] <DeanIsaKitty> Michiyo:
Well, marked as static. I get captchas with all of my servers
iirc.
L497[09:56:32] <Skye> Maybe they block all
VPSes
L498[09:58:45] <DeanIsaKitty> Inari: You
know, "good results" is really subjective and not really
quantifyable. As said, you won't get the same results as on
Google.
L499[09:59:12] <Inari> its quantifiable
:p
L500[09:59:24] <Inari> i.e. are the
results i want on the top?
L501[10:00:12] <DeanIsaKitty> Inari: The
search query engine is a different one. To get the same results you
have to use a differen query. Also I'd say the google on is far far
more advanced, more idiot-proof and easier to master.
L502[10:00:56] <Inari> it doesnt matter if
its different :P and im not asking for the same results, just
asking for wha tim looking for to be on the first page
L503[10:01:22] <DeanIsaKitty> Inari: Then
every search engine will be equally as bad/good.
L504[10:01:37] <DeanIsaKitty> Given the
same crawled webspace.
L505[10:01:58] <DeanIsaKitty> And if you
purely go by amount of pages crawled only yahoo or Google are
viable anyway
L506[10:02:51] <Inari> :p
L507[10:02:59] <Inari> guess i'll have to
continue using google then :<
L508[10:03:39] <DeanIsaKitty> Inari: You
do whatever. But if you're asking if ddg is viable? Yes it is. I
find it way more usable for my use case than google ever was.
L509[10:04:05] <Inari> in what way? if you
apparenlty cant tell me that the things i want wíll be there
;)
L510[10:05:08] <DeanIsaKitty> Look, I'm
not a mindreader. I have no idea what you want. I turn to search
engines for only a very few things. And ddg makes those
easier.
L511[10:05:36] <Inari> what things are
those?
L512[10:05:46] <Inari> and well i mean in
general, not specific to any concrete search
L513[10:06:16] <DeanIsaKitty> Ok, in
general every search engine is about the same.
L514[10:06:33] <Skye> I had an idea
L515[10:06:42] <Skye> Google
MindRead
L516[10:06:51] <Inari> well if they'er all
the same then the one who has the biggest crawlspace is likely the
best?
L517[10:07:27] <DeanIsaKitty> Google has
the point where it will change over time and try to personalize
search results by analyzing your internet usage. Duckduckgo does
not do that.
L518[10:07:49] <Inari> i'm not really sure
how that would even help
L519[10:08:11] <DeanIsaKitty> Google's
personalization? Its pretty advanced by now.
L520[10:08:29] <Inari> yeah but uh.. what?
you always look at porn so we'll move porn more up in the
results?
L521[10:08:32] <DeanIsaKitty> If you use
chrome they basically have all you internet history to analyze
anyway
L522[10:08:59] <Inari> i dont think tech
is as advanced to be really helpful with that kind of analytics,
but eh
L523[10:09:18] <DeanIsaKitty> Inari: well,
more like: This gal asks programming question and likes
stackoverflow way more than lets say forums or yahoo answers or
what not. Lets move so way up for her.
L524[10:10:24] <Inari> the 2 things i hate
most on google is its insistance on that i use .de and sometimes it
will say "hey word A is equal to word B so i'll include both
in the results" ~.~
L525[10:11:02] <DeanIsaKitty> Again,
google's search engine is way more advanced than most people know,
but you know... you have to learn to use it.
L526[10:11:31] <Inari> the only way to
avoid it doing that is literally adding -"word B"
XD
L527[10:14:11] <DeanIsaKitty> Inari: Also
google doesn't care what version I use. If I go on google.hu I stay
on .hu no matter what I search for.
L528[10:16:32] <sivael> Google does a lot
of personalization
L529[10:16:46] <sivael> I talked to one
guy on a conference that was doing data mining for google
L530[10:16:49] <Inari> DeanIsaKitty: well
not for me
L531[10:16:50] <Inari> :p
L532[10:17:21] <sivael> and he wrote
scripts that basically looked for words on the page content to
figure out what this page is about - all on users computers
L533[10:17:39] <sivael> and then those
guys analyze all that and list all things you're interested
in.
L534[10:17:56] <sivael> Say I recently
started using intellij idea and idea changed results for me
L535[10:18:02] <sivael> in google
L536[10:18:14] <sivael> so there's a lot
of this personalization thing going on
L537[10:19:10] <DeanIsaKitty> sivael: I
have the advantage that a) I'm blocking google's scripts b) I'd be
considered garbage anyway because you can't really sell me anything
>P
L538[10:22:12] <sivael> yeah; well it's
not just about sales
L539[10:22:35] <sivael> china already does
the "good citizen" facebook-like game
L540[10:22:42] <DeanIsaKitty> sivael: In
the end it is always in some way for sales. It's Google. Not a
non-profit.
L541[10:22:53] <DeanIsaKitty> Or a state
like China.
L542[10:23:18] <DeanIsaKitty> Google
doesn't care if you're an obedient citizen or an anarchist as long
as you give them money.
L543[10:23:49] <sivael> but the people
paying google to find anarhcosts and obedient citizens do
care.
L544[10:23:50] <sivael> ;P
L545[10:24:02] <sivael> so yeah
L546[10:24:07] <sivael> tinfoil hats
off
L547[10:24:16] <DeanIsaKitty> Well, that's
mostly the US gov and last time I checked they didn't really pay a
whole lot :P
L548[10:25:19]
⇨ Joins: Keanu73
(~Keanu73@host-92-19-196-194.as13285.net)
L549[10:26:35] <sivael> :)
L550[10:28:15] *
Michiyo quits again
L552[10:34:51] <sivael> ;p
L553[10:37:23] <Michiyo> Fuck. Rekt
L554[10:37:28] <Michiyo> Fuckin*
L556[10:39:43] <MichiBot> Inari:
Drywall Art Sculpture by Bernie Mitchell | length:
5m
47s | Likes:
1965 Dislikes:
29 Views:
334969 | by
DrywallNation
L557[11:11:55] ***
Gavle|Away is now known as Gavle
L558[11:12:11] <Gavle> Hello
L559[11:12:25] ***
Gavle is now known as Guest40781
L560[11:13:13] ***
Guest40781 is now known as Gavle
L561[11:13:21] <Gavle> What
L562[11:13:30] <Gavle> Did someone
register Gavle?
L563[11:13:43] ***
Gavle is now known as Guest77453
L564[11:13:51] <g> [17:13:41] -NickServ-
Information on Gavle (account Kodos):
L565[11:13:51] <g> [17:13:41] -NickServ-
Registered : Feb 02 06:35:39 2016 (10 hours, 38 minutes, 2 seconds
ago)
L566[11:13:51] <g> [17:13:41] -NickServ-
User reg. : May 01 02:36:44 2013 (2 years, 39 weeks, 4 days,
14:36:57 ago)
L567[11:13:59] <Guest77453> Kodos!
L568[11:14:00] <Michiyo> That was fucking
rude...
L569[11:14:06]
⇨ Joins: fotoply
(~fotoply@2-104-228-18-static.dk.customer.tdc.net)
L570[11:14:28] <Guest77453> That is so not
cool
L571[11:14:39] <g> poke #dragonweyr about
it
L572[11:14:47] <g> hardly the first time
this has happened to someone
L573[11:14:49] <Guest77453> Oh, I
will
L574[11:14:54] <Michiyo> I'll have a chat
with him about it when he gets on...
L575[11:15:01] <Michiyo> assuming Esper
netops don't ban him...
L576[11:15:02] <Guest77453> Thank you
Michiyo
L577[11:15:09]
⇨ Joins: sciguyryan (~sciguyrya@95.211.188.31)
L578[11:15:15] <g> they don't tend to ban
for long for that
L579[11:15:19] <g> most I've seen is a
week
L580[11:15:27] <Michiyo> It's a douche
move though.. for sure
L581[11:15:49] <g> honestly, having
ownership of your own nick is kinda important
L582[11:15:57] <Guest77453> And I thought
I had no need of registering because I had a bouncer
L583[11:16:07] <g> oh, no, you should
always register, lol
L584[11:16:07] <Guest77453> Which changes
my nick when I am away.......m
L585[11:16:24] <gamax92> Well you did,
should have registered Gavle and Gavle|Away
L586[11:16:25] <Michiyo> %tell Kodos if
you get this before you get netop slapped you might want to drop
the Gavel nick.. that was a pretty dick move.
L587[11:16:25] <Guest77453> Believe me, I
will
L588[11:16:27] <MichiBot> Michiyo: Kodos
will be notified of this message when next seen.
L589[11:16:28] <gamax92> but wow Kodos
...
L590[11:16:48] <g> Michiyo: you should
really use memoserv, it might send him an email
L591[11:16:56] <g> I have mine set up to
do that
L592[11:17:05] <Michiyo> private int
numFucksGiven -1;
L593[11:17:06] <Michiyo> :P
L594[11:17:16] <gamax92> Michiyo: no
equals?
L595[11:17:28] <Guest77453> He wants to
subtract
L596[11:17:32] <Michiyo>
toLazyToProperSyntaxBitches
L597[11:17:37] <Guest77453> Maybe
L599[11:17:40] <gamax92> She*
L601[11:17:42] <Michiyo> No, I declared
it...
L603[11:17:46] <Michiyo> so can't subtract
it
L604[11:17:47] <Michiyo> :p
L605[11:18:06] *
CompanionCube just bought a server for a year using surplus
bitcoin
L606[11:18:07] <gamax92> good morning btw
:p
L607[11:18:16] <gamax92> yay servers
L608[11:18:28] <Michiyo> K, memoserved
too
L609[11:18:42] <g> lots of people don't
check their memoserv, but have emails turned on
L610[11:18:42] <g> so yknow
L611[11:18:54] <sivael> Would a patch
getting the block type on detect() as a third return parameter in
LUA be accepted into the OC repo?
L612[11:18:56] <gamax92> a netcat listen
won't do multiple connections right?
L613[11:19:01] *
Michiyo sips her peach tea
L614[11:19:10] <Michiyo> s/LUA/lua/
L615[11:19:11] <Kibibyte> <sivael>
Would a patch getting the block type on detect() as a third return
parameter in lua be accepted into the OC repo?
L616[11:19:16] <CompanionCube> 40GB disk,
1TB bw, 2.40Ghz CPU, 1GB RAM, 1 IPv4
L617[11:19:17] <gamax92> normally it just
(I love peach tea :D) disconnects after the client drops
L618[11:19:33] <sivael> Michiyo: Apricot +
Peach is purrrfect
L619[11:19:42] <Michiyo> gamax92: yeah,
IIRC I had to set mine to do listens in a loop
L620[11:19:55] <Michiyo> so when it exited
it just started a new one
L621[11:20:00] <Inari> gamax92: that
random () though
L622[11:20:01] <gamax92> okay this is
good, I want one client only anyway, /me/
L623[11:20:25] <Michiyo> gamax92: then you
should be good
L624[11:20:30] <Izaya> Oops
L625[11:20:33] <Inari> peach tea isnt even
a thing
L626[11:20:41] <Michiyo> I have my new
server ordered, just have to pay for it \o/
L627[11:20:45] ***
cbcercas is now known as cbcercas|AFK
L628[11:20:48] <Michiyo> 8core 16 thread,
32GB
L629[11:20:49] <Izaya> stayed up to 4:30
AM watching The 100
L630[11:21:02] <gamax92> Michiyo: what's
that compare to currently?
L631[11:21:12] <Michiyo> Currently Midori
is 8 core, 64 GB...
L632[11:21:19] <g> Michiyo, how do you
have money for these things lol
L633[11:21:26] <Michiyo> this new box is
only $109 a month though, instead of $160+
L634[11:21:38] <Michiyo> I don't pay for
the current box, and.. I have a job
L635[11:21:38] <Michiyo> :p
L636[11:21:45] <g> I have a job too
L637[11:21:48] <gamax92> fucking hell what
is this eos lag bullshit
L638[11:21:51] <g> no damn way I'd be able
to afford that much per month
L639[11:21:55] <gamax92> my interent is
fine atm
L640[11:22:14] <g> check the route
L641[11:22:16] <Michiyo> gamax92: no
clue.. I'm connected to eos with no issue currently, and bast, for
that matter
L642[11:22:28] <gamax92> wat I thought you
said bast was dead
L643[11:22:59]
⇨ Joins: DaMachinator (webchat@71.46.246.100)
L644[11:23:05] ⇦
Parts: DaMachinator (webchat@71.46.246.100) ())
L645[11:23:35] <Michiyo> bast isn't
dead... it's just a single core with shit for RAM
L646[11:23:51]
⇨ Joins: h3po
(~h3po@aftr-5-146-248-114.unity-media.net)
L647[11:24:11] <Michiyo> 93% RAM used, and
usualy 60% CPU
L648[11:24:19] <Michiyo> It's how I IRC
though
L649[11:24:36] <Michiyo> It also runs my
mail server
L650[11:25:22] <Michiyo> [17:11:13]
<gamax92> is bast still available for server usage?
L651[11:25:22] <Michiyo> [17:54:43]
<Mimiru> Not really, it's a single core with like 80% of it's
RAM used
L652[11:25:34] <Michiyo> Never, did I say
it was dead.
L653[11:25:34] <Michiyo> lol
L654[11:26:44] <gamax92> .-.
L655[11:29:48] <Michiyo> Just that it's
currently useless for usage..
L656[11:29:54] <Michiyo> soon it'll be a
decent server again
L657[11:30:14] <gamax92> Make Bast Great
Again
L658[11:30:14] *
gamax92 shot
L660[11:30:31] <Guest77453> Shots
fired?
L661[11:30:32] <g> any splatoon people
here?
L662[11:30:38] <g> nintendo did the
thing
L664[11:30:40] <MichiBot> g:
Splatoon
シオカライブ2016 (Squid Sisters Live 2016) @ Niconico Tokaigi 2016 |
length:
24m 19s | Likes:
9177 Dislikes:
143 Views:
324394 | by
kuroneko0509
L665[11:30:52] <gamax92> oh no ...
L666[11:31:00] <g> that's right
L667[11:31:02] <g> it's a hologram
concert
L669[11:31:44] <gamax92> hologram's are
neat though
L670[11:32:00] <g> this is not something I
ever expected from nintendo
L671[11:32:06] <g> as a fan of the
game/pair in general though: awesome \o/
L672[11:32:41] <Michiyo> g, ever get
anywhere with that inspircd parser?
L673[11:32:52] <g> it's in progress
L674[11:32:57] <Michiyo> kk
L675[11:32:57] <g> I finished the actual
parsing part
L676[11:33:03] <g> but the docs I have are
for protocol 1.2 or so
L677[11:33:07] <g> which is definitely not
2.x
L678[11:33:13] <Michiyo> lol
L679[11:33:17] <g> so I'm going to have to
figure out how to turn it into 2.x
L680[11:33:32] <g> I don't think it's
actually that different (according to the anope source) but
L681[11:34:19] <g> yeah, I feel like
that'll be unfun
L683[11:34:43] <g> I'm a little worried
about how well my event loop will handle the burst as well
L684[11:34:55] <g> then again, it handles
mumble spamming the fuck out of it with voice packets, so it
/should/ be fine
L687[11:35:33] <g> whose bot is that, by
the way?
L688[11:35:37] <g> someone keeps putting
it in my channels
L689[11:35:39] <Michiyo> Lizzy's
L690[11:35:50] <Michiyo> Wait.. someone is
putting EnderBot2 in your channels..?
L691[11:35:52] <g> it's banned from all my
channels at this point
L693[11:36:08] <g> it's been banned for a
while, so it wasn't recent
L694[11:36:18] <g> was particularly
annoying in #glowstone
L695[11:36:47] <Michiyo> Umm, I'm not sure
who all has access to EnderBot2...
L696[11:36:54] <Michiyo> other than Lizzy
of course..
L697[11:36:56] * g
shrugs
L698[11:37:01] <g> it's not a big deal,
just an observation
L699[11:37:28] <Michiyo> %seen Lizzy
L700[11:37:29] <MichiBot> Michiyo: Lizzy
was last seen 3h 45m 30s ago.
L701[11:37:31] <Guest77453> Was I being
annoying before today?
L702[11:37:42] <g> you're annoying?
til
L703[11:37:43] <Michiyo> No more than any
other user...
L704[11:37:45] <Michiyo> :P
L705[11:37:47] <Guest77453> P.S. I am
Gavle
L706[11:37:52] * g
knows that
L707[11:37:56] <Michiyo> indeed.
L708[11:38:03] <Guest77453> Welp
L709[11:38:16] <g> by the way
L711[11:38:22] <g> [17:37:55] Gavle
actually using host 108.226.6.195
L712[11:38:22] <g> [17:37:55] Gavle was
logged in as Kodos
L713[11:38:30] <g> he didn't even try to
mask his ip
L715[11:39:05] <g> (that's /whowas, for
the uninitiated)
L716[11:39:07] <Michiyo>
webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net yes it points
that out in /ns info too
L717[11:39:14] <g> ah yeah, so it
does
L718[11:40:03] ⇦
Quits: sciguyryan (~sciguyrya@95.211.188.31) (Remote host closed
the connection)
L719[11:40:14]
⇨ Joins: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
L720[11:40:14]
zsh sets mode: +v on Kodos
L721[11:40:21] <g> ah, there he is
L722[11:40:29] * g
ties Kodos to a chair and gets out the thumbscrews
L723[11:40:41] <Kodos> brb
L724[11:40:41] <Guest77453> Kodos
L725[11:40:42] ⇦
Parts: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
())
L726[11:40:48] <Izaya> Kin- uh
L727[11:41:10] <Guest77453> Uh
L728[11:41:24] <g> eh, give him a few
minutes
L729[11:41:32] <g> then poke the opers if
you haven't
L730[11:41:33] <lashtear> is that like a
pokemon chanting their own name?
L731[11:42:10] <Michiyo> <NickServ>
Gavle is not registered.
L732[11:42:17]
⇨ Joins: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
L733[11:42:17]
zsh sets mode: +v on Kodos
L735[11:42:19] <Kodos> Mkay
L736[11:42:27] <Guest77453> Kodos
L737[11:42:30] <Michiyo> Guest77453:
^
L738[11:42:32] <Michiyo> read up
L739[11:42:33] ***
Guest77453 is now known as Gavle
L740[11:42:39] <Michiyo> now /ns register
that shit
L741[11:42:41] <Gavle> I saw
L742[11:42:46] <Gavle> Oh, I will
L743[11:43:10] <Lizzy> meep?
L744[11:43:42] <Michiyo> Ah, Lizzy was
going to ask about EnderBot2 joining other peoples channels..
lol
L745[11:43:45] <Kodos> Michiyo: I was
investigating the render thing more last night, and IE's Assembler
GUI was showing water as black, and lava as a dark red
L746[11:43:56] <Kodos> So it might be a
hardware issue on my end
L747[11:43:59] ***
amadornes is now known as amadornes[AFK]
L748[11:44:00] <Lizzy> Michiyo, it
shouldn't be joining other channels....
L749[11:44:08] <Lizzy> what ones is it
joining?
L750[11:44:10] <g> Lizzy, does it have an
invite trigger?
L751[11:44:16] <g> a while back it was in
#glowstone
L752[11:44:17] <Lizzy> g, only when i do
it
L753[11:44:20] <Michiyo> Kodos: well, I
did notice oddities with rendering so I'm going to look into
it
L754[11:44:23] <Lizzy> did it say anything
when it joined?
L755[11:44:26] <Kodos> Okay
L756[11:44:28] <g> not that I
remember
L757[11:44:31] <Lizzy> hmm
L758[11:44:34] <g> it was responding to
triggers though
L759[11:44:37] <Michiyo> I thought I had
it nailed down this morning, but I was wrong
L760[11:44:39] <Izaya> ._. Router died
again
L761[11:44:54] <Lizzy> g, yeah. it's not
locked down to channels
L762[11:45:07] <g> well, yeah, but
pointing out that it was actually working
L764[11:46:33] ***
Keridos is now known as Keridos|away
L765[11:46:58] <Michiyo> Hmm... michibot
has an invite handler.. but IIRC it only works if someone on it's
admin list is the inviter..
L767[11:47:18] <g> yup, both ignore my
invite
L768[11:47:37] <Michiyo> yay I didn't derp
that up lol
L770[11:48:05] <Michiyo> I need to port
the rest of the listeners over to the bridge compatible one..
L771[11:48:19] <Michiyo> cause ATM %quote
is the only one that works from the bridge
L772[11:48:33] <Lizzy> then how the fuck
does it get into other channels...
L773[11:48:35] <Lizzy> wait
L774[11:48:57] <g> listeners?
L775[11:48:57] <Lizzy> g, try sending
"join #somechannel" to EnderBot2 in a PM
L776[11:49:29] <g> ignor'd
L777[11:49:48]
⇨ Joins: DaMachinator (webchat@71.46.246.100)
L778[11:49:54] <Michiyo> yeah, the
commands all implement a listener class, I need to port it over to
the new one that works with the bridge
L779[11:49:57] ⇦
Quits: Izaya (~Izaya@210.1.213.55) (Ping timeout: 198
seconds)
L780[11:50:09] <g> What language
again?
L781[11:50:12] <Michiyo> Java
L782[11:50:13] ⇦
Parts: DaMachinator (webchat@71.46.246.100) ())
L783[11:50:26] <g> ah okay
L784[11:50:28] <Gavle> Gavle is now
registered
L785[11:50:33] <g> was going to ask why
you weren't passing around event listening functions
L786[11:50:35] <g> but yeah, java
L788[11:50:43] <Lizzy> g, i have no idea
why it joins random channels. if it happens again can you tell me?
I'll look in the console to see what caused it
L789[11:50:43]
⇨ Joins: Keanu73_
(~Keanu73@host-92-19-196-194.as13285.net)
L790[11:50:57] <g> Lizzy: will do
L791[11:51:02] ***
Keanu73 is now known as Guest78512
L792[11:51:02] ***
Keanu73_ is now known as Keanu73
L793[11:51:05] <g> it hasn't happened for
some time now, so you probably fixed it already
L794[11:51:14] <Lizzy> nope
L796[11:51:24] <Lizzy> i haven't touched
the code in months
L797[11:52:12] ⇦
Quits: Guest78512 (~Keanu73@host-92-19-196-194.as13285.net) (Ping
timeout: 198 seconds)
L798[11:52:31] ***
Gavle is now known as Gavle|AFK
L799[11:52:36] <Michiyo> I need to unfux a
lot of it..
L800[11:52:49] ***
Gavle|AFK is now known as Gavle
L801[11:56:02]
⇨ Joins: Izaya (~Izaya@210.1.213.55)
L802[11:59:31] <Lizzy> .-. W10 pls
L803[11:59:32] <g> you learn a lot about
how to structure this kind of thing as you go
L804[11:59:43] <g> Ultros is on (at least)
its third iteration by now
L805[12:00:34] ⇦
Quits: Vexatos
(~Vexatos@p200300556E6CB713E4DF4EA7FD72E280.dip0.t-ipconnect.de)
(Quit: I guess I have to go now. Bye ✔)
L806[12:01:28] <Inari> Lizzy: touch the
code
L807[12:01:29] <Inari> fonlde it
L808[12:01:31] <Inari> squeeze it
L809[12:01:33] <Inari> rub it all
over
L810[12:01:50] <Lizzy> okay, don't
hibernate w10. the start menu and other system app stuff dont
work
L811[12:02:04] <g> Lizzy: there's a bunch
of solutions to that
L812[12:02:06] <Inari> works fine most of
the time
L813[12:02:08] <Inari> just breaks
sometimes
L814[12:02:10] <g> do you have the
built-in admin account enabled?
L815[12:02:22] <Lizzy> i'm not sure. afaik
i am the admin
L816[12:02:32] <g> yeah, but the one
called "Administrator"
L817[12:02:37] <g> if not, enable it, set
a password, and login as it
L818[12:02:45] <g> you don't have to sign
into it again, just do it once
L819[12:02:48] <g> leave it enabled
L820[12:03:14] <g> if that doesn't solve
your problem forever, then you need to replace your tiles database
with a clean set
L821[12:03:30] <g> that's in
AppData\Local\TileDataLayer
L822[12:03:51] <g> login as a user with a
working start menu, delete the one from your user and copy it from
the user that works
L823[12:04:01] <g> then restart
L824[12:04:07] <g> you'll lose your tiles,
so be warned
L825[12:04:18] *
Inari loses her tiles
L826[12:04:26] <Lizzy> not sure, but i
can't enable it because i ccan't get into the start menu
L827[12:04:30] <g> and if THAT doesn't
work
L828[12:04:32] <g> yes you can
L829[12:04:34] <g> win+r, contrl
L830[12:04:38] <g> control*
L831[12:05:08] <Inari> or just win+x and
click control panel
L832[12:05:11] <g> if that doesn't fix ye,
you'll need to reinstall all your modern apps
L833[12:05:15] <Michiyo> lunch
L834[12:05:22] <g> you can do that by
launching powershell as admin from the task manager
L835[12:05:23] <g> and doing
L836[12:05:24] <g> Get-AppxPackage
-allusers | foreach {Add-AppxPackage -register
"$($_.InstallLocation)\appxmanifest.xml"
-DisableDevelopmentMode}
L837[12:05:42] <Inari> almost soundsl ike
linux by now
L838[12:06:03] <g> powershell is C# in a
terminal with some unix tools basically
L839[12:06:34] ⇦
Quits: cpup (~cpup@32.218.114.117) (Ping timeout: 186
seconds)
L840[12:06:39] <g> Lizzy: just make sure
you do that final step post-reboot as it won't work in some error
states
L841[12:06:57] <g> on windows 10, stuff
like the start menu, notifications panel and volume control popup
are all modern apps, which is why this works
L842[12:09:48]
⇨ Joins: cpup (~cpup@32.218.113.151)
L843[12:11:34] ⇦
Quits: Izaya (~Izaya@210.1.213.55) (Ping timeout: 198
seconds)
L844[12:11:57] <Lizzy> a restart fixed it
for now
L845[12:12:03] <g> it'll go again
L846[12:12:07] <g> always does
L848[12:17:13]
⇨ Joins: Izaya (~Izaya@210.1.213.55)
L849[12:31:52]
⇨ Joins: meep (uid94726@2001:67c:2f08:6::1:7206)
L850[12:32:04] <meep> sup
L851[12:32:16] <Gavle> not much
L852[12:32:17] <gamax92> hey
L853[12:32:32] <meep> gamax92!
L854[12:32:45] *
Saphire meeps
L855[12:33:22] <gamax92> oh, you changed
the sorting on oclogs Michiyo
L856[12:33:55] <Mimiru> Yeah did it mess
up your script?
L857[12:34:00] <Mimiru> I can swap it
back
L858[12:34:11] <DeanIsaKitty> Ryan
Reynolds though .... Inari, do you know that when you get
irrationally jealous of an acress when she gets to kiss Ryan and
you're like "if that were me I would have that scene take like
a hundred takes" <.>
L859[12:34:20] <gamax92> Mimiru: nah
L860[12:34:56] ⇦
Quits: cpup (~cpup@32.218.113.151) (Ping timeout: 189
seconds)
L861[12:35:02] <Mimiru> yesterday.php and
today.php ftw :p
L862[12:35:04] <gamax92> my script takes
the current date and then gets each day before until it has a
certain number of lines (for hexchat's scroll back limit.)
L863[12:35:07] <Inari> ryan who?
L864[12:36:14] <gamax92> which, sometimes
depending on how much activity is more than today and
yesterday
L866[12:36:29] <g> He looks like a
dick
L867[12:37:20]
⇨ Joins: cpup (~cpup@32.218.113.197)
L868[12:37:42] <meep> g: that's what she
wants tho, right?
L869[12:37:44] *
meep hides
L870[12:37:54] ***
rakiru|offline is now known as Kasen
L871[12:37:57] <g> I was waiting for
someone to make that joke
L873[12:38:01] <gamax92> a wild Kasen
appeared
L874[12:39:16] <DeanIsaKitty> g: I was
thinking about making that joke myself but ... yeah ... in the end
you may be serious or something
L875[12:39:26] <g> I was serious
L876[12:39:28] <g> he does look like a
dick
L878[12:39:31] <g> but I can take a
joke
L879[12:39:53] <Mimiru> Kodos, could you
test #90 soon?
L880[12:40:05] <Mimiru> Or better
yet
L881[12:40:06] <DeanIsaKitty> g:
<.<
L882[12:40:10] <Mimiru> I'll run it on
OS_Test
L883[12:40:38] <Kodos> Did it happen to be
a GL issue
L884[12:40:50] <Mimiru> it's a MC lighting
system is fucking stupid issue
L885[12:40:56] <Mimiru> It's not
"fixed"
L886[12:40:58] <Mimiru> it's a temp
fix
L887[12:41:06] <Mimiru> but it's as good
as it's going to get for now
L889[12:42:03] <g> DeanIsaKitty: you
alright over there?
L890[12:42:42] <meep> DeanIsaKitty: No
train for another while, it's cold, help me D:
L891[12:42:44] <Kodos> I only asked
because it made my IE Assembler's GUI render water black, and lava
a dark red
L892[12:43:03] <Mimiru> The GL stuff is
pretty standard... so IDK
L893[12:43:13] <Kodos> And someone
mentioned in IE's channel it might be a GL setting not being
changed properly or something
L894[12:43:18] <Kodos> No idea
either
L895[12:43:20] <Kodos> I'll check it out
in a bit
L896[12:43:32] <DeanIsaKitty> g: Yeah I
am. I don't really care what other think though so I won't go full
fangirl on your sorry ass. :P
L897[12:43:35] <meep>
#Mimimimibrokeit
L898[12:43:44] <Mimiru> meep, I didn't
write it.
L899[12:43:56] <DeanIsaKitty> meep: Run
home ;P
L900[12:44:06] <meep> Aww... Who else to
blame though? ._.
L901[12:44:27] <g> DeanIsaKitty: I don't
mind really, most of my friends do that :P
L902[12:44:45] <DeanIsaKitty> g: Go full
fangirl on you? :P
L903[12:44:46] <meep> DeanIsaKitty: It's
far, raining and I don't know which way
L906[12:44:51] <Mimiru> Kodos, build is
done
L907[12:45:00] <DeanIsaKitty> meep: Bitch,
bitch & google maps
L908[12:45:06] *
Lizzy waits for her dad's printer to do it's complex startup cycle
so she can debug it
L910[12:45:21] <meep> Mimiru: 3G
L911[12:45:24] <meep> Nuff said.
L912[12:45:34] <DeanIsaKitty> g: Nah, I'm
not your friend anyway :P
L913[12:45:44] <g> DAT BURN
L915[12:45:58] <meep> LIZZY!!!
L916[12:46:09] *
meep flops on Lizzy
L917[12:46:14] *
Lizzy pets vifino
L918[12:46:23] *
meep purrs
L919[12:46:32] <DeanIsaKitty> g: You said
something bad about Ryan, we can't be friends anymore :P
L920[12:46:34] <Lizzy> what's CUPS'
default port?
L921[12:46:41] <gamax92> 631?
L922[12:46:56] <Lizzy> yup
L923[12:46:58] <Lizzy> thanks
gamax92
L924[12:46:59] <gamax92> :D
L925[12:47:59] <meep> Yeah, 631
L926[12:48:09] <meep> Also woot,
train
L927[12:48:19] <gamax92> choo choo
L928[12:48:30] <meep> choo chooooo
L929[12:48:31] <Mimiru> Anyway
L930[12:48:32] <Mimiru> back to work
L931[12:49:15] ⇦
Quits: Icedream (~icedream@212-83-173-97.rev.poneytelecom.eu)
(Remote host closed the connection)
L932[12:49:35] <meep> Oh, before I forget,
DeanIsaKitty: You're an idiot and adorable. <3
L933[12:49:42] <meep> Muahahahaha
>:D
L934[12:49:46] <DeanIsaKitty> meep: Yes
but I'm not.
L935[12:50:10] <meep> DeanIsaKitty: Don't
make me explain why you are
L936[12:50:18] <gamax92> help cat is
rubbing herself up against me
L937[12:51:00] <meep> gamax92: cute, get
tuna and put it away, she'll go to the tuna
L938[12:51:12] <meep> can confirm, would
be what I'd do
L939[12:51:12] <gamax92> but moi
munies
L940[12:51:46] <gamax92> does train into
wifi?
L941[12:51:47] <meep> you can either be
happy and loved or have the money to buy stuff you want
L942[12:51:58] <meep> no, 3G still
L943[12:52:30] <gamax92> what if train had
deditated mobile signal and a wireless hotspot from that
L944[12:52:47] <meep> I couldn't afford
it
L945[12:53:04] <gamax92> why would you be
paying for that o.o;
L946[12:53:25] <meep> because life is bad
and nothing is free?
L947[12:54:00] <DeanIsaKitty> meep: So you
never were in amsterdam? <.<
L948[12:54:51] ***
amadornes[AFK] is now known as amadornes
L949[12:55:31]
⇨ Joins: Icedream
(~icedream@212-83-173-97.rev.poneytelecom.eu)
L950[12:55:34] <meep> DeanIsaKitty:
No.
L951[12:55:34] <meep> "free"
doesn't only mean money, though
L952[12:58:00] <Skye> in the UK we only
get the train wifi if we get moved to first class because they
can't fit my sister's wheelchair anyway else
L953[12:59:07] <Lizzy> c2c doesn't have
free wifi on the trains :<
L954[13:00:35] <Skye> ouch
L955[13:00:56] <Skye> I bet your phone
would be faster though
L956[13:00:59] <meep> yay, almost
home
L957[13:01:03] <Michiyo> Ugh.... wish this
fucking HEADACHE WOULD GO AWAY
L958[13:01:07] <Skye> Virgin Trains wifi
is really slow
L959[13:01:10] <Michiyo> But.. back to
work so.. booo
L960[13:01:24] <Lizzy> Skye,
L961[13:01:27] <Lizzy> ¬_¬
L962[13:01:28] <DeanIsaKitty> Michiyo: Did
you know though that sex can help against headache? :P
L963[13:02:01] <Skye> why the ¬_¬ face?
I'm really confused now
L964[13:02:04] <Michiyo> DeanIsaKitty: Not
my migraines, climax makes them 10x worse. and there everyone goes,
your daily TMI from Michiyo.
L965[13:02:11] <Lizzy> Skye, i get 3G/3.5G
around most of my usual stations, though i get 4G at places like
work statopns
L966[13:02:35] <DeanIsaKitty> Michiyo: Sex
does also make you short sighted. >P
L967[13:03:12] <Michiyo> Well no wonder I
can only see about 6 inches in front of my face without my
glasses.
L968[13:03:14] <Skye> I think it was
3G/3.5G on the phone, Lizzy
L969[13:03:51] <DeanIsaKitty> Michiyo:
^^
L970[13:03:53] <Lizzy> Skye, because i hit
enter too early
L972[13:04:23] <gamemanj> DeanIsaKitty:
That... just... what
L973[13:04:31] <Michiyo> lol
L974[13:04:35] <Lizzy> Skye, that was in
reply to your question about the ¬_¬
L975[13:04:59] <gamemanj> DeanIsaKitty: I,
under my position as chief do-nothinger, officially resign from
attempting to parse english sentences.
L976[13:05:24] <Michiyo> gamemanj: it's
for the best really
L977[13:05:36] <Lizzy> lol
L978[13:06:12] <Skye> so...
L979[13:06:13] <Michiyo> I want to default
to my native language... but I don't think people would like that
much sarcasam..
L980[13:06:28] <Skye> DeanIsaKitty is a
pervert? :P
L981[13:06:36] <meep> Lizzy: hop on mumble
in a few minutes and wait for me ?
L982[13:06:39] <DeanIsaKitty> Michiyo: Oh,
you're also fluent in ironic?
L983[13:06:41] *
gamemanj nods towards Skye
L984[13:06:51] <DeanIsaKitty> Skye: What?
How would you ever come to that conclusion?
L985[13:06:52] <Michiyo> DeanIsaKitty:
Indeed.
L986[13:06:53] <Michiyo> :p
L987[13:07:18] <meep> Skye: Yes, can
confirm.
L988[13:07:27] <DeanIsaKitty> meep: Don't
make it worse.
L990[13:07:51] <Lizzy> meep, currently
fixing my dad's printer
L991[13:07:52] <gamemanj> I'm fluent in
madness.
L992[13:09:02] <Michiyo> so... Xen
snapshots and rsync to remote box..
L993[13:09:09] <Skye> Michiyo may also be
a bit of a pervert. :P
L994[13:09:18] <Michiyo> "a bit"
pffft lol
L995[13:09:27] <Skye> a lot?#
L996[13:09:31] <meep> "a
bit"
L997[13:09:31] <gamemanj> here, have this
understatement award
L998[13:09:32] <Michiyo> Closer.
L999[13:09:39] <DeanIsaKitty> Skye: Oh, so
everybody who dares to say the word Sex is a pervert now?
L1000[13:09:48] <meep> Sex!
L1001[13:09:58] *
gamemanj gets out the notepad
L1002[13:10:03] <DeanIsaKitty> THis just
in: MEEP CONFIRMED PERVERT
L1003[13:10:27] <Skye>
DeanIsaKitty++
L1004[13:10:30] *
gamemanj starts taking names
L1005[13:10:36]
⇦ Quits: ^v (~^v@c-68-41-215-101.hsd1.mi.comcast.net) (Remote
host closed the connection)
L1006[13:11:03] <gamemanj>
"DeanIsAKitty -> DANGEROUS, PLACE INTO LEADED BOX"
"meep -> Mostly Harmless"
L1007[13:11:06] <gamemanj> Anyone
else?
L1008[13:11:19] <meep> Nothing ne- I MEAN
WHAT
L1009[13:11:27] <DeanIsaKitty> Are you
sure lead can contain me?
L1010[13:11:50] *
gamemanj removes "leaded" and "mostly", and
replaces them with "bedrock" and
"not"
L1011[13:12:01]
⇨ Joins: ^v
(~^v@c-68-41-215-101.hsd1.mi.comcast.net)
L1012[13:12:12] <meep> Mostly...
harmless?
L1013[13:12:14] <meep> :<
L1014[13:12:26] <gamemanj> meep: I
changed that. It now says "Not harmless"
L1015[13:12:36] <DeanIsaKitty> gamemanj:
Do you think rock can contain me?
L1016[13:12:41] <Skye> meep, it's a
reference to the hitchhiker's guide to the galaxy
L1017[13:12:47] <Skye> funy
L1018[13:12:50] <Skye> *funny
L1019[13:13:04] *
gamemanj swaps "bedrock" for "Divanium
Chloride"
L1020[13:13:06] <Skye> it predicted that
we'd still be interested in digital watches
L1021[13:13:19] <Skye> it also predicted
that we'd have updatable ebooks
L1022[13:13:41] <gamemanj> it also kind
of predicted that there might be a problem storing information on
everything in the universe
L1023[13:13:54] <gamemanj> How many words
were in there on Earth, again?
L1024[13:13:55] <DeanIsaKitty> gamemanj:
So you went from radiation protection to little protection to
imaginary protection. Nice
L1025[13:14:20] <gamemanj> Ah, but
imaginary protection beats anything else
L1026[13:14:24] *
Skye puts DeanIsaKitty in a basket for kittens
L1027[13:14:26] <gamemanj> Since then if
it goes wrong
L1028[13:14:33] <gamemanj> I can go blame
the contractor!
L1029[13:14:34] *
DeanIsaKitty meows at Skye
L1030[13:14:35] <gamemanj>
MWUHAHAHAHAHAHAHAHAHAHAH
L1031[13:14:54] <gamemanj> (aka.
"not my fault")
L1032[13:15:25] <gamemanj> (Also, if you
ask "what contractor", these materials for imprisoning
kitties are coming from somewhere)
L1033[13:15:26] <Skye> I found the
perfect place for DeanIsaKitty
L1034[13:15:32] <gamemanj> I have a
better place.
L1035[13:15:39] <Skye> wha?
L1036[13:15:39] <gamemanj> Actually
L1037[13:15:45] <gamemanj> I found the
perfect place
L1038[13:15:47] <meep> Skye: I take
DeanIsaKitty.
L1039[13:15:47] <gamemanj> The best
place
L1040[13:16:03] *
meep picks up DeanIsaKitty and pets
L1041[13:16:10] *
DeanIsaKitty purrs at meep
L1042[13:16:10] *
gamemanj puts DeanIsaKitty into a certain box, with a name I can't
spell... Begins with S, involves quantum physics
L1043[13:16:11] <Skye> d'awwww
L1044[13:16:19] *
Skye kicks gamemanj
L1045[13:16:24] *
Skye opens the box
L1046[13:16:36] <gamemanj> Skye: I only
wanted DeanIsaKitty to be both alive and dead at the same
time!
L1047[13:16:39] *
DeanIsaKitty falls into the living state
L1048[13:17:03] <gamemanj> Then I can
hope that some time, DeanIsaKitty falls into the dead state.
L1049[13:17:12] *
Skye slaps gamemanj
L1050[13:17:12] *
EnderBot2 chuckles
L1051[13:17:15] <gamemanj> ow
L1052[13:17:16] <gamemanj> :(
L1053[13:17:32] <DeanIsaKitty> gamemanj:
I'm this channel's more or less official maskott. I can't die
:P
L1054[13:17:46] <gamemanj> So you can't
die. Ok.
L1055[13:17:55] <Skye> gamemanj, STOP
BEING EVIL
L1056[13:17:56] <gamemanj> That leaves...
a lot of options open!
L1057[13:17:57] <Skye> :<
L1058[13:18:19] *
gamemanj evalulates the possibility of putting DeanIsaKitty into a
radioactive box
L1059[13:18:35] *
CompanionCube dispatches a taskforce of turrets to murder
gamemanj
L1060[13:18:37] <DeanIsaKitty> gamemanj:
You can't burn me IM ALREADY ON FIRE
L1061[13:18:48] <gamemanj> A... A
taskforce of turrets???
L1062[13:18:52] *
gamemanj runs
L1063[13:19:02] <meep> can confirm,
DeanIsaKitty is hot
L1064[13:19:10] *
meep hides
L1065[13:19:28] <gamemanj> (You
euthanized your weighted CompanionCube more quickly than-What on
earth meep-any other test subject on record. Well done.)
L1066[13:19:45] *
Skye pets CompanionCube
L1067[13:19:57] <Skye> gamemanj, welcome
to #oc
L1068[13:19:57] <gamemanj> (...I'm just
leaving that there just because it's the fate of almost all
companion cubes)
L1069[13:20:04] <Skye> enjoy your
stay.
L1070[13:20:10] <gamemanj> Skye:
...
L1071[13:20:20] <Skye> gamemanj, but what
about the- *whispers*
L1072[13:20:21] <SuPeRMiNoR2> gamemanj:
how hard is it to spell Schrödinger?
L1073[13:20:46] <DeanIsaKitty> gamemanj:
Or Schroedinger if your keyboard does not feature üäö
L1075[13:21:08] <CompanionCube> gamemanj,
well
L1076[13:21:16] <CompanionCube> I do
control the entirety of the Enrichment Center
L1077[13:21:17] <DeanIsaKitty> gamax92:
That offends my feelings!
L1078[13:21:35] <gamemanj> CompanionCube:
...waaait a sec.. you aren't really a companion cube, are you
L1079[13:21:36] <vifino> meep: You'rve
done me well, solider.
L1080[13:21:37] <gamemanj> that explains
it
L1081[13:21:40] <vifino> Dismissed.
L1082[13:21:51] <CompanionCube> gamemanj,
I am
L1083[13:21:52] <DeanIsaKitty> gamax92:
Not all people still have mothers racist mesogynist!
L1084[13:21:54] <Skye> gamemanj,
CompanionCube killed GlaDOS
L1085[13:21:57] <gamemanj> ...
L1086[13:21:59] <gamemanj> what.
L1087[13:22:05] *
gamemanj 's mind implodes
L1088[13:22:29] <Skye> the backstory to
the character of CompanionCube in #oc and #ocmadness RP
L1089[13:22:34] <vifino> Must've been
pretty empty to begin with.
L1090[13:23:02]
⇦ Parts: gamemanj (~gamemanj@62.210.76.48) (Fatal shutdown in
reference frame cora.z80asm, line 29, aka subroutine
CONCEPT-Alpha-Beta-CONSISTENCYCHECK))
L1091[13:23:35] <Inari> gamax92: you
could also just cry to them
L1092[13:23:45]
⇨ Joins: Vexatos
(~Vexatos@p200300556E6CB713E4DF4EA7FD72E280.dip0.t-ipconnect.de)
L1093[13:23:45]
zsh sets mode: +v on Vexatos
L1094[13:26:06] <Dashkal> Jump in late.
DeanIsaKitty is this channels /adorable/ mascot.
L1095[13:26:09] <vifino> yay, noctua
fans, gpu and power adapters arrived
L1096[13:26:14] <vifino> Dashkal:
+1
L1097[13:26:19] <vifino> %+1
Dashkal
L1098[13:26:19] <MichiBot> vifino:
Dashkal now has 1 points
L1099[13:27:09] <Gavle> %+100
Dashkal
L1100[13:27:10] <MichiBot> Gavle: Dashkal
now has 101 points
L1101[13:27:19] <Gavle> %+100
vifino
L1102[13:27:19] <MichiBot> Gavle: vifino
now has 1497 points
L1103[13:27:42] <Skye> vifino, noctua
fans are awesome
L1104[13:27:53] <vifino> Skye: I
know.
L1105[13:28:02] <vifino> My NAS will be
all noctua then.
L1106[13:28:02] <vifino> :D
L1107[13:28:05] *
Gavle does not know what noctua is
L1108[13:28:09] *
DeanIsaKitty climbs out of Skye's kitten basket, hops over to
Dashkal and starts purring at him
L1109[13:28:11] <vifino> Gavle: Shame on
you.
L1110[13:28:15] <vifino> Shame. On.
You.
L1111[13:28:18] *
Dashkal pets the kitty
L1112[13:28:19] <vifino> DeanIsaKitty:
but but but D:
L1113[13:28:28] *
DeanIsaKitty purrs louder
L1114[13:28:32] <vifino> :<
L1115[13:28:35] <Gavle> CPU coolers and
fans?
L1116[13:28:43] <Gavle> k
L1117[13:28:54] <CompanionCube> %+3
vifino
L1118[13:28:55] <MichiBot> CompanionCube:
vifino now has 1500 points
L1119[13:28:57] <Skye> vifino, my NAS has
all notua case fans, the noise is from the HDDs shaking the
case
L1120[13:29:00] <Dashkal> aww, now I miss
my kitty. A few more months yet and I'll have kitties at home
again.
L1121[13:29:10] *
Gavle pets DeanIsaKitty
L1122[13:29:17] <v^> luajit uses
gotos
L1123[13:29:22] <vifino> v^: yes
L1124[13:29:28] <v^> face it, gotos arent
that bad
L1125[13:29:33] <vifino> uh, oh
L1126[13:29:36] <DeanIsaKitty> Dashkal:
\o/
L1127[13:30:01] <vifino> right, now to
remember what i wanted to do.......
L1128[13:30:07] <vifino> ah, yes, mount
stuff
L1129[13:30:36] <Dashkal> Mrh, goto is
one of those nasty things that belongs in optimization land.
L1130[13:30:37] <vifino> oh, fuck
me
L1131[13:30:42] <Dashkal> Sorry, not my
type.
L1132[13:31:03] <DeanIsaKitty> Dashkal:
fuck me? :D
L1133[13:31:06]
⇦ Quits: Jezza (~Jezza@185.44.151.22) (Quit:
Leaving)
L1134[13:31:13] <Dashkal> Sorry, not my
type either.
L1135[13:31:17] <DeanIsaKitty> aww
L1136[13:31:21] <Dashkal> It got really
specific when I got hitched. Funny thing :P
L1137[13:31:48] <Skye> eh?
L1138[13:32:00] <vifino> Wow, you're not
even saying okay anymore at all, DeanIsaKitty.
L1139[13:32:01] <Skye> should I use more
brain bleach and /clear
L1140[13:32:10]
⇦ Quits: GUIpsp (~GUIpsp@c-75-73-112-194.hsd1.mn.comcast.net)
(Ping timeout: 186 seconds)
L1141[13:32:11] <vifino> Anyways, I need
to darn get my nas out of the rack.
L1142[13:32:44] <vifino> So half an hour
of screwing and heavy lifting. Then change things for 10 minuttes,
then mount it in two hours again.
L1143[13:32:45] <vifino> ._.
L1144[13:32:47] <DeanIsaKitty> Skye: If
you can't handle adults talking about sex now and then, yes.
L1145[13:33:40] <Dashkal> ^
L1146[13:34:08] <Skye> DeanIsaKitty, the
children in my school talk about it more than I see adults talk
about it
L1147[13:34:32] <Kodos> Huh, that does
work
L1148[13:34:34] <Kodos> Neat
L1149[13:34:44] <DeanIsaKitty> Skye: Be
assured that even adults make sex jokes.
L1150[13:34:46]
⇨ Joins: GUIpsp
(~GUIpsp@c-75-73-112-194.hsd1.mn.comcast.net)
L1151[13:34:50] <Michiyo> Kodos: any
lucn?
L1152[13:34:53] <Michiyo> err luck?
L1153[13:35:01] <Kodos> Catching up on
the last episode of Blue Bloods and then I'll check
L1154[13:35:01] *
Lizzy lucns Michiyo
L1155[13:35:06] <Michiyo> kk
L1156[13:35:16] <Skye> waat
L1157[13:35:30] <DeanIsaKitty> Skye: Also
I don't joke about that unless I know the other person knows its a
joke. Dashkal is quite literally on the other side of the planet
<.<
L1158[13:35:37] <vifino> Lizzy: the word
is "lynches"
L1159[13:35:53] <DeanIsaKitty> No please
don't lynch Michiyo
L1160[13:35:59] <Skye> Lynching is
bad
L1161[13:36:13] <Dashkal> Michiyo does
cool stuff. No lynch.
L1162[13:36:31] <DeanIsaKitty> Dashkal:
Ever heard about CloudABI?
L1163[13:36:33] <Dashkal> On that note,
time to get kicked. 1.8? years/months/weeks/never?
L1164[13:36:45] <Skye> wat
L1165[13:36:46] <Dashkal> That sounds
like a buzzword that's crossed my awareness
L1166[13:36:48] <Michiyo> 1.8 for?
L1167[13:36:48] <Lizzy> Dashkal, OC for
1.8 is already here
L1168[13:36:52] <DeanIsaKitty> 1.8 MC or
1.8 OC?
L1169[13:36:57] <Dashkal> Sorry, I mean
OpenSecurity
L1170[13:37:04] <Michiyo> It's like 1/3rd
ported...
L1171[13:37:05] <Dashkal> I thought it,
and forgot to type it.
L1172[13:37:09] <Michiyo> someone else
can go fucking do that shit :p
L1173[13:37:14] <Dashkal> Heh, fair
enough
L1174[13:37:24] <Dashkal> I only briefly
got to play with those toys, then went to 1.8.
L1175[13:38:03] <Michiyo> Mainly cause I
can't wrap my head around the new networking stuff
L1176[13:38:07] <Michiyo> and I don't
have the TIME to learn it
L1177[13:38:55] <Michiyo> OpenFM for 1.8
is badly broken too, so I had to pull it from curse
L1178[13:39:14] <Dashkal> No pressure.
Asking so I can plan an upcoming build around it's
presence/absence.
L1179[13:39:20] <Dashkal> minus a '
L1180[13:39:31] *
Lizzy mumbles at vifino
L1181[13:39:34] <DeanIsaKitty> Dashkal:
Don't ignore me <.<
L1182[13:39:39] <Dashkal> I'm not
planning on stepping up, so no bitch from me.
L1183[13:39:48] <Michiyo> I'd love to
port to 1.8.. but just can't ATM
L1184[13:39:48] <Dashkal> If I get the
bug to hobby program, I'll make progress on my arch
L1185[13:39:52] <Dashkal>
DeanIsaKitty?
L1186[13:39:57] <DeanIsaKitty>
Dashkal?
L1187[13:40:04] <Michiyo> Michiyo?
L1188[13:40:06] <Michiyo> :p
L1189[13:40:13] <Dashkal> +DeanIsaKi+|
Dashkal: Don't ignore me <.<
L1190[13:40:13] <DeanIsaKitty> Michiyo:
Egocentric.
L1191[13:40:32] <DeanIsaKitty>
<+DeanIsaKitty> Dashkal: Ever heard about CloudABI?
L1192[13:40:44] <Dashkal> "That
sounds like a buzzword that's crossed my awareness"
L1193[13:41:17] <DeanIsaKitty> Oh, I
though you were referring to 1.8 as buzzword. Highlights...
L1194[13:41:29] <Michiyo> It needs to be
now +4 hours.
L1195[13:41:36] <Michiyo> I'd be
home.
L1196[13:48:20] <DeanIsaKitty> Apparently
Independence Day gets a sequel. Because all we need now is a movie
celebrating american exceptionalism and militarism thinly
disguising as if celebrating humanity.
L1197[13:48:42] <sugoi> but aliens,
man
L1198[13:48:44] <sugoi> aliens
L1199[13:48:55] <Dashkal> Meh, action
flick. Turn off brain, watch asplosions.
L1200[13:49:08] <sugoi> ^ the american
way!
L1201[13:49:47] <DeanIsaKitty> Dashkal:
Well, anyway, if you have an hour and want to see an interesting
talk about how to make a system that forces programmers to create
more secure programs:
https://media.ccc.de/v/32c3-7231-cloudabi
L1202[13:49:49]
⇨ Joins: iguser12785
(~ircap751@189.202.84.118.cable.dyn.cableonline.com.mx)
L1203[13:50:10]
⇦ Quits: GUIpsp (~GUIpsp@c-75-73-112-194.hsd1.mn.comcast.net)
(Ping timeout: 186 seconds)
L1204[13:50:10] <g> Michiyo: I meant to
link you this earlier and forgot, but..
L1206[13:50:14] <g> that's where my
parser is atm
L1207[13:50:18] <Dashkal> About the only
action flick I considered worth thinking about was starship
troppers, and that's cause I had read the book and was interested
in how the film attempted to get the same message across to a
mainstream audience (as opposed to the book's audience)
L1208[13:50:21] ***
AntheusAway is now known as Antheus
L1209[13:50:47] <g> untested etc
L1210[13:51:36] *
Antheus beats sugoi up
L1211[13:51:54] <sugoi> harder!
L1212[13:52:07]
<
Elizabeth> top tip when entering
passwords, make sure your capslock is not on
L1213[13:52:13] <Michiyo> g, looks
neat..
L1214[13:52:17] <Michiyo> though I know
little python :p
L1215[13:52:36] <iguser12785> PUSY
L1216[13:52:36] <Michiyo> I did modify a
dns server and pokemon gts server in python once though
L1217[13:52:38] <Antheus> GJ Lizzy
L1218[13:52:38] <g> it shouldn't be too
hard to understand
L1220[13:52:42] <Inari>
HUNTER"
L1221[13:52:57] <Michiyo> iguser12785 umm
wat..
L1222[13:53:04] <v^> .setcommand
L1223[13:53:04] <^v4> v^, usage:
.setcommand <command name> <lua>
L1224[13:53:08] <iguser12785> PEPA
L1225[13:53:19] <v^> .setcommand
Elizabeth> return "hehe"
L1226[13:53:19] <^v4> v^,
Registered
L1227[13:53:28] <v^> dont kill me
L1228[13:53:38] <DeanIsaKitty> v^:
^^
L1229[13:53:48]
⇨ Joins: GUIpsp
(~GUIpsp@c-75-73-112-194.hsd1.mn.comcast.net)
L1230[13:54:06] <v^> wait
L1231[13:54:09] <v^> <setcommand
Elizabeth> return "hehe"
L1233[13:54:11] <Michiyo> iguser12785:
you've got one more random ass response before I kick you, and I
swear if you rejoin and spout more random shit I'll just instantly
ban you with out so much as another warning.
L1234[13:54:16] <v^> .delcommand
L1235[13:54:16] <^v4> v^, No such
command
L1236[13:54:18] <v^> hmmm
L1237[13:54:30] <DeanIsaKitty> Antheus:
What did you beat sugoi up for? <.<
L1238[13:54:40] <iguser12785>
Michiyo K SER ESO
No
ENTENDER
L1239[13:54:43] <Antheus> He stole my
lynch money
L1240[13:54:53] <DeanIsaKitty>
WHat.
L1241[13:55:12] <Antheus> whAT.
L1242[13:55:13] <Michiyo> !kickban
iguser12785 fuckit
L1243[13:55:13] ***
iguser12785 was kicked by zsh ((Michiyo) fuckit))
L1244[13:55:15] <DeanIsaKitty>
iguser12785: En esse
L1245[13:55:19] <DeanIsaKitty>
Michiyo!
L1246[13:55:24] <DeanIsaKitty> Fuck it
<.<
L1247[13:55:34] <g> that was
spanish
L1248[13:55:38] *** Michiyo sets mode: -b
*!*@189.202.84.118.cable.dyn.cableonline.com.mx
L1249[13:55:43] <Antheus> I don't speak
spanish
L1250[13:55:43] <Michiyo> I'm
aware.
L1251[13:55:50] <Antheus>
#AllHailMichiyo
L1252[13:56:15] <DeanIsaKitty> Michiyo:
Why the weird formatting though...
L1253[13:56:41] <g> I was going to
version them
L1255[13:57:25] <Michiyo> they were on
ircap...
L1256[13:57:53] <Michiyo> iirc it's a
mirc script..
L1257[13:58:08] <DeanIsaKitty> That looks
disgusting
L1258[13:58:29] <Antheus> MIRC is
disgusting
L1259[13:58:31] <Antheus> Hmm
L1260[13:58:36] <Antheus> Think i'm going
to play civ
L1261[13:58:57] <g> I like mIRC
L1262[13:59:01] <g> that looks nothing
like mIRC however
L1263[13:59:01] <Kodos> Testing now,
Michiyo
L1264[13:59:04]
⇨ Joins: iguser12785
(~ircap751@189.202.84.118.cable.dyn.cableonline.com.mx)
L1265[13:59:12] <sugoi> Michiyo:
back
L1266[13:59:13] <Kodos> !kickban
iguser12785
L1267[13:59:13] ***
iguser12785 was kicked by zsh ((Kodos) No reason
given))
L1268[13:59:23] <DeanIsaKitty>
Kodos!
L1269[13:59:23] <sugoi> whiplash!
L1271[13:59:37] <Michiyo> -_- I unbanned
them for a reason you know
L1272[13:59:38] *
Michiyo sighs
L1273[13:59:41] <Kodos> >.>
L1274[13:59:41] <sugoi> haah
L1275[13:59:44] <Kodos> I missed that
line
L1276[13:59:44] <g> good job Kodos
L1277[13:59:48] <g> second time you
messed up today
L1279[13:59:49] *** Michiyo sets mode: -b
*!*@189.202.84.118.cable.dyn.cableonline.com.mx
L1280[13:59:59] <DeanIsaKitty> Poor
Michiyo
L1281[14:00:01] <Kodos> Second?
L1282[14:00:08] <g> you stealing that
guy's nick before
L1283[14:00:10] <Michiyo> Gavle..
lol
L1284[14:00:31] <Kodos> I didn't steal
anything. It wasn't registered. Not my fault they don't know how to
IRC, and the conversation we had just before it, where everyone
thought Gav was MGR
L1285[14:00:34] *
Gavle has been summoned
L1286[14:00:36] <Kodos> I just figured
I'd group it for a day
L1287[14:00:39] *
Gavle stabs Kodos
L1288[14:00:41] <Kodos> See who came
asking about it
L1289[14:00:49] <Gavle> I came asking,
that's who
L1290[14:00:53] <Kodos> Indeed
L1291[14:01:14] <g> Kodos actually it is
entirely your fault
L1292[14:01:15] <Skye> can I say
something honest here or will I get attacked?
L1293[14:01:20] <DeanIsaKitty>
"using his programming skills to reveal details about their
offline identities" - Guardian, programmer != cracker.
<.<
L1294[14:01:21] <g> there are people that
don't register their nicks
L1295[14:01:22] <Michiyo> Skye: yes
L1296[14:01:23] <Kodos> Actually it's
MGR's fault
L1297[14:01:27] <g> and the irc opers
here will ban you for doing that
L1298[14:01:30] <Skye> Michiyo, which
one?
L1299[14:01:40] <Michiyo> Yep
L1300[14:01:47] <Michiyo> One or the
other.
L1301[14:01:51] <Skye> attacked or
allowed to say it?
L1302[14:02:01] <g> get on with it
L1304[14:02:15] <Gavle> Kodos, how is it
MGR's fault?
L1305[14:02:19] <DeanIsaKitty> Skye:
Honest critisism is a good thing. Given that it is funded in
reality of course.
L1306[14:02:26] <Kodos> Long story
L1307[14:02:35] <g> did MGR make you
register it?
L1308[14:02:48] <Gavle> g, register my
name?
L1309[14:02:48] <Gavle> no
L1310[14:02:49] <Kodos> I'm not going to
discuss/argue my reasoning.
L1311[14:02:51] <Gavle> Kodos did
that
L1312[14:02:56] <g> I was asking Kodos
that
L1314[14:03:28] <Kodos> Michiyo: Still
dark
L1315[14:03:59] <Gavle> Kodos, I am aware
of your issues with MGR
L1316[14:04:01] <Gavle> I know him
L1317[14:04:13] <Skye> I honestly think
Kodos's style of managing stuff is a bit too mean. :S
L1318[14:04:15] <gamax92> Gavle: it's
MGR's fault because from what we understand, nothing you've done so
far was of your own behaviour but of what MGR asked you to do
L1319[14:04:16] <Gavle> which is why the
code fragments look familiar
L1320[14:04:29] <gamax92> so you might as
well be MGR
L1321[14:04:31] *
Gavle nods at Skye
L1322[14:04:36] <g> gamax92: unless MGR
somehow forced Kodos so register the nick, it's not MGR's fault
imo
L1323[14:04:38] <Gavle> gamax92, but I am
not
L1324[14:04:45] <Kodos> You think I'm
mean, you guys should've been around when Kenny was here
L1325[14:04:53] <sugoi> !
L1326[14:04:54] <gamax92> Kodos: nice
fallacy
L1327[14:04:56] <sugoi> you killed
kenny!
L1328[14:04:56] <DeanIsaKitty> Kodos:
That is not really a good argument.
L1329[14:05:22] <Kodos> Okay then. Fine,
you guys think I'm so bad. I'll part.
L1330[14:05:23]
⇦ Parts: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
())
L1331[14:05:30] <Dashkal> "I'm not
as evil as that person who literally stabs kittens"...
L1332[14:05:31] *
Gavle shrugs
L1333[14:05:38] <g> the fact that he
didn't apologise once is pretty telling imo
L1334[14:05:42] *
g gets back to shooting things
L1335[14:05:53] *
Gavle gets back to shooting pictures of Kodos :P
L1336[14:05:55] <Gavle> not really
L1337[14:05:58] <Skye> Isn't one of the
first things that Gavle said when he came here was that he was
helping MGR and would try to not make the same mistakes? :/
L1338[14:06:00] <Gavle> I'm mildly
annoyed
L1339[14:06:00] <DeanIsaKitty> Dashkal:
What? I'm not a bad president. Hitler was way worse! *hides vietnam
war*
L1340[14:06:17] *
gamax92 gets back to trying to make old Valve Hammer work
>_>
L1341[14:06:27] <DeanIsaKitty> Gavle: Be
that, but don't let it out on Kodos.
L1342[14:06:28] <g> oh boy, old
Hammer
L1343[14:06:29] <gamax92> WHY
BRUSHES
L1344[14:06:30] <g> godspeed,
gamax92
L1345[14:06:32] *
Gavle hides DeanIsaKitty
L1346[14:06:34] <gamax92> Yeah ...
L1347[14:06:38] <DeanIsaKitty> Gavle,
don't
L1348[14:06:40] <gamax92> Trying to do
some Sven Co-op stuff
L1349[14:06:47] <Gavle> don't what?
L1350[14:06:51] <g> DeanIsaKitty: I don't
think he's going to do anything
L1352[14:06:58] <Gavle> I know not to
antagonize Kodos
L1353[14:07:03] <Gavle> MGR gave me the
history
L1354[14:07:17] <Gavle> It just ends
poorly for the poor person who does
L1355[14:07:35] <gamax92> Sven has a
modified hammer that is patched for their new engine limits, but
Hammer itself has various bugs for the new limits
L1356[14:07:46] <Dashkal> MGR allowed
untracked connections out from his server, and bitched when that
came back to haunt him. *shrugs*
L1357[14:08:01] <gamax92> there is also a
newer beta hammer that had fancy model and animated models support,
but then I don't get sven limits
L1358[14:08:16] <gamax92> And then
there's Sledge, but I can't get the vertex manipulation tool to
work
L1360[14:08:33] <Gavle> Dashkal, MGR told
me that he hunted down XP01/Vista02/W7_03/Bill_Gates and yelled at
him
L1361[14:08:36] <Gavle> for a very long
time
L1362[14:08:48] <gamax92> And then
Jackhammer ... and then several modified 3.5 hammer's ...
L1363[14:08:50] <DeanIsaKitty> gamax92:
The original (crowbar) was made specifically to run on Linux
L1364[14:08:50] <g> those are some
obnoxious nicks
L1366[14:09:07] <Gavle> g, how so?
L1367[14:09:14] <g> bill gates
L1368[14:09:14] <gamax92> DeanIsaKitty:
oooh
L1369[14:09:16] <Gavle> I thought they
were mildly humouros
L1370[14:09:21] <Gavle> Poorly used, but
mildly humorous
L1371[14:09:25] <g> it's whatever
L1372[14:09:31] <Dashkal> Gavle: Good.
Still a bad idea to allow untracked outgoing connections. An IRC
ban is probably the best thing that could have happened to MGR. No
sarcasm. That's a thing without any lasting RL consequences.
L1373[14:09:32] <DeanIsaKitty> gamax92:
Again, very much beta, but if you care to contribute...
L1374[14:09:41] <gamax92> DeanIsaKitty:
I'll try it out
L1375[14:09:56]
⇨ Joins: mrdeadlocked (~admin@199.204.185.12)
L1376[14:09:56] <g> Dashkal: what do you
mean by "untracked"?
L1378[14:10:08] <Gavle> well, MGR said he
would probably ask to be let back in once a few days pass
L1379[14:10:13] <Gavle> He's taking the
time to cool down
L1380[14:10:18] <Dashkal> g There's no
(known to me) way to track an outgoing connection from an OC
Internet card to the player responsible.
L1381[14:10:19] <gamax92> In terms of
current tools though, I like Jackhammer, it properly is doing the
half transparent models and various blocks
L1382[14:10:23] <Gavle> meditate on his
circumstances and the best way forard
L1383[14:10:25] <g> Ah, I see
L1385[14:10:31] <gamax92> it's compling
is shit though, Sledge does better in that aspect
L1386[14:10:42] <Dashkal> Gavle: Glad to
hear it
L1387[14:10:42] <g> my server is a small
whitelisted server so I care about that not.
L1388[14:10:56] <Dashkal> I'm in the same
boat. I'm the only programmer on the whitelist.
L1389[14:11:08] <g> well, I'm not the
only programmer
L1390[14:11:10] <Gavle> g, his server is
a medium white-listed server with multiple programmers
L1391[14:11:13] <g> I've just known
everyone on the server for years
L1392[14:11:23] <Dashkal> The IT guy
could probably puzzle it out, but he's hosting the damn thing so
definitely not worried.
L1393[14:11:26] <DeanIsaKitty> gamax92:
The last time I checked there only were two compilers out there, so
porting that may be okay-ish?
L1394[14:11:27] <g> you shouldn't give
internet cards to strangers for sure though
L1395[14:11:40] <Gavle> g, I'm sure he
knows that now
L1396[14:11:44] <gamax92> DeanIsaKitty:
managing the compilers, not the compilers themselves
L1397[14:11:53] <Gavle> last I heard, he
was editing configs
L1398[14:11:55] <gamax92> which ... sven
has it's own modified zhlt compiler for the engine limits
L1399[14:12:32] <DeanIsaKitty> gamax92:
Ah ok. I never looked to closely at any compiler or even the
process.
L1400[14:12:38] <gamax92> Also how do I
compile this .-. seems to be no build setup for it?
L1401[14:14:05] <DeanIsaKitty> gamax92:
Looks like qtcreator to me... <.>
L1402[14:14:21] <gamax92> ahh, well I've
never used that before, this'll be fun
L1403[14:15:35] <DeanIsaKitty> gamax92:
Open calliper.pro with QtCreator, should work fine
L1404[14:17:38] ***
Mine|dreamland is now known as minecreatr
L1405[14:23:27]
⇨ Joins: AlexisMachina
(uid57631@id-57631.charlton.irccloud.com)
L1406[14:34:34]
⇦ Quits: GUIpsp (~GUIpsp@c-75-73-112-194.hsd1.mn.comcast.net)
(Ping timeout: 186 seconds)
L1407[14:34:58] <greaser|q> one thing i
learnt was if you don't want people to leak shit you use a server
rack and you always hide the tape before you log off
L1408[14:36:22] <greaser|q> but yeah, if
you want to track people with internet cards you could possibly put
a rootkit in the default Lua EEPROM unless those aren't actually
linked together
L1409[14:36:51] <DeanIsaKitty> greaser|q:
You can very easily track them outside of MC where they have no
influence on it whatsoever
L1410[14:37:02] <greaser|q> how so?
L1411[14:37:31] <greaser|q> basically, OC
tells you who pressed keys on the keyboard ;)
L1412[14:37:51]
⇨ Joins: GUIpsp
(~GUIpsp@c-75-73-112-194.hsd1.mn.comcast.net)
L1413[14:37:55] <Skye> well... OC should
have a tool for tracing internet users
L1414[14:38:00] <greaser|q> yeah it
should
L1415[14:38:37] <greaser|q> in the
meantime you could use an internal TCP server and shim the internet
cards in the component thing
L1416[14:38:38] <Gavle> greaser|q, a
rootkit is not outside of our capabilities
L1417[14:39:09] <greaser|q> if you do
make an EEPROM rootkit i guess you could latch onto whenever an
internet card gets dropped in and download a larger payload
L1418[14:39:30] <greaser|q> Gavle: saves
me having to explain specifics then :)
L1419[14:39:50] <gamax92> why would you
do an eeprom level rootkit
L1420[14:40:02] <Gavle> EEPROM's are
copied more than OS
L1421[14:40:18] <gamax92> cool, but you
could just put it in machine.lua :P
L1422[14:40:20] <Gavle> people are likely
to install openOS from floppy, but far more likely to merely copy
an EEPROM's data
L1423[14:40:28] <Gavle> gamax92,
how?
L1424[14:40:36] <gamax92> by editing the
jar? ...
L1425[14:40:38] <greaser|q> i'm assuming
that the lua eeprom bios is linked to the same damn file and you
can change it
L1426[14:40:46] <Inari> well if someone
had any reason to be concerned about their EEPROm its very easy to
secure
L1427[14:40:52] <Inari> most just dont,
because youd odnt really have to be on most servers
L1428[14:42:16] <Gavle> gamax92,
well
L1429[14:42:25] <gamax92> greaser|q: it
just copies the data to the eeprom, is easily changable still
L1430[14:42:26] <Gavle> that might be
outside of our capabilities
L1431[14:42:59] <gamax92> Gavle: editing
bios.lua is of your capabilities but editing a small stub between
machine.lua and bios.lua isn't?
L1432[14:43:00] <greaser|q> dammit, guess
you'd have to turn the damn server off, change every instance, turn
it back on
L1433[14:43:12] <Turtle> grr java
EE
L1434[14:43:23] <gamax92> also what
greaser|q said
L1435[14:43:44] <gamax92> all existing
eeprom's wouldn't update, editing machine.lua forces everyone to
use that code automatically
L1436[14:43:56] <Gavle> ah
L1437[14:44:12] <Gavle> gamax92, I remain
unsure of how to edit the .jar
L1438[14:44:17] <Gavle> also, what am I
doing?
L1439[14:44:17] <gamax92> it's a zip
file
L1440[14:44:20] <sugoi> ...
L1441[14:44:27] <gamax92> the same thing
you'd be doing to bios.lua
L1443[14:44:46] <sugoi> you host the
server and youre trying to inject scripts into oc computers?
L1444[14:44:49] <MichiBot> Lizzy:
The
Firm - Star Trekkin' | length:
3m 34s | Likes:
21355 Dislikes:
916 Views:
5117740 | by
roopert
L1445[14:45:13] <gamax92> I feel like
editing the eeprom is also not of your capabilities if you have no
idea of what to actually add to it :P
L1446[14:45:22] <sugoi> if you host the
server...why is this even a hard thing?
L1447[14:45:40] <Gavle> I don't host the
server
L1448[14:45:45] <sugoi>
"you"
L1449[14:46:03] <Gavle> are you speaking
of me and MGR as a gestalt being?
L1450[14:46:05] <gamax92> generic
"you", not specific Gavle "you"
L1451[14:46:11] <Gavle> ah
L1452[14:46:48] <Gavle> I reread the
log
L1453[14:46:53] <Gavle> I am aware of
what I would add
L1454[14:47:09] <Gavle> I shall notify
MGR and we will discuss implementation at a later date
L1455[14:47:18] <Gavle> until then, he
agreed not to push for a server unban
L1456[14:47:36]
⇦ Quits: cpup (~cpup@32.218.113.197) (Ping timeout: 194
seconds)
L1457[14:47:38] <gamax92> XP01 was banned
from the server?
L1458[14:47:46] <Gavle> no
L1459[14:47:55] <Gavle> the server was
banned from #oc
L1460[14:48:01] <gamax92> ahh
L1461[14:48:21] <sugoi> my (incomplete)
point (that i'm not going to elaborate much on) is that...if you
host the files for mc, then literally everything about this sandbox
is in your control and ...
L1462[14:48:23]
⇨ Joins: surferconor425|Cloud
(uid77899@id-77899.tooting.irccloud.com)
L1463[14:48:33] <Gavle> sugoi,
correct
L1464[14:48:34] ***
Daiyousei is now known as Mystia_Lorelei
L1465[14:48:34] <sugoi> i just dont
understand the over complexity
L1466[14:49:03] <sugoi> unless you're
trying to pretend you aren't the host, and playing blackhat as a
user
L1467[14:49:30] <gamax92> Gavle isn't the
host ...
L1468[14:49:41] <sugoi> is not his dual
identity?
L1469[14:49:46] <Gavle> what?
L1470[14:49:49] <Gavle> I am not the
host
L1471[14:50:34] <DeanIsaKitty> His secret
identity; a luser at day but a server owner at night -
MajGenMan!
L1472[14:50:52] <Gavle> MGR makes no
pretense of not being the server owner
L1473[14:50:52] <Lizzy> DeanIsaKitty, I
prefer MornonMan
L1474[14:51:02] <Lizzy> spelt stupidly as
well ¬_¬
L1475[14:51:12] <Lizzy> now, back to
gmod
L1476[14:51:21] <gamax92> gmod :D
L1477[14:51:32] <gamax92> strap thrusters
and wheels to bathtub
L1478[14:51:48] <greaser|q> make a racing
car out of fridges
L1479[14:51:59] <DeanIsaKitty> Lizzy is
the perfect oper - gets out of her corner, smacks a user, goes back
to play w/e
L1480[14:52:02] <sugoi> Gavle: "dual
identity" and "you" being mgr, being host
L1481[14:52:15] <Gavle> uh
L1482[14:52:17] <sugoi> greaser|q:
interested in working more on the term work?
L1483[14:52:25] <Gavle> sugoi, you gotta
elaborate more
L1484[14:52:34] <greaser|q> sugoi: what
stuff do you want
L1485[14:52:52]
<
Elizabeth> Na, making a HUD for my
ship so I can see when I need to ohshitwarpout
L1486[14:52:54] <sugoi> Gavle: I'm not
that invested in the conversation
L1487[14:52:58] <greaser|q> i know T.read
is incomplete
L1488[14:53:12] <sugoi> greaser|q: oh
it's a fantastic start, I really like your approach
L1489[14:53:24] <sugoi> i've integrated
it into my current work, and am booting with it
L1490[14:53:34] <Gavle> sugoi, k
L1491[14:53:45] <greaser|q> it's designed
to fit in the EEPROM even though the whole of bootcore doesn't
*quite* fit
L1492[14:53:46] <sugoi> but i'm busy and
i'm waiting on priority orders from The One (i have a list of
todos)
L1493[14:53:51] <greaser|q> ah
righty
L1494[14:54:05] <sugoi> anywho, term is
important to me, but it might get deprioritized
L1495[14:54:29]
⇨ Joins: cpup (~cpup@32.218.114.253)
L1496[14:54:35] <greaser|q> i think i'll
show you the entirety of bootcore so far
L1497[14:54:38] <greaser|q> it can run sh
but not edit
L1498[14:54:43] <sugoi> so if it gets
bumped, i would was just wondering were i to point you to a branch,
if you would have interest in continuing it
L1499[14:55:02] <sugoi> ha, that's cool
:)
L1500[14:55:33] <sugoi> greaser|q: what
do you use or plan to use such a small boot for?
L1501[14:55:54] <greaser|q> sugoi:
practical tier 1 computer usage ;)
L1502[14:55:59] <greaser|q> and i mean
tier 1 ram
L1503[14:56:00] <sugoi> nice
L1504[14:56:05] <sugoi> i
understood
L1505[14:56:08] <sugoi> or, assumed
L1506[14:56:09] <sugoi> :)
L1508[14:56:38] <greaser|q> oh yeah a big
warning, there's no mountpoints, it's all amiga-style drive
names
L1509[14:56:39] <sugoi> i'm at 180-184k
boot with open 1.6 - haven't tested with slim-term
L1510[14:56:52] <sugoi> but that's 16-12k
free on 1x T1 ram
L1511[14:57:06] <sugoi> that's getting
close to bootable (we need 30k wiggle room for the lua vm)
L1512[14:57:15] <sugoi> term is like
25k
L1513[14:57:40] <greaser|q> i should try
it on my 1.7.10 instance
L1514[14:57:49] <sugoi> i'm not trying to
do "practical tier 1 usage"
L1515[14:57:53] <greaser|q> although i
also have the touhou items mod on there and i was getting horribly
distracted
L1516[14:57:57] <sugoi> but, it'd be
awesome to at least have boot
L1517[14:58:21] <sugoi> then we could
consider something like a motd-level warning "You've booted
OpenOS with really really low memory, consider upgrading
ram"
L1518[14:59:12]
⇨ Joins: Something12
(~Something@S010634bdfa9eca7b.vs.shawcable.net)
L1519[14:59:37] <greaser|q> oh yeah fun
thing, loot floppies (including openos) get names like rom0
L1520[15:00:02] <sugoi> greaser|q: so
anyways, if term gets deprioritized, i'll let you know and give you
a branch link, but i guess i'll just leave it up to you
L1521[15:00:08] <sugoi> i'll get to it
regardless
L1522[15:00:29] <greaser|q> because
there's no "this is a floppy disk", "this is a hard
disk", "this is a waste of RAM dedicated to temp storage
which you can't disable", etc
L1523[15:00:38] <sugoi> haah
L1524[15:00:38] <Lizzy> !flags
SuPeRMiNoR2 +r
L1525[15:00:39] -zsh-
Lizzy set flags
+r on
SuPeRMiNoR2.
L1526[15:01:08] *
Michiyo throws SuPeRMiNoR2 a party
L1527[15:01:21] <greaser|q>
congradulations
L1528[15:01:26] <sugoi> greaser|q: when i
measure RAM allocation, i see only ~12k taken BEFORE openos init
(part of that would actually be init.lua load)
L1529[15:01:29] <DeanIsaKitty> Yay?
L1530[15:01:59] <sugoi> so what is the
problem with tmp? i mean. .. have i missed its cost in my analysis
somehow? what cost should i see it have?
L1531[15:02:06] <sugoi> or, is this a
cost to RAM when tmp is mounted?
L1532[15:02:09] <greaser|q> i don't know
how much it actually uses up to be honest
L1533[15:02:12] <greaser|q> it's *always*
mounted
L1534[15:02:16] <sugoi> hmm
L1535[15:03:17]
⇨ Joins: SuPeRMiNoR2_kickme
(webchat@mail.pc-logix.com)
L1536[15:03:25] *
SuPeRMiNoR2_kickme pokes SuPeRMiNoR2
L1537[15:03:39] *
sugoi kicks SuPeRMiNoR2_kickme
L1538[15:03:43] *
SuPeRMiNoR2_kickme slaps SuPeRMiNoR2
L1539[15:03:43] *
EnderBot2 high-fives SuPeRMiNoR2_kickme
L1540[15:03:52] *
SuPeRMiNoR2_kickme prods SuPeRMiNoR2
L1541[15:03:52] <SuPeRMiNoR2> hmm
L1542[15:03:53] *
Dashkal me's SuPeRMiNoR2_kickme
L1543[15:03:59] <SuPeRMiNoR2> !kick
SuPeRMiNoR2_kickme
L1544[15:03:59] ***
SuPeRMiNoR2_kickme was kicked by zsh ((SuPeRMiNoR2) No reason
given))
L1545[15:04:04] <SuPeRMiNoR2> \o/
L1546[15:04:06] <Michiyo> lol
L1547[15:04:07] <DeanIsaKitty> :3
L1548[15:04:31] <Michiyo> "KICK ME
DAMNIT" AS you kicked me lmao
L1549[15:04:36] <sugoi> greaser|q: so how
much room do you have left?
L1550[15:04:44] <greaser|q> sugoi: not
sure exactly, but lots
L1551[15:04:59] <sugoi> im referring to
eeprom space
L1552[15:05:06] <SuPeRMiNoR2> Thanks
Lizzy
L1553[15:05:06] <greaser|q> ah right, no
i actually go over that limit
L1554[15:05:09] <sugoi> which you might
have guessed, but just clarifying
L1555[15:05:14] *
DeanIsaKitty cuddles Lizzy
L1556[15:05:17] <sugoi> oh
L1557[15:05:18] <greaser|q> i'd need to
split it
L1558[15:05:20] <sugoi> then how does it
boot?
L1559[15:05:21] <sugoi> oh
L1560[15:05:27] <greaser|q> i'm using a
netbooter
L1561[15:05:31] <sugoi> ah
L1562[15:05:54] <sugoi> has anyone made a
REASONABLE eeprom boot?
L1563[15:06:35] <Michiyo> You should
totally use OS's Card Writer, and the soon to be setting for
gianteeproms, so you can have 400k eeproms!
L1564[15:06:36] <Michiyo> :p
L1565[15:07:22] <Michiyo> (this is a
joke/reference to the fact that for a while I didn't enforce a max
size when using the card writer to write eeproms) lol
L1566[15:07:36] <Dashkal> There's a thing
to ponder. Trying to decide how cpu/ram would matter for a lambda
calculus based arch. CPU would affect reductions per second, but
ram doesn't quite fit cleanly.
L1567[15:07:51] <greaser|q> i'd probably
just make the EEPROM scan filesystems for bootcore.lua
L1568[15:08:27] *
Lizzy cuddles DeanIsaKitty back
L1569[15:08:57] <greaser|q> also i'm
looking at machine.lua right now... i did NOT realise this was a
thing
L1570[15:09:12] <greaser|q> that's
definitely the place where you want to put a rootkit
L1571[15:10:48] <sugoi> yeah but...
that's outside the sandbox
L1572[15:10:55] <sugoi> so it's not fair
:)
L1573[15:12:35] <greaser|q> it's mostly
to see if some wanker is, say, joining an IRC channel under a name,
say, Bill_Gates
L1574[15:12:47] <greaser|q> and not
having the courtesy to say "Micro$oft"
L1575[15:13:33] <Michiyo> !flags
L1576[15:13:51] <Gavle> XD
L1577[15:14:34] <Antheus> :P
L1578[15:21:48] <greaser|q> oh yeah, a
fun thing about metatable __index/__newindex methods, they only
apply to things that aren't in the table
L1579[15:24:13] <sugoi> also fun to know,
you can't meta next
L1580[15:27:49]
⇦ Quits: Keanu73 (~Keanu73@host-92-19-196-194.as13285.net)
(Quit: Gotta go to bed or something. See ya!)
L1581[15:29:04] <andreww> does any one
use open peripherals? if so, how much/which, and what for?
L1582[15:29:10] ***
andreww is now known as xarses
L1583[15:29:46] <Vexatos> for fixing
crashes with my mods because it does very bad things
L1584[15:29:47] <Vexatos> >_>
L1585[15:30:09] <xarses> maybe don't be a
bad mod?
L1586[15:30:47] <Vexatos> nah, I talked
to boq and that particular bad thing he does won't ever be
changed
L1587[15:37:30]
⇦ Quits: Vexatos
(~Vexatos@p200300556E6CB713E4DF4EA7FD72E280.dip0.t-ipconnect.de)
(Quit: I guess I have to go now. Bye ✔)
L1588[15:39:27]
⇦ Quits: Icedream
(~icedream@212-83-173-97.rev.poneytelecom.eu) (Ping timeout: 198
seconds)
L1589[15:42:52]
⇨ Joins: Icedream
(~icedream@212-83-173-97.rev.poneytelecom.eu)
L1590[15:51:53]
⇨ Joins: BBoldt (~BBoldt@192.99.145.160)
L1591[15:52:47] ***
Mystia_Lorelei is now known as SleepingFairy
L1592[15:55:13]
⇦ Quits: mrdeadlocked (~admin@199.204.185.12) (Ping timeout:
198 seconds)
L1593[15:57:32]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L1594[16:05:16] <Michiyo> %p
L1595[16:05:19] <MichiBot> Ping reply
from Michiyo 0.58s
L1596[16:09:36]
⇦ Quits: Tedster
(~Tedster@host86-170-31-233.range86-170.btcentralplus.com) (Ping
timeout: 198 seconds)
L1597[16:09:48]
⇨ Joins: Tedster
(~Tedster@host86-170-31-233.range86-170.btcentralplus.com)
L1599[16:13:37] <Gavle> I have a
question
L1600[16:13:49] <Gavle> the Computronics
radar says it returns a table with stuff
L1601[16:14:05] <Gavle> how do I know
what the keys/indexes are for each item?
L1602[16:14:37] <Gavle> I want to pick
out, say, the relative coords for one person
L1603[16:15:49] <Michiyo> having never
used it.. but assuming it should be subtables... so like player1:
{x, y, z} or whatever
L1604[16:16:04] <Michiyo> that's how I do
it in OpenSec's Entity Detector anyway
L1605[16:17:07] <Gavle> what?
L1606[16:17:28] <Michiyo> you know... a
table in a table, a subtable?
L1607[16:17:36] <Gavle> uh
L1608[16:17:36] <Michiyo> I'd assume
that's how it does it..
L1609[16:17:46] <Gavle> How do I go about
accessing these subtables?
L1610[16:18:36] <Gavle> We are new to
table stuff
L1611[16:19:13] <g> everything is a table
in lua
L1612[16:19:20] <g> just like everything
is an object in javascript
L1613[16:19:22] <g> same idea
L1614[16:19:25] <g>
table.keyname.keyname
L1615[16:19:26] <sugoi> #lua
t={s{x=1,y=2,z=3}} for tk,tv in pairs(t) do if type(tv)
=="table" then for tkk,tvv in pairs(tv) do print(tkk,tvv)
end end end
L1616[16:19:30] <|0xDEADBEEF|> >
[string "lua"]:1: attempt to call a nil value (global
's')
L1617[16:19:34] <sugoi> psh
L1618[16:19:37] <sugoi> whatever
L1619[16:19:41] *
sugoi goes back to work
L1620[16:19:46] <Gavle>
uhhhhhhhhhhhh
L1621[16:19:49] <Gavle> what?
L1622[16:19:51] <sugoi> #lua
t={s={x=1,y=2,z=3}} for tk,tv in pairs(t) do if type(tv)
=="table" then for tkk,tvv in pairs(tv) do print(tkk,tvv)
end end end
L1623[16:19:52] <|0xDEADBEEF|> > z 3 |
y 2 | x 1 | nil
L1624[16:19:52] <Michiyo> I mean.. I
don't know for sure.. I've never USED the computronics
radar...
L1625[16:19:58] *
sugoi saw the error :)
L1626[16:19:59] <Michiyo> but I'd ASSUME
it's a subtable
L1627[16:20:11] <Michiyo> I just know how
it's done in OpenSec.. lol
L1628[16:21:02] <Gavle> yeah, but how do
I access the subtables, and what would the keynames be?
L1629[16:21:22] <Michiyo> print the damn
table... the key "name" is whatever is before the
subtable.
L1630[16:21:24] <Michiyo> :P
L1631[16:21:41] <Gavle>
serialize.serialize(table) doesn't indicate a subtable
L1632[16:21:43] <Michiyo> I'd have to..
assume once again, it'd be the players name.
L1633[16:21:51] <Gavle> oh wait
L1634[16:21:56] <Michiyo> I don't know
what the radar outputs.. soooooooo
L1635[16:22:13]
⇨ Joins: sciguyryan (~sciguyrya@95.211.188.3)
L1636[16:23:51] <Gavle> ok, I got at the
subtables
L1637[16:24:22] <Gavle> now for digging
out the values
L1638[16:24:40] <Gavle> how do I access
the key of a subtable?
L1639[16:24:47] <Gavle>
table[1[1]]?
L1640[16:24:53] <Michiyo> afk
L1641[16:25:02] <sugoi> ~w table
L1643[16:25:37] <sugoi> well ok
L1645[16:25:55] <sugoi> Gavle:
^^^^^^^^^^^^^^^^^^^^^^^^^^
L1646[16:26:07] <Gavle> ah
L1647[16:27:29] <Gavle> well, that
doesn't deal with subkeys
L1648[16:28:10] <sugoi> #lua t={}
L1649[16:28:11] <|0xDEADBEEF|> >
nil
L1650[16:28:13] <sugoi> t is a
table
L1651[16:28:19] <Gavle> yes
L1652[16:28:23] <sugoi> # t.sub =
{}
L1653[16:28:28] <sugoi> #lua t.sub =
{}
L1654[16:28:28] <|0xDEADBEEF|> >
nil
L1655[16:28:28]
⇨ Joins: Nachtara
(~Nachie@50-83-108-134.client.mchsi.com)
L1656[16:28:30] <sugoi> sub is a sub
table
L1657[16:28:37] <Gavle> ok
L1658[16:29:15] <sugoi> #lua oc = {};
oc.users = {}; oc.users["Gavle"] = {};
oc.users["sugoi"] = {}
L1659[16:29:15] <|0xDEADBEEF|> >
nil
L1660[16:29:41] <Gavle> what?
L1661[16:29:42] <sugoi> #lua
os.users.Gavle.id = 1
L1662[16:29:42] <|0xDEADBEEF|> >
[string "lua"]:1: attempt to index a nil value (field
'users')
L1663[16:29:47] <sugoi> #lua
oc.users.Gavle.id = 1
L1664[16:29:48] <|0xDEADBEEF|> >
nil
L1665[16:29:54] <sugoi> #lua
oc.users.sugoi.id = 1
L1666[16:29:54] <|0xDEADBEEF|> >
nil
L1667[16:30:00] <sugoi> #lua
oc.users.sugoi.id
L1668[16:30:00] <|0xDEADBEEF|> >
1
L1669[16:30:02] <sugoi> #lua
oc.users.sugoi.id = 2
L1670[16:30:02] <|0xDEADBEEF|> >
nil
L1671[16:30:04] <sugoi> #lua
oc.users.sugoi.id
L1672[16:30:04] <|0xDEADBEEF|> >
2
L1673[16:30:14] <sugoi> you can also use
[] to index
L1674[16:30:19] <Gavle> ah
L1675[16:30:22] <sugoi> #lua
oc["users"]["sugoi"]
L1676[16:30:22] <|0xDEADBEEF|> >
table: 0x7fb97c067ea0
L1677[16:30:27] <sugoi> #lua
oc["users"]["sugoi"]["id"]
L1678[16:30:27] <|0xDEADBEEF|> >
2
L1679[16:30:33] <sugoi> #lua
oc["users"].sugoi.["id"]
L1680[16:30:34] <|0xDEADBEEF|> >
[string "lua"]:1: <name> expected near '['
L1681[16:30:39] <sugoi> #lua
oc["users"].sugoi["id"]
L1682[16:30:40] <|0xDEADBEEF|> >
2
L1683[16:30:55] <sugoi> #lua
oc.users["sugoi"].id
L1684[16:30:55] <|0xDEADBEEF|> >
2
L1685[16:31:03] <sugoi> you can also list
keys
L1686[16:31:11] <sugoi> #lua for k,v in
pairs(oc.users) do print(k) end
L1687[16:31:12] <|0xDEADBEEF|> > Gavle
| sugoi | nil
L1688[16:31:22] <sugoi> btw, that nil is
the retrun
L1689[16:31:24] <sugoi> return
L1690[16:31:34] <sugoi> #lua for k,v in
pairs(oc.users) do print(k) end return "i'm just a return
value"
L1691[16:31:34] <|0xDEADBEEF|> > Gavle
| sugoi | i'm just a return value
L1692[16:31:45]
⇦ Quits: sivael (webchat@user-31-175-19-143.play-internet.pl)
(Quit: Web client closed)
L1693[16:31:46] <Gavle> whoo
L1694[16:31:48] <Gavle> I got it
L1695[16:32:02] <sugoi> #lua for k,v in
pairs(oc.users) do print(k.id) end
L1696[16:32:02] <|0xDEADBEEF|> >
nil
L1697[16:32:04] <Gavle> Now, I can get at
the subtables of the radar function
L1698[16:32:04] <sugoi> derp
L1699[16:32:11] <sugoi> #lua for k,v in
pairs(oc.users) do print(k,v.id) end
L1700[16:32:11] <|0xDEADBEEF|> > Gavle
1 | sugoi 2 | nil
L1701[16:33:08] <Gavle> sugoi, thank
you
L1702[16:33:23] <sugoi> you're
welcome
L1703[16:33:27] <Gavle> now, I can have
values to do trig with
L1704[16:33:32] <Gavle> oh no
L1705[16:33:35] <Gavle> it's 3D
L1706[16:33:41] <Gavle> even more
complicated
L1707[16:37:06] ***
Gavle is now known as Gavle|Away
L1708[16:37:19] ***
Gavle|Away is now known as Gavle
L1709[16:39:05]
⇦ Quits: cpup (~cpup@32.218.114.253) (Ping timeout: 198
seconds)
L1710[16:41:47] <Gavle> alright
L1711[16:41:54] <Gavle> I confirmed my
guess on trig functions I need
L1712[16:42:11]
⇨ Joins: havok_
(webchat@107-138-114-47.lightspeed.rcsntx.sbcglobal.net)
L1713[16:42:39] <sugoi> greaser|q: i've
been asked to give term priority, so i guess i'll run with it from
here. but if i get stuck i'll poke you for ideas :)
L1714[16:42:50] ***
havok_ is now known as nullreturn
L1715[16:43:00] <nullreturn> jesus
L1716[16:43:08] <nullreturn> hi
fellas
L1717[16:44:06] <Gavle> hello
L1718[16:44:31] <nullreturn> how's it
going today
L1719[16:44:37]
⇨ Joins: cpup (~cpup@32.218.115.185)
L1720[16:46:12] <Gavle> oh no
L1721[16:46:17] <Gavle> how do I insert
pi?
L1722[16:46:43] <nullreturn> i use a
fork, personally
L1723[16:48:11] *
Gavle looks at nullreturn
L1724[16:48:12] <DeanIsaKitty>
nullreturn++
L1725[16:48:19] <Gavle> I'm talking about
the math constant
L1726[16:48:23] <DeanIsaKitty> %+9001
nullreturn
L1727[16:48:26] *
nullreturn looks at Gavle
L1728[16:48:31]
<
Elizabeth> 1, open mouth. 2, shove
face into pi. 3, profit
L1729[16:48:32] <MichiBot> DeanIsaKitty:
Error getting nullreturn's points
L1730[16:48:33] *
nullreturn grins
L1731[16:48:44] *
Gavle stabs nullreturn
L1732[16:48:56] ***
amadornes is now known as amadornes[OFF]
L1733[16:49:32] <nullreturn> oh snap bro,
that escalated quickly
L1734[16:49:33] <Michiyo> DeanIsaKitty:
no NS account
L1735[16:49:49] <Gavle> %+1
DeanIsaKitty
L1736[16:49:49] <MichiBot> Gavle:
DeanIsaKitty now has 1 points
L1737[16:49:53] <Gavle> whoo!
L1738[16:49:56] <DeanIsaKitty> MichiBot:
Figured
L1739[16:50:04] <DeanIsaKitty> Also, did
my points get reset?? <.>
L1740[16:51:06] <Gavle> %+10000000
DeanIsaKitty
L1741[16:51:06] <MichiBot> Gavle:
DeanIsaKitty now has 10000001 points
L1742[16:51:09] <Gavle> There you go
Dean
L1743[16:51:12] <Gavle> Don't feel
bad
L1744[16:51:14] <vifino> %points
L1745[16:51:29] <Michiyo> DeanIsaKitty:
points can roll over...
L1746[16:51:42] <Gavle> %points
Gavle
L1747[16:51:42] <MichiBot> Gavle: Gavle
has 0 points
L1748[16:51:49] <Gavle> %points
MajGenRelativity
L1749[16:51:49] <MichiBot> Gavle:
MajGenRelativity has 1 points
L1750[16:51:50] <Michiyo> because people
like to be... well people and see what limits are.
L1751[16:51:53] <Gavle> XD
L1752[16:52:05] <Gavle> I'm surprised
nobody int over-flowed him into the negative
L1753[16:52:10] <Michiyo> They
have...
L1754[16:52:18] <Gavle> oh
L1755[16:52:20] *
Gavle shrugs
L1756[16:52:22] <DeanIsaKitty> Isn't it a
unsigned it by now?
L1757[16:52:24] <Michiyo> the limit is
*very* high lol
L1758[16:52:26] <DeanIsaKitty> *int
L1759[16:52:30] <Michiyo> it's a
long
L1760[16:52:34] <DeanIsaKitty> ah,
ok
L1761[16:52:34] <Michiyo> but still
signed
L1762[16:52:51] <Gavle>
%+1000000000000000000000000000000000 DeanIsaKitty
L1763[16:52:51] <MichiBot> Gavle: An
error occurred while processing this command
L1764[16:52:57] <Gavle>
%+100000000000000000000000 DeanIsaKitty
L1765[16:52:57] <MichiBot> Gavle: An
error occurred while processing this command
L1766[16:53:04] <Gavle> %+100000000000
DeanIsaKitty
L1767[16:53:04] <MichiBot> Gavle:
DeanIsaKitty now has 100010000001 points
L1768[16:53:06] <Gavle> whoo
L1769[16:53:15] <Gavle> anyways, I'm
going to go
L1770[16:53:24] <Gavle> MGR and I shall
be busy for days doing coding :)
L1771[16:54:24] ***
Gavle is now known as Gavle|Away
L1772[16:58:55] <Turtle> ooo, grepcode is
useful
L1773[16:59:12]
⇦ Quits: sciguyryan (~sciguyrya@95.211.188.3) (Remote host
closed the connection)
L1775[17:07:09] <Dashkal> ooo, cold brew
coffee
L1776[17:07:12] <Dashkal> mmm*
L1777[17:09:21] <vifino> Test, 1 2 3,
please ignore.
L1778[17:09:22] *
vifino is listening to Five Finger Death Punch – Ashes
L1779[17:09:26] <vifino> Wooot.
L1780[17:13:18]
⇨ Joins: Terra1
(webchat@69-165-131-74.dsl.teksavvy.com)
L1781[17:13:21] <Terra1> Hi
L1782[17:13:33] <Terra1> I need help
making a custom EEPROM
L1783[17:13:52] <Terra1> Help???
L1784[17:14:19] <sugoi> what do you need
custom about it?
L1785[17:14:35] ***
g is now known as gAway2002
L1786[17:14:48] <Terra1> i am making it
auto-connect to all local wireless networks
L1787[17:15:01] <Terra1> or computers
with wireless
L1788[17:15:03] <sugoi> and why not put
in a boot script for that?
L1789[17:15:12] <Terra1> I don't know how
Lua works
L1790[17:15:17] <Terra1> apart from Hello
World
L1791[17:15:26] <sugoi> or to ask more
politely, have you considered adding a boot script? :)
L1792[17:15:30] <sugoi> so
L1793[17:15:43] <Turtle> You -might- want
to learn how to write lua code before trying to write lua code
:p
L1794[17:15:53] <Terra1> K
L1795[17:16:00] <sugoi> Terra1: while i
agree with Turtle ...
L1796[17:16:17] <Terra1> By the way it is
Lua 5.2
L1797[17:16:20] <sugoi> i'd also add that
working to change the eeprom is far too low level for what you're
trying to do
L1798[17:16:20] <Terra1> not Lua
5.3
L1799[17:16:53] <sugoi> consider a real
life computer, if you wanted it to auto connect to your router,
would you take out the chip in the motherboard and flash some new
firmware on it?
L1800[17:17:26] <sugoi> (i know we dont
literally remove chips, i'm just trying to make a point)
L1801[17:17:38]
⇦ Quits: cpup (~cpup@32.218.115.185) (Ping timeout: 189
seconds)
L1802[17:17:50]
⇦ Quits: meep (uid94726@2001:67c:2f08:6::1:7206) (Quit:
Connection closed for inactivity)
L1803[17:18:41] <sugoi> Terra1: on your
oc computer, you have an operating system, likely openos
L1804[17:18:59] <Terra1> How do i extract
the contents of the Lua BIOS EEPROM to a file
L1805[17:19:05] <Terra1> ???
L1806[17:19:15] <sugoi> you're ... not
reading what i wrote nor thinking about what i'm trying to
say
L1807[17:19:28] <Terra1> Im just trying
to learn Lua 5.2
L1808[17:19:33] <sugoi> Terra1: trust me,
you have no need to change your eeprom
L1809[17:19:37] <Terra1> Im not
L1810[17:19:44] <sugoi> you have no need
to even read it
L1811[17:19:44]
⇨ Joins: cpup (~cpup@32.218.115.247)
L1812[17:19:49] <sugoi> or write to
it
L1813[17:19:52] <sugoi> or even know it
exists
L1814[17:19:52] <Terra1> Im extracting
the contents
L1815[17:19:56] <Terra1> so i can look at
it
L1816[17:20:02] <Terra1> and edit it into
a boot script
L1817[17:20:04] <sugoi> there is so much
more to learn from in the openos source
L1818[17:20:16] *
vifino is listening to Nirvana – School
L1819[17:20:20] <vifino> DeanIsaKitty:
^
L1820[17:20:31] <DeanIsaKitty> Not as
good as ashes
L1821[17:20:44] <sugoi> Terra1: the
differences between lua 5.2 and 5.3 are irrelevant to this
discussion
L1822[17:20:51] <vifino> HELLO DEAN CAN
YOU HELP ME
L1823[17:20:57] <vifino>
HELLO?!?!?!?
L1824[17:21:04] <vifino> *hangs up*
L1825[17:21:05] <DeanIsaKitty> NO
I"M NOT YOUR PERSONAL HELPDESK SHUT UP
L1826[17:21:07] <sugoi> Terra1: if you
want a script to run on boot you have 2 options. rc or boot
script
L1827[17:21:26] <sugoi> boot scripts are
numbered files in /boot/
L1828[17:21:52]
⇦ Quits: Lordmau5 (~Lordmau5@aeg-gaming.net) (Quit: Love
ya'll, see ya :P)
L1829[17:21:54] <sugoi> make one, give it
a higher number than boot items that matter, and write the code
that connects to a network that you want
L1830[17:22:52]
<
Elizabeth> *rings Dean* user:
"Hello, I have a problem", Dean: "What's the
problem?", user: "It's not working", Dean:
"What's not working?", user: "everything"
L1831[17:23:13] <nullreturn> i see
there's an nc.lua file here in /usr/bin, is that like the netcat in
linux?
L1832[17:23:34] <DeanIsaKitty> Elizabeth:
Did you try turning it off and on again?
L1833[17:24:34] <vifino> nullreturn: Do
you want an insecure yes or do you want a definitive maybe?
L1834[17:24:38] *
vifino is listening to Nirvana – School
L1835[17:24:42] <vifino> ... if it would
update
L1836[17:24:59] <nullreturn> which ever
answer is more complete and accurate, i reckon
L1837[17:25:00] <vifino> DeanIsaKitty:
Five Finger Death Punch - Stranger Than Fiction
L1839[17:26:18] <nullreturn> it looks
like mine is slightly different. i'm running oc 1.8
L1840[17:26:32] <nullreturn> but
essentially, yes
L1841[17:28:22]
⇦ Quits: cpup (~cpup@32.218.115.247) (Ping timeout: 194
seconds)
L1842[17:28:56]
⇨ Joins: VanillaBean
(~VanillaBe@c-98-232-42-143.hsd1.wa.comcast.net)
L1843[17:33:53] ***
Flenix is now known as SleepyFlenix
L1844[17:35:38]
⇨ Joins: cpup (~cpup@32.218.116.21)
L1845[17:49:35] <gamax92> cookies
L1846[17:49:36] <gamax92> moar
L1847[17:49:45] <gamax92> I wish I had
cherry juice >_>
L1848[17:52:30] <gamax92> oh weird, when
I put them in the oven it was brown, and they came out tan
L1849[17:56:07]
⇦ Quits: Nachtara (~Nachie@50-83-108-134.client.mchsi.com)
(Quit: geeettttttt dunked on!!!)
L1850[17:58:50]
⇦ Quits: VanillaBean
(~VanillaBe@c-98-232-42-143.hsd1.wa.comcast.net) (Quit:
Leaving)
L1851[18:05:36]
⇦ Quits: Turtle (~SentientT@82-171-92-73.ip.telfort.nl)
(Quit: Nettalk6 - www.ntalk.de)
L1852[18:08:02]
⇨ Joins: t3hero
(~t3hero@2601:202:200:fb50:e89e:7998:b5bb:df22)
L1853[18:13:44]
⇦ Quits: nullreturn
(webchat@107-138-114-47.lightspeed.rcsntx.sbcglobal.net) (Quit: Web
client closed)
L1855[18:19:50]
<
Elizabeth> ?
L1856[18:22:21] ***
kirby|gone is now known as mrkirby153
L1857[18:22:32]
⇦ Quits: t3hero
(~t3hero@2601:202:200:fb50:e89e:7998:b5bb:df22) (Read error:
Connection reset by peer)
L1858[18:22:57]
⇨ Joins: t3hero
(~t3hero@c-67-182-65-239.hsd1.ca.comcast.net)
L1859[18:28:11]
⇦ Quits: `-` (ds84182@eos.pc-logix.com) (Ping timeout: 189
seconds)
L1860[18:28:16]
⇦ Quits: spiriteddusty (spiriteddu@eos.pc-logix.com) (Ping
timeout: 198 seconds)
L1861[18:28:24]
⇨ Joins: Michi (~Caitlyn@206.255.162.154)
L1862[18:28:29]
zsh sets mode: +o on Michi
L1863[18:28:30] <Michi> Umm
L1864[18:28:30]
⇦ Quits: dangranos (dangranos@eos.pc-logix.com) (Ping
timeout: 198 seconds)
L1865[18:28:32] <Michi> Shit
L1866[18:28:32]
⇦ Quits: Corded (discord@2607:5300:60:51da::c0f:fee) (Ping
timeout: 198 seconds)
L1867[18:29:49]
⇨ Joins: Mimiru (Mimiru@eos.pc-logix.com)
L1868[18:29:50]
zsh sets mode: +o on Mimiru
L1869[18:29:50] *** Server sets mode:
+ntz
L1870[18:30:37]
⇨ Joins: nullreturn
(webchat@107-138-114-47.lightspeed.rcsntx.sbcglobal.net)
L1871[18:33:32] <nullreturn> why does
plan9k panic when i boot on oc 1.8-1.5.22.46?
L1872[18:39:22] <sugoi> nullreturn: are
you using plan9k from that build?
L1873[18:39:29] <sugoi> or did you just
reuse an existing install?
L1874[18:40:13]
⇦ Quits: Michi (~Caitlyn@206.255.162.154) (Quit:
Leaving)
L1875[18:40:48] <nullreturn> from the
build
L1876[18:41:17] <sugoi> then make an
issue and/or ask Magik6k
L1877[18:43:07] <nullreturn> and i crash
randomly =/
L1879[18:50:02]
⇦ Quits: xarses (~xarses@64.124.158.100) (Ping timeout: 189
seconds)
L1880[18:53:05] ***
Gavle|Away is now known as Gavle
L1881[18:53:08]
⇦ Quits: fotoply
(~fotoply@2-104-228-18-static.dk.customer.tdc.net) ()
L1882[18:53:41] <Gavle> hi
L1883[18:53:43] *
vifino picks up Lizzy and carries her to bed
L1884[18:53:47] *
Lizzy falls asleep on vifino
L1885[18:55:14] <Gavle> Lizzy, do you
mean "Lizzy falls asleep on Vista02?"
L1886[18:55:18] *
Gavle snickers
L1887[18:55:37] <Mimiru> That's a very
specific reference...
L1888[18:55:50] <Gavle> MGR told me some
of the highlights
L1889[18:55:59] <Gavle> mostly about the
XP01 fiasco
L1890[18:56:12] <Gavle> because he's
angry at XP01
L1891[18:57:30] <DeanIsaKitty> Of whom he
said that he does not know who he is. :P
L1892[18:57:47] <Gavle> Yeah, he still
doesn't
L1893[18:58:03] <Gavle> but he yelled at
them through IRC until they said they wouldn't spam random
stuff
L1894[18:58:23] *
vifino stabs Gavle
L1895[18:58:33] <Dashkal> Yelled at him
through irc...
L1896[18:58:38] <Dashkal> Just when I
thought the lesson was learned
L1897[18:58:43] *
Gavle has been stabbed
L1898[18:58:54] <Dashkal> Oh well,
perhaps he has to learn the harder way after all
L1899[18:58:56] <Gavle> Dashkal,
what?
L1900[19:00:49] *
Dashkal loses interest rather than answering
L1901[19:01:38] <Dashkal> I suppose I can
make the ram bit work more or less exactly if I just serialize the
state every tick and count bytes, but yech.
L1902[19:01:51] <Dashkal> Still, I kinda
gotta serialize every tick or risk rollback if the server
crashes.
L1903[19:01:55] <Dashkal> Not sure if
important.
L1904[19:02:04] <Dashkal> How often does
the base arch actually serialize to NBT?
L1905[19:06:20] <DeanIsaKitty> Dashkal: I
think the eris arch serializes to disk for performace reasons. No
idea about the luaj one though
L1907[19:07:25] <Dashkal> DeanIsaKitty:
How often? I know it has to serialize at some point.
L1908[19:07:38] <Dashkal> I'm deciding if
I can get away with doing that less often. Say, once a
second~.
L1909[19:08:19] <Dashkal> Redstone
interaction makes this a potential problem. Program sets redstone
up, server crashes, resets, program comes back at a state before it
went up.
L1910[19:08:23] <DeanIsaKitty> Dashkal:
You asked how often it searializes to NBT. Answer: never. I have no
idea how often OC does serialize to disk :P
L1911[19:08:34] <Dashkal> The NBT was not
the important bit
L1912[19:09:12]
⇨ Joins: xarses (~xarses@50.141.32.218)
L1913[19:09:20]
⇦ Quits: xarses (~xarses@50.141.32.218) (Read error:
Connection reset by peer)
L1914[19:10:46]
⇨ Joins: xarses (~xarses@50.141.32.218)
L1915[19:10:51]
⇦ Quits: xarses (~xarses@50.141.32.218) (Read error:
Connection reset by peer)
L1916[19:12:32]
⇨ Joins: xarses (~xarses@50.141.32.218)
L1917[19:12:50]
⇦ Quits: xarses (~xarses@50.141.32.218) (Read error:
Connection reset by peer)
L1918[19:13:43]
⇨ Joins: xarses (~xarses@50.141.32.218)
L1919[19:13:50]
⇦ Quits: xarses (~xarses@50.141.32.218) (Read error:
Connection reset by peer)
L1920[19:23:06]
⇨ Joins: xarses (~xarses@50.141.35.174)
L1921[19:24:42]
⇨ Joins: xarses_
(~xarses@c-73-202-191-48.hsd1.ca.comcast.net)
L1922[19:26:56]
⇦ Quits: xarses (~xarses@50.141.35.174) (Ping timeout: 198
seconds)
L1923[19:37:36] ***
Gavle is now known as Gavle|Away
L1924[19:40:09]
⇨ Joins: Doty1154
(~Doty1154@2601:648:8002:c1a1:49a6:9520:586f:3eb)
L1926[19:53:34] <Izaya> oh hey you
actualy did it
L1927[19:53:36] <Izaya> whatever that
is
L1928[20:02:36] <Saphire> Those are..
cookies?
L1929[20:10:51]
⇨ Joins: InariWB
(~Pinkishu@p5DEC6E35.dip0.t-ipconnect.de)
L1930[20:12:55]
⇦ Quits: InariWB (~Pinkishu@p5DEC6E35.dip0.t-ipconnect.de)
(Client Quit)
L1931[20:13:44]
⇦ Quits: Inari (~Pinkishu@p5DEC6DD9.dip0.t-ipconnect.de)
(Ping timeout: 198 seconds)
L1932[20:45:01]
⇦ Quits: AlexisMachina
(uid57631@id-57631.charlton.irccloud.com) (Quit: Connection closed
for inactivity)
L1933[20:55:50]
⇦ Quits: surferconor425|Cloud
(uid77899@id-77899.tooting.irccloud.com) (Quit: Connection closed
for inactivity)
L1934[21:20:03]
⇦ Quits: nullreturn
(webchat@107-138-114-47.lightspeed.rcsntx.sbcglobal.net) (Quit: Web
client closed)
L1935[21:27:16]
⇦ Quits: Terra1 (webchat@69-165-131-74.dsl.teksavvy.com)
(Ping timeout: 204 seconds)
L1936[21:47:35]
⇨ Joins: nullreturn
(webchat@107-138-114-47.lightspeed.rcsntx.sbcglobal.net)
L1937[21:57:15] <Antheus> gamax92, looks
like you ate kisses-shaped corn and oats, then shit it out
L1938[21:57:41] <gamax92> Antheus: this
wasn't a picture of you
L1939[21:57:46] <Antheus> I know
L1940[21:57:53] <Antheus> It was of
you
L1941[21:57:54] <Antheus> :P
L1942[21:57:59] <Antheus> What falor are
they
L1943[21:58:02] <Antheus> flavor
L1944[21:58:04] <Antheus> *
L1945[21:58:09]
⇨ Joins: t3hero_
(~t3hero@2601:202:200:fb50:bdb7:a3f7:1500:7590)
L1946[21:58:56] <gamax92> Antheus: baked
butter
L1947[22:00:20]
⇦ Quits: t3hero (~t3hero@c-67-182-65-239.hsd1.ca.comcast.net)
(Ping timeout: 189 seconds)
L1948[22:07:19] <Antheus> yummy
L1949[22:10:07] <Mimiru> woo
L1950[22:10:12] <Mimiru> I now own a
box.
L1951[22:10:20] <Antheus> yay?
L1952[22:10:25] <Antheus> yay.
L1953[22:10:28] <Antheus> yay!
L1954[22:15:15] <Antheus> Well
L1955[22:15:17] <Antheus> Good
night
L1956[22:15:21] <Saphire> Box?
L1957[22:15:24] <Antheus> Box.
L1958[22:15:32] <Antheus> Like, she
finally has a cardboard box
L1959[22:15:54] ***
Antheus is now known as AntheusAway
L1960[22:16:25]
⇦ Quits: h3po (~h3po@aftr-5-146-248-114.unity-media.net)
(Quit: Leaving.)
L1961[22:16:51] <gamax92> Mimiru: yay,
begin migration?
L1962[22:18:08] <Mimiru> Soon ™
L1963[22:18:12] <Mimiru> Have to install
my OS...
L1964[22:18:20] <Mimiru> Trying to decide
how I want to partition
L1965[22:18:39] <Mimiru> my least
favorite part of this
L1966[22:24:21] <CompanionCube> What
OS?
L1967[22:24:55] <gamax92> OpenOS
obviously
L1968[22:24:56] <gamax92> :P
L1969[22:26:48] <Mimiru> I'd rather not
say? :p
L1970[22:32:05] <Izaya> Windows NT
3.5
L1971[22:32:09] *
Izaya nods
L1972[22:32:18] <Izaya> We all understand
why you'd prefer not to.
L1973[22:32:25] <Mimiru> lol
L1974[22:33:31] <CompanionCube> Izaya:
no
L1975[22:33:40] <CompanionCube> Windows
NT 3.1
L1976[22:33:55] <Izaya> now with MIPS
support!
L1977[22:34:02] <CompanionCube> With a
special version of the Microsoft Bob interface
L1978[22:34:11] <CompanionCube>
customized for server administration
L1979[22:34:30] <Izaya> Which service
would you like to configure?
L1980[22:34:40] <Izaya> Would you like to
start, stop, restart or reload IIS?
L1981[22:34:58] <Mimiru> Anyway, I'm
installing the OS tonight, hoping I'll get to configing stuff
tomorrow while at work, and I'll start migrating tomorrow
night
L1982[22:34:59] <Izaya> Instructions
unclear, summoned a microsingularity
L1983[22:35:09] <CompanionCube> Izaya:
no
L1984[22:35:36] <CompanionCube> The
microsingularity is what happens if you attempt to 'upgrade' to
Windows ME.
L1985[22:36:19] <SuPeRMiNoR2> I had a
laptop with ME
L1986[22:36:27] <SuPeRMiNoR2> It was
shit
L1987[22:47:23]
⇦ Quits: Doty1154
(~Doty1154@2601:648:8002:c1a1:49a6:9520:586f:3eb) (Quit:
Leaving)
L1988[22:55:57] ***
SleepingFairy is now known as LearningFairy
L1989[22:58:49]
⇨ Joins: Vexatos
(~Vexatos@p200300556E6CB7135C491E0CFAD10EE7.dip0.t-ipconnect.de)
L1990[22:58:49]
zsh sets mode: +v on Vexatos
L1991[23:00:41]
⇦ Quits: Lathanael|Away
(~Lathanael@p54960243.dip0.t-ipconnect.de) (Ping timeout: 198
seconds)
L1992[23:08:36]
⇨ Joins: Lathanael|Away
(~Lathanael@p54960698.dip0.t-ipconnect.de)
L1993[23:17:20]
⇨ Joins: npe|office
(~NPExcepti@bps-gw.hrz.tu-chemnitz.de)
L1994[23:20:42]
⇦ Quits: Vexatos
(~Vexatos@p200300556E6CB7135C491E0CFAD10EE7.dip0.t-ipconnect.de)
(Quit: I guess I have to go now. Bye ✔)
L1995[23:29:55] <sugoi> anyone here use
smartgit?
L1996[23:30:08] <sugoi> i've only been
looking at it for like an hour, loving it
L1997[23:37:13] <gamax92> sugoi: as a
user of smartgit, give me a convincing argument as to why I'd like
to use it?
L1998[23:38:00] <sugoi> things i want are
easily accesible. view by user, view by file, view by dir
L1999[23:38:18] <sugoi> select branches
for view
L2000[23:38:25] <sugoi> (not just remote
vs local)
L2001[23:38:29] <sugoi> um....
L2002[23:38:48] <sugoi> compare with
local right click directly from any commit
L2003[23:38:56] <sugoi> view by code
chunk (history)
L2004[23:39:01] <sugoi> um....
L2005[23:39:11] <sugoi> it's
just...everything so far that i've looked for was there and easy to
find
L2006[23:39:34] <sugoi> except that
everything i want is in the "Log" window
L2007[23:39:43] <sugoi> and i didn't
realize at first that i was in the Log window
L2008[23:39:57] <sugoi> and i couldn't
undersatnd where "create branch" was - until I went back
to the repo window
L2009[23:40:01] <sugoi> understand*
L2010[23:40:05] <sugoi> but, that's
fine
L2011[23:40:34] <lashtear> I use git and
magit and that's about it
L2012[23:40:42] <sugoi> and the interface
is by far much faster (less laggy) than sourcetree
L2013[23:43:14]
⇨ Joins: FatalDistraction
(webchat@pool-64-222-146-195.man.east.myfairpoint.net)
L2014[23:44:09] <FatalDistraction> Hello.
It's me.
L2015[23:48:46] ***
mrkirby153 is now known as kirby|gone
L2016[23:49:55] <Saphire> Who?
L2017[23:50:24]
⇦ Quits: FatalDistraction
(webchat@pool-64-222-146-195.man.east.myfairpoint.net) (Ping
timeout: 204 seconds)
L2018[23:51:30] <gamax92> .-. wat
L2019[23:51:40] <gamax92> DeanIsaKitty:
what even is calliper
L2020[23:53:54] ***
v^ is now known as v^^v^vvv^^^^fixed
L2021[23:53:59] ***
v^^v^vvv^^^^fixed is now known as ping