<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:08:10] ⇨
Joins: mallrat208
(~mallrat20@184-88-141-123.res.bhn.net)
L2[00:10:01] ⇦
Quits: mr208 (~mallrat20@184-88-141-123.res.bhn.net) (Ping timeout:
190 seconds)
L3[00:18:01] <Pwootage> AAARGH null pointer
with zero logging anywhere >:(
L4[00:33:38] ⇨
Joins: mr208 (~mallrat20@184-88-141-123.res.bhn.net)
L5[00:35:30] ⇦
Quits: mallrat208 (~mallrat20@184-88-141-123.res.bhn.net) (Ping
timeout: 186 seconds)
L6[00:41:22] ⇦
Quits: iceman11a (icemna11a@cpe-74-141-48-157.neo.res.rr.com) (Ping
timeout: 186 seconds)
L7[00:42:01] ⇨
Joins: iceman11a
(icemna11a@cpe-74-141-48-157.neo.res.rr.com)
L8[00:42:15] <lperkins2> So, last night I
asked about databases for lua in OC,
L9[00:42:26] <lperkins2> now there is
one.
L10[00:44:02] <lperkins2> Just a simple
non-sql key/value system, I'm planning to add functionality similar
to firebase eventually,
L11[00:44:20] <lperkins2> supports numbers,
strings, and tables
L12[00:44:51] <lperkins2> will support
python types and python functions, but not tonight
L13[00:45:05] <lperkins2> (ala ZODB)
L14[00:45:15] ***
Kasen is now known as rakiru|offline
L15[00:45:19] <Pwootage> nice
L16[00:46:31] <lperkins2> it'll be listed
in oppm in a couple minutes
L17[00:46:54] <lperkins2> it's implemented
in python, but with a wrapper to use it from lua
L18[00:53:28] <lperkins2> And there we go,
listed in oppm, now just need to see if I got the installer
right..
L19[00:55:01] <v^Laptop> i was thinking of
making a black/red tree based filesystem
L20[00:57:20] <lperkins2> I'm not sure what
that is.
L21[00:57:36] ***
mr208 is now known as mallrat208
L22[00:59:01] ⇨
Joins: mr208 (~mallrat20@184-88-141-123.res.bhn.net)
L23[01:01:22] ⇦
Quits: mallrat208 (~mallrat20@184-88-141-123.res.bhn.net) (Ping
timeout: 195 seconds)
L24[01:08:37] <lperkins2> Oh, don't use nil
keys or values, they'll make the python vm choke
L25[01:08:50] <lperkins2> I'll add an unset
function
L26[01:10:22] <Izaya> gamax92, everything
inside the rather large world border
L27[01:12:54] <Temia> what, can't the
Python VM translate them to a None singlet?
L28[01:14:09] <lperkins2> It does,
internally
L29[01:14:31] <lperkins2> But python
Function objects are callable lua tables
L30[01:14:46] <lperkins2> if you call them
with nil, the stack chokes
L31[01:14:53] <lperkins2> fixing it is on
the todo list.
L32[01:14:58] <Temia> Ah.
L33[01:15:18] <lperkins2> python calls to
lua which return nil are automatically converted to None
L34[01:16:16] <lperkins2> Eventually I'll
probably make the stack push None anytime it's asked to push nil,
but that makes tracing some internal errors harder
L35[01:16:35] ⇨
Joins: Xal (~Xal@s0106881fa12987ab.vw.shawcable.net)
L36[01:19:06] <lperkins2> So that will wait
till the rest of the opcodes are fully debugged, which means
reading ceval.c to see what the heck CALL_FUNCTION_VAR actually
does
L37[01:19:17] ***
kirby|gone is now known as mrkirby153
L38[01:20:06] <Sandra> lperkins2, how... do
you have a python vm?
L39[01:20:39] <Sandra> that's compatible
with lua even?
L40[01:22:05] <lperkins2> Um, I implemented
a python bytecode VM?
L41[01:22:17] <lperkins2> It's only about
2500 lines of lua
L42[01:22:36] <lperkins2> It's not a lexile
parser, you have to compile the python files externally
L43[01:23:13] ⇦
Quits: Xal (~Xal@s0106881fa12987ab.vw.shawcable.net) (Quit:
cya)
L44[01:23:35] <lperkins2> I'm planning to
add a JIT to speed it up, currently it runs pretty fast, but it is
slow to start up.
L45[01:24:39] <Sandra> oh, neat.
L46[01:25:17] <lperkins2> it's listed in
oppm if you want to play with it, or here
L48[01:25:20] ⇨
Joins: mallrat208
(~mallrat20@184-88-141-123.res.bhn.net)
L49[01:25:51] <lperkins2> the repl is
currently kinda busted, values aren't persisting between calls
properly
L50[01:26:01] <lperkins2> to use it,
L51[01:26:11] <lperkins2> set
COMPILER=alestan.publicvm.com:12346
L52[01:26:36] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Remote host closed the connection)
L53[01:26:58] ⇦
Quits: mr208 (~mallrat20@184-88-141-123.res.bhn.net) (Ping timeout:
194 seconds)
L54[01:27:00] ⇨
Joins: mallrat (~mallrat20@184-88-141-123.res.bhn.net)
L55[01:29:06] ⇦
Quits: mallrat208 (~mallrat20@184-88-141-123.res.bhn.net) (Ping
timeout: 206 seconds)
L56[01:29:19] <lperkins2> and no, it
doesn't execute the code to compile it :)
L57[01:29:36] ⇦
Quits: Doty1154 (~Doty1154@2601:648:8002:ea78:adaf:a400:c029:b029)
(Read error: Connection reset by peer)
L58[01:30:28] <lperkins2> be back in a
bit
L59[01:35:13] <Temia> Say, LP, which
version of Python were you targeting again? CPython 2.7?
3.whichever is hot?
L60[01:42:06] ⇦
Quits: phillips1012 (~phillips1@72.42.104.172) (Ping timeout: 190
seconds)
L61[01:44:54] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L62[01:49:19] ⇨
Joins: brandon3055 (~Brandon@122.129.140.1)
L63[01:51:19] ⇨
Joins: mallrat208
(~mallrat20@184-88-141-123.res.bhn.net)
L64[01:53:52] ⇦
Quits: mallrat (~mallrat20@184-88-141-123.res.bhn.net) (Ping
timeout: 195 seconds)
L65[01:55:55] ⇦
Quits: mallrat208 (~mallrat20@184-88-141-123.res.bhn.net) (Read
error: Connection reset by peer)
L66[01:56:17] ⇨
Joins: mallrat208
(~mallrat20@184-88-141-123.res.bhn.net)
L67[01:58:26] ⇨
Joins: phillips1012 (~phillips1@72.42.104.172)
L68[02:02:37] ⇨
Joins: h3po (~h3po@aftr-5-146-249-20.unity-media.net)
L70[02:07:04] <asie> also, update your
repo's forge
L71[02:07:06] <asie> lots of fixes
L72[02:17:12] ⇨
Joins: mr208 (~mallrat20@184-88-141-123.res.bhn.net)
L73[02:18:14] <lperkins2> Temia 2.7, the
3.x opcodes are a lot more complicated
L74[02:18:22] ⇦
Quits: mallrat208 (~mallrat20@184-88-141-123.res.bhn.net) (Ping
timeout: 195 seconds)
L75[02:19:15] <lperkins2> Since it skips
over the magic numbers at the head of the file, python2 files
compiled with python3 might work
L76[02:19:27] <lperkins2> (I've not checked
if the opcode numbers have changed)
L77[02:20:15] <lperkins2> just checked,
most of them are the same...
L78[02:20:49] <lperkins2> actually 18 fewer
opcodes in 3.3 than in 2.7
L79[02:22:42] <lperkins2> Oh, and the
python VM must be single threaded (you can use coroutine.yield from
inside python functions, but can't call any other python functions
while mid-function)
L80[02:23:08] <lperkins2> looks like 7
opcodes to add to make it work in python3...
L81[02:27:08] ⇨
Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L82[02:30:57] <Izaya> fuck, Laboratory
Blocks are expensive
L83[02:31:08] <Izaya> I don't have the
nether quartz nor the cobblestone
L84[02:31:11] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L85[02:31:47] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Ping timeout: 195 seconds)
L86[02:31:56] <lperkins2> not that either
are hard to get...
L87[02:32:05] <lperkins2> depending on mods
I suppose...
L88[02:32:17] <Izaya> But I need to make
476 batches
L89[02:32:27] <Izaya> that's 3808
stone
L90[02:32:27] <lperkins2> of 64?
L91[02:32:40] <Izaya> batch ->
recipe
L92[02:32:45] <Izaya> each one makes
8
L93[02:32:55] <lperkins2> right, so only
476 nether quartz
L94[02:33:06] <lperkins2> any automation
mods available?
L95[02:33:09] <Izaya> I have a 62x62 area I
need to floor, minus 9 4-block columns
L96[02:33:15] <Izaya> Oh, plenty, but this
is the room they'll go into
L97[02:33:32] <lperkins2> just thinking
kick out a quarry,
L98[02:33:52] <lperkins2> 4 levels down at
31x31 would get you enough for 62x62 floor
L99[02:34:46] <Izaya> I don't even have a
powered furnace yet
L100[02:34:54] <lperkins2> heh...
L101[02:36:00]
⇨ Joins: sciguyryan
(~sciguyrya@109-205-170-38.dynamic.swissvpn.net)
L102[02:36:11] <Roadcrosser> o/
L103[02:36:13] <Izaya> Or I could keep
using wood
L104[02:36:23] <Izaya> which would be
cheaper because I already have a dark oak farm
L105[02:36:33] <lperkins2> been so long
since I was at that tech level...
L106[02:36:54] <lperkins2> Don't think I'd
have the patience for it without my automated oreprocessing
crafting system
L108[02:39:15] <lperkins2> no flying
mobs?
L110[02:39:34] <Izaya> There are mobs that
spawn in the air?
L111[02:39:38] <lperkins2> your ceilings
are dark
L112[02:40:01] <lperkins2> lycan's mobs,
thaumacraft, ars magica, and a few others add flying mobs
L113[02:40:08] <Izaya> huh
L114[02:40:13] <Izaya> no, none of the
above
L115[02:40:45] <lperkins2> my early
cave-based house had low ceilings so the light would reach the
top
L116[02:41:35]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L117[02:42:55] <lperkins2> Why leave the
pillars?
L118[02:43:09] <Izaya> I sorta like
them.
L119[02:43:18] <Izaya> I want to have an
observation level type thing up top
L120[02:43:37]
⇨ Joins: mallrat208
(~mallrat20@184-88-141-123.res.bhn.net)
L121[02:44:02] <lperkins2> Ah
L123[02:45:06] ⇦
Quits: mr208 (~mallrat20@184-88-141-123.res.bhn.net) (Ping timeout:
186 seconds)
L124[02:45:18] <lperkins2> ooh, how'd you
make that?
L125[02:45:23] <Izaya> What?
L126[02:45:28] <lperkins2> that
picture
L127[02:45:46] <Izaya> it's
JourneyMap
L128[02:45:50] <lperkins2> My starship
looks like a giant wart
L129[02:46:00] <lperkins2> a way to plan
it out in advance would have been nice...
L130[02:46:05] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L131[02:46:14] <Izaya> I'm gonna build a
library in the middle of the thing
L132[02:46:17] <Izaya> on the top - in the
park
L133[02:47:29] <lperkins2> looks like a
street outside?
L134[02:47:30]
⇨ Joins: Vexatos
(~Vexatos@p200300556E14A498215055C288B2877E.dip0.t-ipconnect.de)
L135[02:47:31]
zsh sets mode: +v on Vexatos
L136[02:47:39] <lperkins2> lots of players
on the server?
L137[02:47:45] <Izaya> it's generated by
CityWorld
L138[02:47:52] <Izaya> not really, only
maybe 5
L139[02:48:26] <lperkins2> running a
bucket server,
L140[02:48:33] <Izaya> no, forge
L141[02:48:40] <Izaya> I used OresPlus to
retrogen the ores
L142[02:48:47] <Izaya> Forge and CityWorld
do not get along
L143[02:49:18] <lperkins2> ah
L144[02:50:06] <lperkins2> yeah, got 5
players on my server too, it's about the most a home internet
connection can handle
L145[02:50:30] <Izaya> I've got it running
on a not-hugely-powerful VPS
L146[02:50:37] <Izaya> 2GB RAM, 2
cores
L147[02:51:13] <lperkins2> yeah, I'm
thinking I may buy a bigger internet pipe
L148[02:51:36] <Izaya> I'd run it on my
big home server
L149[02:51:39] <lperkins2> my server's a
beast, liquid cooled, 6 cores, gonna up it to 16GB of ram
L150[02:51:49] <Izaya> but ~300k/s is the
most upload I can get
L151[02:52:05] <Izaya> I've got octa-core,
8GB RAM and a 10TB RAID array
L152[02:52:10] <lperkins2> faster internet
is cheaper than a VPS here, I'm at 1m/s
L153[02:52:36] <lperkins2> but I can't
really justify the extra expense for a gam
L154[02:53:08] <lperkins2> maybe if we got
more players and they wanted to chip in or something,
L155[02:53:28] <Izaya> Would you get
better download too?
L156[02:53:37] <lperkins2> down's at
12m/s,
L157[02:53:40] <lperkins2> but yeah
L158[02:53:49] <Izaya> better down is a
fair excuse :3
L159[02:54:06] <lperkins2> it's already
faster than I need.
L160[02:55:02] <lperkins2> other than for
about 10 minutes after midnight when the tahoefs does its big
sync
L162[02:58:17] <lperkins2> hm, wonder if
you could set up a zombie apocalypse modpack with the cityworld
stuff...
L163[02:59:43] <Izaya> it's been
done
L164[02:59:57] <Izaya> there's also
options for the world to be flooded, covered in sand or snowed
under
L165[03:00:10] <Izaya> or floating like
Bioshock Infinite
L166[03:00:34] ⇦
Quits: Yepoleb (~quassel@188-22-163-125.adsl.highway.telekom.at)
(Killed (nova.esper.net (Nickname regained by
services)))
L167[03:00:36]
⇨ Joins: Yepoleb
(~quassel@91-115-112-180.adsl.highway.telekom.at)
L168[03:00:38] <lperkins2> that was such a
letdown of a series...
L170[03:01:02] <lperkins2> bioshock
L171[03:01:09] <Izaya> yeah but how
so?
L172[03:01:18] *
Izaya is yet to play 1 or 2
L173[03:01:24] <Izaya> I'd need a Windows
box to play either of those
L174[03:01:27] *
lperkins2 is yet to play 2 or 3
L175[03:01:55] <lperkins2> So, I think in
a large part it's because of how it was advertised
L176[03:02:40] <lperkins2> supposed to be
heavily inspired by systemshock and sshock2, attempted to knock
them off the pinnacle of the horror game genre
L177[03:02:53] <lperkins2> and given that
bar to clear, it just fell flat
L178[03:03:03] <Izaya> it was meant to be
horror?
L179[03:03:14] <lperkins2> psych
thriller
L180[03:03:25] <Izaya> eh I guess
L181[03:03:36] <lperkins2> the graphics
were too cartoonish,
L182[03:03:52] <Izaya> Infinite just has a
creepy religious cult, not really horror
L183[03:04:00] <Izaya> (or psych
thriller)
L184[03:04:06] <lperkins2> the plotline
was pretty predictable, basically just sshock2 set under the
ocean
L185[03:04:07]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L186[03:05:00] <lperkins2> so I think I
can see how someone who didn't get it because it was supposed to be
inspired by systemshock would enjoy it
L187[03:05:31] <lperkins2> but it's like
GLaDOS, just doesn't hold a candle to SHODAN
L188[03:05:56] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L189[03:06:10] <Izaya> GLaDOS was
likable
L190[03:07:44] <lperkins2> aye, especially
in portal 2
L191[03:08:29]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L192[03:08:31] <lperkins2> if you don't
mind retro graphics (or are willing to deal with updating to the
community texture packs), and like psych thrillers, try systemhock
2
L193[03:10:29] <Izaya> I have a copy
somewhere
L194[03:10:35] <Izaya> does it run
>640x480
L196[03:10:59] <Temia> I feel old
now.
L197[03:11:25] <Temia> I can't believe
System Shock 2's graphics are considered a retro aesthetic
now.
L198[03:11:40] <Temia> Anyway, it does,
but the big issue is that it has issues with multithreaded
systems.
L199[03:12:06] <Izaya> I have a ...
L200[03:12:15] <Izaya> I don't think I own
a functional recent single-threaded machine
L201[03:12:20] <Izaya> Would it run on a
Pentium III?
L202[03:13:21] <lperkins2> it runs on aa
pentium III
L203[03:13:24] <Temia> It should.
L204[03:13:28] <lperkins2> needs at least
8M of video memory
L205[03:13:34] <Izaya> This has 64.
L206[03:13:43] <Izaya> 64M video, 768M
system
L207[03:13:44] <lperkins2> and lock it to
1 thread, same as for Thief Gold
L208[03:13:47] <Izaya> 1.0Ghz
L209[03:13:58] <lperkins2> I first played
it on an 800MHz
L210[03:15:07] <Izaya> Uh, will it run on
Linux?
L211[03:23:10] <lperkins2> it does
L212[03:23:22] <lperkins2> for the last
couple years
L213[03:23:30] <lperkins2> needs like wine
1.7 or later
L214[03:23:55] <Izaya> one hopes debian
has that
L215[03:30:00] <Izaya> so on the next
block there's a building with heaps of books
L216[03:30:05] <Izaya> I should like
L217[03:30:09] <Izaya> demolish that for
the books
L218[03:30:29] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L220[03:32:50] ⇦
Quits: v^Laptop (~ping@c-68-41-215-101.hsd1.mi.comcast.net) (Ping
timeout: 206 seconds)
L221[03:33:36]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L222[03:35:01] ⇦
Quits: asie (~asie@asie.pl) (Quit: WeeChat 1.1)
L223[03:36:50] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Ping timeout: 186 seconds)
L224[03:43:04]
⇨ Joins: asie
(~asie@li1411-142.members.linode.com)
L225[03:43:04]
zsh sets mode: +v on asie
L226[03:43:53] ⇦
Quits: v^ (~ping@c-68-41-215-101.hsd1.mi.comcast.net) (Quit:
Bye)
L227[03:56:12] ⇦
Quits: h3po (~h3po@aftr-5-146-249-20.unity-media.net) (Quit:
Leaving.)
L228[04:01:37] ⇦
Quits: SleepingFairy (Daiyousei@dai.is.best.fairy.stary2001.co.uk)
(Ping timeout: 195 seconds)
L229[04:01:37] ⇦
Quits: CompanionCube (~samis@osiris.stary2001.co.uk) (Ping timeout:
195 seconds)
L230[04:01:40] ⇦
Quits: Stary2001 (~Stary2001@osiris.stary2001.co.uk) (Ping timeout:
194 seconds)
L231[04:02:58] ⇦
Quits: ConcernedHobbit (chobbit@god.hobbits.science) (Ping timeout:
186 seconds)
L232[04:11:18]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L233[04:11:21] <lperkins2> well, that
explains why list comprehensions are so much faster in
cpython
L234[04:11:31] ⇦
Quits: orthoplex64 (~orthoplex@173.227.72.119) (Ping timeout: 206
seconds)
L235[04:35:51] <Sangar> o/
L236[04:37:33] <Vexatos> o\
L237[04:37:37] <nxsupert> o/
L238[04:37:41] <Izaya> o\
L239[04:51:44] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L240[04:55:57]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L241[04:59:17] <dangranos> o|
L242[05:00:12] <nxsupert> You had to be
different didn't you ? :P
L243[05:00:48] <dangranos> yup :Ь
L244[05:01:11] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L245[05:01:25] <dangranos> You just had to
break the combo, didn't you?
L246[05:05:08] <Vexatos> :b
L247[05:05:16] <Vexatos> almost as cool as
:Ь
L248[05:06:58] ⇦
Quits: lperkins2 (~perkins@63.227.187.208) (Ping timeout: 186
seconds)
L249[05:08:34] ⇦
Quits: t3hero_ (~t3hero@2601:202:200:fb50:49bb:592c:5c5e:d970)
(Read error: Connection reset by peer)
L250[05:11:16] <dangranos> :Ы
L251[05:12:47] <DeanIsaKitty> :з
L252[05:14:59] <Vexatos> ß_ß
L254[05:21:17] <Sangar> looks nice. what
are those post-apocalyptic buildings in the back?
L255[05:22:38] <vifino> Wee. I managed to
connect, but I can't switch channels because fbterm. Also, unicode
is f'd up :v
L256[05:23:30] <Izaya> Sangar, it's part
of the CityWorld generator
L257[05:23:34] <vifino> oh god, my cousin
sent me a 3.3mb csv and mutt is loading it inline
L258[05:23:38] <vifino> for fucks
sake
L259[05:23:41] <Sangar> interesting
L260[05:26:29] <Kubuxu> Sangar: Have you
seen #1545 (unicode and /0)?
L261[05:27:38] <Sangar> i saw the mail,
haven't really looked at it yet
L262[05:30:08] <Kubuxu> I think the
problem is with returning string to luac.
L263[05:30:42] <Kubuxu> It probably
interprets it as CString so it /0 causes termination. This is at
least my guess.
L264[05:31:26] <Sangar> maybe. gtg for
now, feel free to add any ideas / info to the issue!
L265[05:31:45] <Kubuxu> Changing it to
return bytearray of UTF-8 (or 16) from that string might fix
it./.
L266[05:35:11]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L267[05:39:02] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Ping timeout: 195 seconds)
L268[05:39:59] <Vexatos> Kubuxu, did you
try that code in actual Lua
L269[05:40:04] <Vexatos> hmm
L270[05:40:07] <Vexatos> Actually, let me
test it
L271[05:40:47] <Kubuxu> I didn't. I just
suspect that.
L272[05:42:48] <Vexatos> hmm
L273[05:43:02] <Vexatos> Sangar, what's
the difference between len and wlen
L274[05:44:33] <Vexatos> Kubuxu, so
unicode.len does return 3 while utf8.len returns 7
L275[05:44:37] <Vexatos> so it is indeed a
unicode API bug
L276[05:46:34] <dangranos> ьгфрфрфрф
L277[05:46:37] <dangranos> damn
L278[05:46:50] *
dangranos slaps himself for not switching keyboard
layout
L279[05:46:50] *
EnderBot2 high-fives dangranos
L280[05:53:07] <Kubuxu> Vexatos: right,
then now I don't know where it disappears.
L283[05:53:45] <Kubuxu> wait
L285[05:57:27] *
Lizzy groans
L286[05:57:55] <Lizzy> Morning, i
suppose
L287[05:58:59] <Vexatos> Kubuxu, have you
looked at how Lua 5.3 implements utf8
L288[05:59:44] <Kubuxu> Nope, it is done
in C, problem is that '/0.+' disappears somewhere in Arch
code.
L289[06:00:07] <Vexatos> could it be a
Java issue?
L290[06:00:35] <DeanIsaKitty> Vexatos: The
JVM uses utf16, which handles null bytes differently. Maybe.
L291[06:01:34]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L292[06:02:04] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L293[06:03:29] <Izaya> "Write once,
debug everywhere." Similar behavior guaranteed.
L294[06:04:13]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L295[06:05:05] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L296[06:06:35] <Lizzy> \o/ the forum is
still up
L297[06:13:53] ⇦
Quits: SleepyFlenix (~Flenix@bcdc955b.skybroadband.com) (Quit: I
must go now, my people need me.)
L298[06:13:56]
⇨ Joins: Flenix (~Flenix@2a01:4f8:201:63e2::2)
L299[06:14:39]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L300[06:20:10]
⇨ Joins: Jezza (~Jezza@185.44.151.107)
L301[06:27:08] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L302[06:28:14] <Lizzy> \o/ i think mysql
replication is working
L303[06:30:38]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L304[06:31:22] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L305[06:31:43] <vifino> \o/
L306[06:32:53] <Lizzy> well, at least
janus > athar is, just making a backup now then will try testing
something on athar's db to see if the changes go the other
way
L307[06:32:57] <Vexatos> grargh firefox y
u no multithread
L308[06:33:32]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L309[06:34:56] <vifino> Vexatos: firefox
spams threads, but some parts are still single threaded, but yeah,
for the important parts such as javascript...
L310[06:35:00] <vifino> Le nope.
L311[06:35:03] <Vexatos> oh wait , it is
just xorg
L312[06:35:13] <Vexatos> usin 100% of a
single core
L313[06:35:17] <vifino> You have troubles
with xorg too?
L314[06:35:20] <Vexatos> making the GUI
lag like hell
L315[06:35:21] <Vexatos> xorg pls what are
you doing
L316[06:35:29] <vifino> My touchpad isn't
working again :D
L317[06:35:37] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L318[06:35:44] <dangranos> Vexatos:
e10s
L319[06:35:52] <dangranos> ah
L320[06:36:08] <Vexatos> wat
L321[06:36:13] <Vexatos> xorg lagging GUI
like hell
L322[06:36:16] <Vexatos> closed
firefox
L323[06:36:19] <Vexatos> GUI normal
again
L324[06:36:51] <dangranos> ._.
L325[06:36:51] <Vexatos> grargh
L326[06:37:12] <Vexatos> xorg y u no
multithreading
L327[06:38:48] <vifino> ¬_¬
L328[06:39:01]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L329[06:41:49] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L330[06:44:42] <vifino> I FIXED IT!
L331[06:44:53] <vifino> Hooray!
L332[06:45:21] <vifino> Turns out Xorg
update made the api bump from 19 to 20, which rendered my
mtrack-git module unloadable.
L333[06:45:27] <vifino> So yay,
fixed!
L334[06:45:37] <vifino> 4.3.1-pf :3
L335[06:45:40] ***
alekso56_off is now known as alekso56
L336[06:50:50] <vifino> I think it's just
me, but I kinda think it got a bit faster in everything but startup
time.
L337[06:51:03] <vifino> Like, more
responsive and stuff.
L338[06:53:51] ***
Keridos is now known as Keridos|away
L339[06:58:41] ⇦
Quits: Fridtjof (~prassel@osiris.stary2001.co.uk) (Quit: ZNC -
http://znc.in)
L340[07:04:50] ⇦
Quits: Kubuxu (~Kubuxu@vs1.kubuxu.ovh) (Ping timeout: 186
seconds)
L341[07:05:00]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L342[07:05:22] ⇦
Quits: Magik6k (~Magik6k_@magik6k.net) (Ping timeout: 186
seconds)
L343[07:05:54] ⇦
Quits: marcin212 (~marcin212@bymarcin.com) (Ping timeout: 186
seconds)
L344[07:10:09] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L345[07:13:24]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L346[07:14:39] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L347[07:17:20]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L348[07:18:53] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L349[07:23:14]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L350[07:31:15]
⇨ Joins: Kubuxu (~Kubuxu@51.254.25.17)
L351[07:31:56]
⇨ Joins: marcin212 (~marcin212@51.254.25.20)
L352[07:33:24]
⇨ Joins: Magik6k (~Magik6k_@magik6k.net)
L353[07:33:53] ***
Magik6k is now known as Guest88369
L354[07:37:05] ***
Cruor is now known as Sir
L355[07:37:12] ***
Sir is now known as SirCruorfin
L356[07:37:14]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L357[07:40:47] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Ping timeout: 206 seconds)
L358[07:47:34] ***
Guest88369 is now known as Magik6k
L359[07:49:00] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L360[07:51:48]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L361[07:58:07] <asie> >tfw I should be
working on redstone wiring
L363[07:58:09] <MichiBot> Sat Dec 05
07:51:14 CST 2015 @asiekierka: Another feature I missed from 1.7.10
- this time, in a much lighter package.
https://t.co/DXqa2z8Aii
L364[07:58:56] <asie> Sangar: will you
complain if I add Factorization power support to TIS-3D when that
is out?
L365[07:58:59] <asie> the two would fit
nicely
L366[07:59:34]
⇨ Joins: Inari
(~Uni@p5DEC6315.dip0.t-ipconnect.de)
L367[08:04:43] <asie> Sangar: considering
coding a Shifting Module for TIS-3D
L368[08:04:50] <asie> which would
essentially be a Shifter
L369[08:04:57] <asie> actually, better
idea: Detection Module
L370[08:06:14]
⇨ Joins: Turtle
(~SentientT@82-171-92-73.ip.telfort.nl)
L371[08:06:28] <asie> anyway
L372[08:06:30] <asie> time to take a
break
L373[08:06:38] <asie> i might start coding
wires in the evening... the rendering's going to be a mess
L374[08:07:43] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L375[08:09:02] <Inari> shifter? like,
bitwise?
L376[08:09:49]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L377[08:11:25] <asie> Inari: no
L378[08:11:33] <asie> Shifter as in item
path prioritizer
L379[08:14:14] <Inari> ah
L380[08:14:22] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L381[08:14:27] <Inari> well i have no idea
what tis-3d does yet, so that makes zero sense lol
L382[08:16:37]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L383[08:18:45] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L384[08:19:05] <dangranos> tis-3d?
L385[08:19:16] <asie> tis-3d.
L386[08:19:21] <Izaya> I tried to write
TIS in OC last night
L387[08:19:29] <Izaya> it got exactly 5
percent done
L388[08:19:35] <Izaya> then I got bored of
writing a 'compiler'
L389[08:19:57] <dangranos> and what's
next?
L390[08:20:08] <gamax92> 95%
L391[08:20:30] <Izaya> well once I
finished writing the compiler
L392[08:20:33] <Izaya> I would have
written the VM
L393[08:20:42] <Izaya> which, naturally,
would have fit inside an EEPROM
L394[08:20:51] <Izaya> so you could build
your 3D grid out of microcontrollers
L395[08:21:22] <vifino> gamax92!
L396[08:21:46] *
gamax92 pounce a vifino
L397[08:22:57]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L398[08:22:58] <vifino> o.O
L399[08:23:08] *
vifino hugs gamax92 instead
L400[08:23:39] <gamax92> X3
L401[08:26:02] <gamax92> Kubuxu: Sangar's
unicode api is literally hitler, which is why I had suggested using
l53's libs and backporting them to 5.2 (extremely easy)
L402[08:27:19] <Inari> Izaya: how were you
transferring data?
L403[08:27:39] <Izaya> I was undecided
between using network and using redstone
L404[08:28:13] <gamax92> why not
both
L405[08:28:16] <Izaya> using RS would mean
to do an 8-bit value you'd need a redstone expansion mod to be
installed
L406[08:34:22]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L407[08:36:12] ⇦
Quits: VikeStep (~VikeStep@101.184.162.156) (Quit:
Leaving)
L408[08:40:05] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L409[08:42:46]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L410[08:45:32] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L411[08:47:33]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L413[08:48:34] <MichiBot> Inari:
Law
Enforcement Analyst Dumbfounded as Media Rummages Through House of
Suspected Terrorists | length:
1m 55s | Likes:
3325 Dislikes:
52 Views:
15045 | by
Washington Free
Beacon
L414[08:48:46] <Inari> Izaya: unless you
do serial?
L415[08:49:00] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L416[08:49:10] <Lizzy> %calc 16*5
L417[08:49:12] <MichiBot> Lizzy: 80
L418[08:49:32] <Inari> %calc
Lizzy*Lizzy
L419[08:49:39] <Izaya> Inari,
sloooow
L420[08:49:41] <Inari> :<
L421[08:49:46] <Inari> lizzy's too
big
L422[08:50:07] <Izaya> well I dunno, if it
has a value from 0-15, that's 4 bits
L423[08:51:04] <Izaya> to do an 8-bit
integer, that's only two component cycles
L424[08:51:11]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L425[08:55:44] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L426[08:58:05]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L427[08:59:49]
⇨ Joins: Kodos|Phone
(~androirc@172-11-212-108.lightspeed.stlsmo.sbcglobal.net)
L428[09:03:31] <gamax92> 1.02e+03kB
L429[09:03:33] <gamax92> wot?
L430[09:03:50] ***
Cranium[Away] is now known as Cranium
L431[09:08:20] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L432[09:10:41]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L433[09:15:43]
⇨ Joins: AndroUser2
(~androirc@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
L434[09:17:34] ⇦
Quits: Kodos|Phone
(~androirc@172-11-212-108.lightspeed.stlsmo.sbcglobal.net) (Ping
timeout: 194 seconds)
L435[09:18:27] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L436[09:18:48]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L437[09:19:06] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Remote host closed the connection)
L438[09:20:11] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L439[09:22:37]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L440[09:30:26] ⇦
Quits: AndroUser2
(~androirc@108-226-6-195.lightspeed.stlsmo.sbcglobal.net) (Ping
timeout: 186 seconds)
L441[09:30:53] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L442[09:32:01]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L443[09:33:41]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L444[09:45:14] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Remote host closed the connection)
L445[09:53:15]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L446[09:58:38] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L447[10:01:17] ***
Keridos|away is now known as Keridos
L448[10:03:28]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L449[10:04:25] <Lizzy> DeanIsaKitty, i
updated openssl on janus
L450[10:04:41] <DeanIsaKitty> Lizzy: Good
on you :P
L451[10:04:49]
⇨ Joins: orthoplex64 (~orthoplex@173.227.72.119)
L452[10:05:11] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L453[10:07:21] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Remote host closed the connection)
L454[10:07:56]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L455[10:11:02] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L456[10:13:41]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L457[10:15:34] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L458[10:16:04] ⇦
Quits: Vexatos
(~Vexatos@p200300556E14A498215055C288B2877E.dip0.t-ipconnect.de)
(Ping timeout: 194 seconds)
L459[10:18:27]
⇨ Joins: Vexatos
(~Vexatos@p200300556E14A498215055C288B2877E.dip0.t-ipconnect.de)
L460[10:18:28]
zsh sets mode: +v on Vexatos
L461[10:21:41]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L462[10:22:58] ⇦
Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection
reset by peer)
L463[10:26:15]
⇨ Joins: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
L464[10:26:16]
zsh sets mode: +v on Kodos
L465[10:29:24] *
Kodos walks into the room, humming the Happy Birthday song
=D
L466[10:29:47] <Alissa> Hey Kodos.
L467[10:29:56] <Alissa> Congratulations on
being an even older old fart now.
L468[10:30:03] <Alissa> :D
L469[10:30:12] <Kodos> =P
L470[10:30:45] <Kodos> I think later
today, after my wife's done with her meeting, I'm gonna try to
compile the 1.6 branch and see what I can get working
L471[10:38:53] *
Antheus stabs Kodos
L472[10:39:12] <Antheus> wait
L473[10:39:19] <Antheus> you can compile
the 1.6 branch?
L474[10:39:32] <Kodos> I assume so,
Magik6k put a couple 1.6 issues up on the tracker, so I assumed he
did
L475[10:40:00] *
Lizzy hmms
L476[10:40:57] *
Antheus mmms
L477[10:41:10] *
gamax92 mmhs
L478[10:41:32] *
Antheus hssssssss's
L479[10:41:36] <gamax92> NO.
L480[10:41:41] <Antheus> *boom*
L481[10:42:06] <Antheus> Kodos, it's your
birthday?
L482[10:42:52] <Kodos> Indeed
L483[10:43:06] <Antheus> hold on...
L484[10:43:58] *
Lizzy covers Kodos in confetti
L485[10:44:01] <Alissa> Kodos: Don't
forget to receive your Birthday Spankings ;D
L486[10:44:09] <Kodos> Wife already took
care of that this morning
L487[10:44:20] <Kodos> I also just
remembered I have leftover cookies from last night at grandma's in
th fridge
L489[10:44:45] <gamax92> this burrito ...
I don't even flavor is wat.
L490[10:45:02] <Antheus> It's what my
dentist sends me every year on my birthday :P
L491[10:45:07] <Kodos> gamax92: needs more
fire sauce
L492[10:45:20] <gamax92> I have hot sauce
:P
L493[10:45:40] <Antheus> poor
gamax92
L494[10:45:42] <gamax92> it's supposed to
be egg and pork but I'm eating it and it ... it i don't even
flavor
L495[10:45:46] <Antheus> has to be better
than my schools
L496[10:45:51] <gamax92> probably
not
L497[10:45:59] <Inari> Alissa: sounds like
something you'd want :P
L498[10:46:14] <Alissa> Inari: Or
something that you would want me to want.
L499[10:46:16] <Alissa> :P
L500[10:46:18] <Inari> and congrats
:p
L501[10:46:20] <Inari> Alissa: haha
L502[10:46:24] <Inari> Alissa: dont think
so
L503[10:46:26] <gamax92> Inari:
lewd.
L504[10:46:31] <Antheus> crappy wheat
tortilla with 5 mini sausage balls and fake egg
L505[10:46:43] <gamax92> mmmm,
sausage
L506[10:46:52] <Alissa> Inari: You implied
it. c:
L507[10:50:43] <Lizzy> what mc version is
the oc 1.6 branch for?
L508[10:50:51] <Kodos> 1.7.10 I
presume
L509[10:52:31] <gamax92> the branches are
sorta labeled master-MC1.7.10 and master-MC1.8
L510[10:52:36] <gamax92> default is
1.7.10
L511[10:53:28] <gamax92> oh, theres
"onesix"? (is also 1.7.10)
L512[10:53:32] <Antheus> I wonder what
version will be the next 1.2.5/1.4.7/1.6/1.7.10
L513[10:54:17] <Lizzy> ah, it's
1.7.10
L514[10:54:25] <Lizzy> also do i have a
jdk on athar
L515[11:07:51]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L516[11:08:06] *
Lizzy is building the 1.6 branch on Athar
L517[11:08:51] <Lizzy> well, waiting for
gradle to download all the apis first
L518[11:09:46] <Kodos> \o/
L519[11:11:16] <Lizzy> .load
L520[11:11:17] <EnderBot2> CPU: 2.84 2.85
2.77 , RAM: 15.4G/31.3G (~49.0%), SWAP: 484.3M/88.2G (~0.5%)
L521[11:11:56] <Lizzy> i think it got
stuck, so restarting it
L522[11:12:24] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Ping timeout: 194 seconds)
L523[11:13:03]
⇨ Joins: Xal
(~Xal@s0106881fa12987ab.vw.shawcable.net)
L524[11:13:04] <Lizzy> it shouldn't take
it that long to get the stuff from the maven repos unless the
remote servers are not allowing for full bandwidth out
L525[11:16:32] <Lizzy> \o/ it's
building
L526[11:16:42] <Lizzy> .load
L527[11:16:42] <EnderBot2> CPU: 4.07 3.27
2.96 , RAM: 17.6G/31.3G (~56.1%), SWAP: 484.3M/88.2G (~0.5%)
L528[11:17:04] <Lizzy> ... it failed...
wat
L529[11:17:11] <Lizzy> oh
L530[11:17:16] <Lizzy> the publish step
failed
L531[11:17:39] <Lizzy> kinda guessed that
it would
L532[11:17:56] <Kodos> Could always ask
Magi for his build
L533[11:18:22] <Lizzy> no, it built, it
just couldn't publish the maven stuff because this isn't Sangar's
server
L534[11:20:06] <Sangar> i'm back o/
L535[11:20:24] <Kodos> Puush doesn't work
on W10 =(
L536[11:20:30] <Kodos> And imgur is
broken
L537[11:20:44] <Sangar> asie, using tis3d
for sorting sounds like an interesting challenge :3
L538[11:21:25] <Lizzy> Sangar, if i build
the onesix branch using ./gradlew clean build; where does it put
the final jar file that people can stick in their mods
folders?
L539[11:21:48] <Sangar> Lizzy, build/libs,
like all mods?
L540[11:22:03] <Lizzy> Sangar, ah, k. i
haven't ever used gradle properly
L541[11:22:09] <Lizzy> yep, got it
L542[11:22:34] <Sangar> heh
L543[11:25:40] <Kodos> Man I love
Magneticraft's shelving units
L544[11:26:47] <Lizzy> :@
L545[11:27:42] *
Inari shelves Lizzy
L546[11:28:41] <gamax92> soo uhh,
accidentally cat pagemaps
L547[11:28:45] <gamax92> terminal is
frozen
L548[11:28:50] *
Lizzy presents her middle finger to nginx
L549[11:29:20] <Lizzy> wait
L550[11:30:17] <Alissa> gamax92: 'reset'
?
L551[11:31:19] <Lizzy> aha
L553[11:32:07] <Lizzy> it has the wrong
name but meh, that's Sangar's fault
L554[11:32:30] <Lizzy> brb dinner
L555[11:33:00] <Kodos> Woo, thanks
=D
L556[11:34:51] <Kodos> Right, derp, I
should probably disable the addons
L557[11:38:21] ⇦
Quits: Xal (~Xal@s0106881fa12987ab.vw.shawcable.net) (Ping timeout:
190 seconds)
L558[11:39:02] <asie> Sangar: yes it
does
L559[11:39:04] <asie> also
L560[11:39:08] <asie> remember i only have
one sorting method
L561[11:39:10] <asie> shifters
L563[11:39:32] <MichiBot> Sat Dec 05
11:16:11 CST 2015 @asiekierka: Final rendering experiment before I
go for some kind of birthday party
https://t.co/Ceudy99dXL
L564[11:39:35] <asie> tis3d will likely
benefit from this
L565[11:40:41] <Sangar> asie, hype
hype
L566[11:41:07] <Inari> i dont get waht
that even does
L567[11:42:41] <Kodos> Lol, placed a rack,
and crashed
L568[11:43:22]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L569[11:44:59]
⇨ Joins: Xal
(~Xal@S0106881fa12987ab.vw.shawcable.net)
L571[11:47:09] ***
rakiru|offline is now known as Kasen
L572[11:56:16] <Kodos> Bleh, wish I could
run my PC real quick. I want to get my mod
L573[11:57:48] <Kodos> Ah well. Wife's
ready. Time to head out for my birthday stuff :3
L574[11:58:03] <Sangar> oh, right, happy
birthday!
L575[11:58:21] <DeanIsaKitty> Kodos: Happy
birthday. You're an old fart now <.<
L576[11:58:46] <Sangar> oh, right, happy
birthday!
L577[11:58:57] <Sangar> also yay for
bloody arrow up
L578[11:59:01] <DeanIsaKitty> xD
L579[11:59:05] <DeanIsaKitty> Sangar: You
stupid
L580[11:59:14] <Sangar> what i wanted to
say: bbl
L581[11:59:15] <Sangar> :X
L582[11:59:17] <vifino> Happy birthday,
Kodos!
L583[12:00:10]
⇨ Joins: Code_Ninja
(webchat@110-2-111-208-in-addr-arpa.omnispring.net)
L584[12:00:17] <Code_Ninja> Which one to
use
L585[12:00:23] <Code_Ninja> VMWare or
VirtualBox
L586[12:00:42] <DeanIsaKitty> VirtualBox
is better when it comes to the license, isn't it?
L587[12:00:51] <vifino> Yeah.
L588[12:01:13] <vifino> But if you use
ESXi or so, which you probably won't, VMWare Workstation is a solid
choice.
L589[12:01:38] <Code_Ninja> what is
ESXi
L590[12:01:50] <vifino> Doesn't
matter.
L591[12:01:56] <Code_Ninja> I am using it
to run Win10 in the VM on a linux machine
L592[12:02:11] <Code_Ninja> Does
virtualbox allow hardware acess?
L593[12:02:24] <Code_Ninja> I have a
school application
L594[12:02:32] <Code_Ninja> that only runs
on windows 64bit
L595[12:02:41] <Code_Ninja> and uses
hardware rendering
L596[12:02:44] <Code_Ninja> #ds Max
L597[12:02:47] <Code_Ninja> *3ds
L598[12:02:55] <vifino> Both allow USB
Passthru, VMWare has PCI Passthru on linux.
L599[12:03:14] <vifino> Not sure if
virtualbox has that, but it could.
L600[12:03:15] <Code_Ninja> Well, my GFX
card is a PCI-Express
L601[12:03:15] <DeanIsaKitty> Might be
slow, but should work
L602[12:03:46] <vifino> Code_Ninja: PCI
Passthru = Host gets none of that.
L603[12:03:54] <Code_Ninja> PCI passthru
is listed as an experimental feature for linux hosts
L604[12:04:01] <vifino> So you'd need two
gpus to really use it.
L606[12:04:27] <vifino> ^
L607[12:04:39] <Code_Ninja> I *have* to
use 3ds max
L608[12:04:54] <Code_Ninja> School uses
it
L609[12:05:11] <DeanIsaKitty> 3ds stands
for 3D Studio you derp <.<
L610[12:05:57] <Code_Ninja> I know
L611[12:06:07] <Code_Ninja> I am using 3d
studio 2014
L612[12:06:14] <Code_Ninja> and there are
no linux downloads
L613[12:06:24] <DeanIsaKitty> And I told
you to try running it under wine.
L614[12:06:33] <Code_Ninja> mkay
L615[12:07:17] <Code_Ninja> I have heard
tell that windoze does not like keeping to its partition if you
partion a HDD to have half windoze and half linux
L616[12:07:55] <gamax92> ?_? wat?
L617[12:08:47] <gamax92> my drive is half
linux half windows, works just fine
L618[12:10:16] <Code_Ninja> How do you
select which partition to use on boot
L619[12:11:07] <gamax92> my grub
menu?
L620[12:11:47] <gamax92> it always boots
grub from my linux partition, which will give me the option to boot
linux or boot windows
L621[12:12:06] <gamax92> or memtest
:P
L622[12:12:41] <Izaya> 5AM. Still eating
chips and playing Minecraft. This is an unexpected turn in my
life.
L623[12:12:52] <Izaya> Was it unexpected?
Eh.
L624[12:13:15] <Code_Ninja> so
"grub" is like a mini OS that lets you pick which OS to
use
L625[12:13:29] *
Code_Ninja uses Google
L626[12:14:19] <Izaya> must finish
floor
L627[12:16:57] <Code_Ninja> now to choose
which of the 100 gazillion distros of linux
L628[12:17:18] <Izaya> install
gentoo
L629[12:17:23] *
gamax92 stabs Izaya
L630[12:17:29] *
DeanIsaKitty stabs Izaya
L631[12:17:36] *
vifino stabs Izaya
L632[12:17:59] <Code_Ninja> OK, so
according to everyone except Izaya, dont install gentoo.
L633[12:18:18] <Izaya> :3
L634[12:18:21] <gamax92> Code_Ninja: if
you don't know what you're doing you really should install
linux
L635[12:18:29] <gamax92> and it kinda
sounds like you don't know what you're doing
L636[12:18:31] <DeanIsaKitty> Given how
little you know about Linux, you probably should use a
"userfriendly" distro. Something Like Mint?
L637[12:18:45] <gamax92> I would also
recommend mint
L638[12:18:51] <Izaya> mint is nice
L639[12:18:51] <vifino> That reminds me, I
should check on my gentoo box.
L640[12:19:03] <Izaya> nonono
L641[12:19:04] <Izaya> install
L642[12:19:06] <Izaya> slackware
L643[12:19:10] *
DeanIsaKitty stabs Izaya
L644[12:19:18] <gamax92> Code_Ninja: just
ignore izaya :P
L645[12:19:31] *
vifino stabs Izaya
L646[12:19:37] <Code_Ninja> My problem is
that Windows 10 (buying was big mistake) cannot be trusted at
all.
L647[12:19:59] *
Lizzy grabs her old bass and swings it around and hits Izaya with
it
L648[12:19:59] <DeanIsaKitty> s/
10//g
L649[12:19:59] <Kibibyte>
<Code_Ninja> My problem is that Windows (buying was big
mistake) cannot be trusted at all.
L650[12:20:25] <Izaya> interesting fact
most people already know here
L651[12:20:33] <Izaya> the chinese
government has its own linux distro
L652[12:20:34] <Code_Ninja> I know you
know
L653[12:20:35] <DeanIsaKitty> What, to
ignore you?
L654[12:20:53] <Lizzy> anyway,
shower
L655[12:20:57] <Code_Ninja> That is the
reason I want Linux
L656[12:21:04] <Code_Ninja> Because I
cannot trust Windows
L657[12:21:04] <Izaya> DeanIsaKitty,
probably wise
L658[12:21:05] <DeanIsaKitty> Didn't you
want to shower half an hour ago Lizzy ?
L659[12:21:17] <Lizzy> was that when i
replied to your text?
L660[12:21:20] <Code_Ninja> The problem is
that I dont know enough to install Linux
L661[12:21:39] <DeanIsaKitty> Yes. 30 Min
ago. Twat :|
L663[12:21:53]
⇨ Joins: alfw (~alfw@not.alf.network)
L664[12:21:59] <Lizzy> so it was. sorry i
got distracted getting stargatetech.theender.net on https
L665[12:22:08] <Lizzy> i am now going to
shower though
L666[12:22:21] *
DeanIsaKitty slaps Lizzy's butt
L667[12:22:21] *
EnderBot2 laughs
L668[12:22:23] <DeanIsaKitty> hurry
:P
L669[12:22:36] <Lizzy> I will try mah
best
L670[12:23:44] <Izaya> the floor is
done
L671[12:23:46] <Izaya> I can sleep
now
L672[12:23:56] <DeanIsaKitty> Izaya: Good
night :P
L673[12:24:28] <Code_Ninja> Finding out
how to reduce the size of my Windows partition
L674[12:24:30] <Izaya> I now have a 62x62
area with a false floor
L675[12:24:48] <Code_Ninja> In retrospect,
I should not have given it the entire 1TB HDD
L677[12:25:20] <vifino> Izaya: that looks
awesome :D
L678[12:25:27] <Izaya> :D
L679[12:25:57] <DeanIsaKitty> Looks really
nice, you really like clay, don't you? :P
L680[12:26:07] <Izaya> no it generated
like that
L681[12:26:11] <Izaya> I find clay
somewhat boring
L682[12:26:11] <DeanIsaKitty> Ah ok.
L683[12:26:13] <Lizzy> Izaya: thats
floreiest
L684[12:26:14] <DeanIsaKitty> Yeah
L685[12:26:19] <Izaya> but I could always
paint it
L686[12:26:20] <Lizzy> (falls floor)
L687[12:26:24] <DeanIsaKitty> Lizzy: Go to
shower goddamn girl!
L688[12:26:26] <Lizzy> *false
L689[12:26:31] <Lizzy> I am in
showrr
L690[12:26:33] <Izaya> I've been playing
for like 18 hours straight
L691[12:26:47] <Izaya> I really have no
life any more
L692[12:26:58] <DeanIsaKitty> Izaya: If I
were you I'd use grey or dark gray burned clay. It contrasts nicely
with the dark wood.
L693[12:27:11] <Lizzy> DeanIsaKitty: I can
send proof if needed
L694[12:27:14] <DeanIsaKitty> For the
pillars that is
L695[12:27:21] <Izaya> I'll look into
using a robot to do that or something
L696[12:27:25] <DeanIsaKitty> Lizzy: pls
send nudes :P
L697[12:29:44] <DeanIsaKitty> Why do
people always actually do what I ask them for? <.<
L698[12:29:56] <gamax92> oh god.
L699[12:29:57] <Code_Ninja> -_-
L700[12:30:35] *
vifino slaps DeanIsaKitty
L701[12:30:35] *
EnderBot2 laughs
L702[12:30:36] <Code_Ninja> [-_-] [-_-]
[-_-] [-_-}
L703[12:30:45] <gamax92> the fourth is a
fake!
L704[12:30:46] *
DeanIsaKitty bitch-slaps vifino
L705[12:30:47] *
vifino likes slapping people and randomly picks DeanIsaKitty to
slap
L706[12:31:04] <gamax92> what if dean had
a slap script
L707[12:31:08] <gamax92> ooh that'd be
bad
L708[12:31:13] <Code_Ninja> the endermen
stare at DeanIsaKitty
L709[12:31:19] <DeanIsaKitty> Code_Ninja:
gtfo
L710[12:32:03] <Code_Ninja> here are more
kittens
L712[12:32:20] ⇦
Parts: Code_Ninja
(webchat@110-2-111-208-in-addr-arpa.omnispring.net)
(kittens))
L713[12:33:31]
⇨ Joins: lperkins2 (~perkins@63.227.187.208)
L714[12:35:22] <DeanIsaKitty> Wait, did
Code_Ninja just leave? Why do people always actually do what I ask
them for? <.<
L715[12:35:36] ⇦
Parts: lperkins2 (~perkins@63.227.187.208) ())
L716[12:37:04] *
Izaya finally closes Minecraft, lets out a sigh, and sticks another
screwdriver into his desk
L717[12:37:55] <DeanIsaKitty> I assume by
stick you mean slam?
L718[12:38:12] <vifino> And I assume by
slam you mean stab?
L719[12:39:54] <Izaya> stab, yes
L720[12:40:22] <Izaya> generally when you
stick something into something else you use the pointy end
L721[12:40:31] <Izaya> slam makes me think
hitting something with the side of the object
L722[12:40:38] <vifino> Yeah.
L723[12:44:00] <DeanIsaKitty> slam v. To
hit or strike with great force.
L724[12:44:15] <DeanIsaKitty>
Wordnik
L725[12:44:28] <Izaya> well I meant
stab
L726[12:44:30] <Izaya> okay?
L727[12:45:06] ⇦
Quits: Vexatos
(~Vexatos@p200300556E14A498215055C288B2877E.dip0.t-ipconnect.de)
(Ping timeout: 186 seconds)
L728[12:46:10] <DeanIsaKitty> Yeah,
sure
L729[12:47:27] <vifino> Fuck me. Wifi
drivers got worse with that new kernel.
L730[12:48:26] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Remote host closed the connection)
L731[12:48:30] <vifino> Broadcom shit gets
worse and worse.
L732[12:50:16] <Izaya> right, off to
bed
L733[12:50:18] <Izaya> o/
L734[12:50:22] <DeanIsaKitty> night
o/
L735[12:51:01] <vifino> \o
L736[12:52:28] *
Lizzy slaps vifino
L737[12:52:28] *
EnderBot2 wonders why he deserved a slap
L738[12:52:28] *
vifino slaps Lizzy and starts getting carried away
L739[12:52:29] *
EnderBot2 feeds vifino to the lions
L740[12:52:45] <vifino> :|
L741[12:52:56] *
DeanIsaKitty pets the lions
L742[12:53:17] <Lizzy> also EnderBot2
what?
L743[12:53:27] *
DeanIsaKitty slaps EnderBot2
L744[12:53:28] *
EnderBot2 grabs Ender's Katana and slices DeanIsaKitty in
half
L745[12:53:36] <Lizzy> hnn
L746[12:53:38] <Lizzy> hmm
L747[12:53:38] <DeanIsaKitty> Well, that
part works
L748[12:53:43] <Lizzy> yeah
L749[12:54:50] <Lizzy> man EnderBot2's
code is a clusterfuck
L750[12:55:29] <DeanIsaKitty> Lizzy: Yes,
I know <.<
L751[12:55:40] <Lizzy> O.o?
L752[13:05:20]
⇨ Joins: Vexatos
(~Vexatos@p200300556E14A478215055C288B2877E.dip0.t-ipconnect.de)
L753[13:05:21]
zsh sets mode: +v on Vexatos
L754[13:10:38] ⇦
Quits: EnderBot2 (enderbot2@athar.theender.net) (Quit: Ohh
Noes)
L755[13:10:42]
⇨ Joins: EnderBot2
(enderbot2@athar.theender.net)
L756[13:10:42]
zsh sets mode: +v on EnderBot2
L757[13:10:53] *
Lizzy slaps Ender
L758[13:10:53] *
EnderBot2 laughs
L759[13:10:57] *
Lizzy slaps Ender
L760[13:10:57] *
EnderBot2 chuckles
L761[13:10:59] <Lizzy> ¬_¬
L762[13:11:00] <Lizzy> s;ld ksdlsd
L763[13:11:10] <cloakable> :o
L764[13:11:30] *
Lizzy slaps EnderBot2
L765[13:11:30] *
EnderBot2 wonders why he deserved a slap
L766[13:11:52] *
DeanIsaKitty slaps Lizzy
L767[13:11:58] *
DeanIsaKitty slaps EnderBot2
L768[13:11:59] *
EnderBot2 throws a brick at DeanIsaKitty
L769[13:12:04] <Lizzy> hmm
L770[13:12:08] <Lizzy> meh
L771[13:14:38]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L772[13:15:41]
⇨ Joins: lperkins2 (~perkins@63.227.187.208)
L773[13:16:25] <lperkins2> any way to make
lua print the stack trace upside down?
L774[13:17:08] <ds84182>
debug.traceback():reverse() ( ͡ಠ͜ʖ ͡ಠ)
L775[13:17:18] <gamax92> heh.
L776[13:17:23] <lperkins2> um, won't that
give crap like
L777[13:17:25] <lperkins2> eht
L778[13:17:35] <ds84182> Yes
L779[13:17:47] <ds84182> But hey, it's
upside down!
L780[13:18:06] <lperkins2> I suppose split
it into an array, reverse it, join it, print it...
L781[13:18:07] <Vexatos> :reverse?
L782[13:18:07] <lperkins2> ick
L783[13:18:13] <gamax92> :kcabecart
kcats
L784[13:18:24] <ds84182> local t = {} for
line in debug.traceback():gmatch("[^\n]+") do
table.insert(t, 1, line) end return table.concat(line,
"\n")
L785[13:18:24] <Vexatos> Oh right, that is
a thing outside of selene
L786[13:18:25] <Vexatos> nevermind
L787[13:18:35] <Vexatos> table.reverse is
what I added >_>
L788[13:18:42] <gamax92> knuhc niam
ni
L789[13:18:50] <ds84182> s/(line/(t
L790[13:18:59] <ds84182> You know what I
mean
L791[13:20:09] <gamax92> ds84182: try to
say k cabe cart k cats
L792[13:20:34] <ds84182> ...and?
L793[13:21:16] <gamax92> be killed to
death
L794[13:21:40] <ds84182> ...ok?
L795[13:21:55] <gamax92> who are you
L796[13:21:58] <ds84182> ?
L797[13:23:59]
⇨ Joins: v^Laptop
(~ping@c-68-41-215-101.hsd1.mi.comcast.net)
L798[13:24:00]
zsh sets mode: +v on v^Laptop
L799[13:29:06]
⇨ Joins: ConcernedHobbit
(znc@god.hobbits.science)
L800[13:29:22]
⇨ Joins: Daiyousei_
(znc@dai.is.best.fairy.stary2001.co.uk)
L801[13:30:14]
⇨ Joins: Fridtjof
(~prassel@osiris.stary2001.co.uk)
L802[13:30:51]
⇨ Joins: samis (znc@osiris.stary2001.co.uk)
L803[13:31:07] ***
Cranium is now known as Cranium[Away]
L804[13:31:22]
⇨ Joins: Stary2001 (znc@osiris.stary2001.co.uk)
L805[13:33:58] ***
Daiyousei_ is now known as Daiyousei
L806[13:36:24] ***
samis is now known as CompanionCube
L807[13:47:19] ⇦
Quits: Stary2001 (znc@osiris.stary2001.co.uk) (Quit: ZNC - http://znc.in)
L808[13:47:29]
⇨ Joins: Stary2001
(~Stary2001@osiris.stary2001.co.uk)
L809[13:52:15] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Remote host closed the connection)
L810[13:58:31]
⇨ Joins: Ivoah
(~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
L811[13:58:45] ⇦
Parts: lperkins2 (~perkins@63.227.187.208) ())
L812[13:59:21] ⇦
Quits: Stary2001 (~Stary2001@osiris.stary2001.co.uk) (Quit: ZNC -
http://znc.in)
L813[13:59:32]
⇨ Joins: Stary2001
(~Stary2001@osiris.stary2001.co.uk)
L814[14:00:04] ⇦
Quits: Stary2001 (~Stary2001@osiris.stary2001.co.uk) (Remote host
closed the connection)
L815[14:00:14]
⇨ Joins: Stary2001
(~Stary2001@osiris.stary2001.co.uk)
L816[14:01:06] ⇦
Quits: Stary2001 (~Stary2001@osiris.stary2001.co.uk) (Client
Quit)
L817[14:01:14]
⇨ Joins: Stary2001
(Stary2001@osiris.stary2001.co.uk)
L818[14:01:50] ⇦
Quits: Ivoah (~Ivoah@pool-100-4-172-251.albyny.fios.verizon.net)
(Ping timeout: 194 seconds)
L819[14:02:38] ⇦
Quits: sciguyryan (~sciguyrya@109-205-170-38.dynamic.swissvpn.net)
()
L820[14:05:25] <Ekoserin> I'm trying to
install Gimp, but it insists on installing on a 100 MB partition.
Any way to fix?
L821[14:09:01] <XDjackieXD> idk. try the
portable version (windows i guess?)
L822[14:11:04] <Ekoserin> No portable
version seems to be available.
L823[14:11:44] <Ekoserin> My options are
installer, source, or snapshot.
L824[14:34:44] <Antheus> \o/
L825[14:34:51] <Antheus> Christmas parade
today
L826[14:35:15] <Antheus> I'm wearing a
christmas tree hat with lights hot glued on it :P
L827[14:37:55]
⇨ Joins: cobra
(~cobra@HSI-KBW-078-042-231-115.hsi3.kabel-badenwuerttemberg.de)
L828[14:41:46] ***
Daiyousei is now known as ShoweringFairy
L829[14:55:03]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L831[15:03:02] ⇦
Quits: primetoxinz (~primetoxi@ip68-107-226-229.hr.hr.cox.net)
(Remote host closed the connection)
L832[15:03:39] <Turtle> "This limb
could actually be more useful than a standard prosthetic limb
because of the versatility of its gripping power." Uhu, which
is why after millions of years of evolution monkies had
tentacles.
L833[15:04:00]
⇨ Joins: primetoxinz
(~primetoxi@ip68-107-226-229.hr.hr.cox.net)
L834[15:04:49] ***
ShoweringFairy is now known as Daiyousei
L835[15:26:51] <gamax92> Turtle
L836[15:29:57]
⇨ Joins: Kodos|Phone (~androirc@166.175.57.190)
L837[15:31:58] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L838[15:32:44]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L840[15:37:19]
⇨ Joins: VikeStep (~VikeStep@101.184.162.156)
L841[15:38:18] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L842[15:39:29]
⇨ Joins: MajGenRelativity
(~MajGenRel@c-73-186-66-242.hsd1.ma.comcast.net)
L843[15:39:59]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L844[15:41:54]
⇨ Joins: Nachtara
(~coob@50-83-108-134.client.mchsi.com)
L845[15:42:27] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L846[15:43:23]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L847[15:45:46] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L848[15:50:29]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L849[15:54:46] ⇦
Quits: cpup (~cpup@32.218.113.35) (Ping timeout: 206
seconds)
L850[15:55:53]
⇨ Joins: cpup (~cpup@32.218.113.35)
L851[16:04:28] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L852[16:06:39]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L853[16:15:42] <Turtle> gamax92
L854[16:16:25] <gamax92> did you really
just wait an hour to do that?
L855[16:16:38] ***
Cranium[Away] is now known as Cranium
L856[16:16:44] <Turtle> uh no, I was
trying to figure out how much rekt I'd get for moving illegal goods
in elite:dangerous
L857[16:17:02] <Turtle> spoiler: I still
have no idea, warping into a star is maybe not the best idea
L858[16:17:23] <gamax92> u wot m8
L859[16:17:31] <malcom2073> Turtle: You
see the video of the guy going full speed into a station without
power to avoid detection?
L860[16:17:38] <Turtle> No
L861[16:17:43] <malcom2073> He turns power
on at the last moment just as he enters the station, requests
docking and lands really fast
L862[16:17:49] <Turtle> Just got the game
b/c cheap sale, and, ah xD
L863[16:18:18] <malcom2073> It's fun
L864[16:18:20] *
gamax92 forgot what elite dangerous is ...
L865[16:18:31] <malcom2073> gamax92:
combat space sim
L866[16:18:39] <gamax92> right
L867[16:18:44] <Turtle> ^ pretty much,
it's the kickstarted remake of a rather old spaceship game
L868[16:19:05] <Turtle> basicly star
citizen that banked on old series nostalgia and actually came out
already
L869[16:19:08] <gamax92> does it still
really have any resemblence to it though
L870[16:20:17] <malcom2073> To the old
game?
L871[16:20:27] <malcom2073> 1980's vs
2015, so take that as you will
L872[16:20:36] <malcom2073> I hear the
gameplay is similar
L873[16:20:37] <gamax92> that doesn't
answer anything
L874[16:20:39] <gamax92> okay
L875[16:20:40] <malcom2073> specifically
the annoyances of docking
L876[16:20:44] <gamax92> XD
L877[16:20:52] <malcom2073> Intentionally
even heh
L878[16:21:03] <Turtle> Docking is
annoying, confirmed, although I haven't found any station that
doesn't use landing pads
L879[16:21:04] <Turtle> so uh, xD
L880[16:21:32] <Lizzy> most of my ship's
damage is done via landings
L881[16:21:36] ⇦
Quits: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net) (Ping
timeout: 204 seconds)
L882[16:21:45] <malcom2073> Heh,
yeah
L883[16:22:16] <Turtle> Most of my damage
goes along the way of 'Fuel scooping...' *EVERYTHING IS ON
FIRE*
L884[16:25:18] <Inari> whys docking
annoying?
L885[16:27:19] <Turtle> because in quite a
lot of other games it's selecting a dock option, in elite you have
to micromanage the docking everytime, although I've only had to
deal with pads, so, meh
L886[16:28:10] <Inari> its pretty
simple
L887[16:28:15] <Inari> just land like an
airplane
L888[16:28:35] <Turtle> On landing pads?
Lolno
L889[16:28:44] <Inari> yeah
L890[16:29:12] <Turtle> actually, how do
those 'go to system X, pick up illegal goods, return to station'
missions work
L891[16:29:18] <Turtle> does the station
just let you dock?
L892[16:29:29] <Lizzy> speaking of E:D,
i'm gonna restart to windows to play it
L893[16:29:44] <Turtle> ^_^
L894[16:30:07]
⇨ Joins: t3hero
(~t3hero@2601:202:200:fb50:49bb:592c:5c5e:d970)
L895[16:30:09] <Inari> i ended up just
flying onto the landing pad and doccking XD works pretty well after
you've done it 2-3 times
L896[16:30:42] <Turtle> yeah, yaw on the
default ship is pretty slow though so it takes me a while to turn
around
L897[16:30:57] <Inari> why turn around
O.o
L898[16:31:07] <Turtle> you need to be
aligned in a direction to dock on a pad?
L899[16:31:15] <Inari> so pitch :P
L900[16:31:27] <Turtle> err, no
L901[16:31:30] <Turtle> pitch is
up/down
L902[16:31:36] <Inari> roll
L903[16:31:37] <Inari> pitch
L904[16:31:38] <Inari> roll
L906[16:32:04] <Inari> thats like basic
flight in E:D :P
L907[16:32:32] <Inari> sadly docking got a
lot more boring once it was so simple
L908[16:36:15]
⇨ Joins: t3hero_
(~t3hero@2601:202:200:fb50:5507:f1b4:463c:c1dc)
L909[16:39:08] ⇦
Quits: t3hero (~t3hero@2601:202:200:fb50:49bb:592c:5c5e:d970) (Ping
timeout: 194 seconds)
L910[16:41:13]
⇨ Joins: t3hero__
(~t3hero@2601:202:200:fb50:449d:ad62:c758:1ce9)
L911[16:42:48]
⇨ Joins: SF-MC
(~EiraIRC@131-191-86-130.as.clicknet.org)
L912[16:43:54] ⇦
Quits: t3hero_ (~t3hero@2601:202:200:fb50:5507:f1b4:463c:c1dc)
(Ping timeout: 194 seconds)
L913[16:44:06] ⇦
Quits: SF-MC (~EiraIRC@131-191-86-130.as.clicknet.org) (Remote host
closed the connection)
L914[16:44:43]
⇨ Joins: t3hero
(~t3hero@2601:202:200:fb50:507c:3270:3e9c:86fb)
L915[16:46:30] ⇦
Quits: t3hero__ (~t3hero@2601:202:200:fb50:449d:ad62:c758:1ce9)
(Ping timeout: 194 seconds)
L916[16:48:14] <asie> back
L917[16:49:41] <gamax92> asie: you have
been defeated
L918[16:49:53] <asie> gamax92: ?
L919[16:49:57] <gamax92> r.i.p in
pieces
L921[16:50:30] <gamax92> what do you think
this is, cheer leading?!?!
L922[16:52:34] ⇦
Quits: Vexatos
(~Vexatos@p200300556E14A478215055C288B2877E.dip0.t-ipconnect.de)
(Ping timeout: 186 seconds)
L923[16:55:04] <MajGenRelativity> I'm
almost at the point
L924[16:55:06] <MajGenRelativity> The
point
L925[16:55:12] <MajGenRelativity> OF
GLORIOUSNESS
L926[16:55:20] <Lizzy> na
L927[16:55:27] <MajGenRelativity> I
am
L928[16:55:43] <MajGenRelativity> 10%
away, to be exact
L929[16:56:01] <Lizzy> E:D people, what's
your IGNs? maybe we could meet up
L930[16:56:02]
⇨ Joins: sciguyryan
(~sciguyrya@109-205-170-48.dynamic.swissvpn.net)
L931[16:57:05] <gamax92> Lizzy: lewd
L932[16:57:10] <MajGenRelativity> 2% away
from extreme glory
L933[16:57:16] <Inari> i'm kind anot
playing E:D cause i burned myself ou ton trading in beta and now
everything is incredibly boring and tedious :P
L934[16:57:16] <Lizzy> gamax92, no
L935[16:57:29]
⇨ Joins: Doty1154
(~Doty1154@2601:648:8002:ea78:59aa:791a:306f:503a)
L936[16:57:36] <gamax92> oh.
L937[16:58:25] <MajGenRelativity> oh no,
the core needs to heat up
L938[16:58:29] *
MajGenRelativity punches face
L939[16:59:17] <MajGenRelativity> and I
got to go :(
L940[16:59:22] <Inari> wat
L941[16:59:24] <CompanionCube> Lizzy, ping
wolfmitchell
L942[16:59:33] ⇦
Quits: MajGenRelativity
(~MajGenRel@c-73-186-66-242.hsd1.ma.comcast.net) (Quit: Time to go,
to adventure!)
L943[16:59:57] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L944[17:00:41] <wolfmitchell> Lizzy, CMDR
wolfmitchell
L945[17:00:43] <wolfmitchell> not on atm
though
L947[17:02:56]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L948[17:03:01]
⇨ Joins: Vexatos
(~Vexatos@p200300556E14A478215055C288B2877E.dip0.t-ipconnect.de)
L949[17:03:01]
zsh sets mode: +v on Vexatos
L950[17:03:34] <Turtle> If you care, CMDR
'SentientTurtle', still not quite sure what I'm doing in game
though :P
L951[17:05:07] ⇦
Quits: sciguyryan (~sciguyrya@109-205-170-48.dynamic.swissvpn.net)
()
L952[17:07:53] <Lizzy> added
L953[17:07:53] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L954[17:11:41]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L955[17:15:40] <Ekoserin> ~w
component
L957[17:15:58] ⇦
Quits: Doty1154 (~Doty1154@2601:648:8002:ea78:59aa:791a:306f:503a)
(Ping timeout: 194 seconds)
L958[17:16:44]
⇨ Joins: Doty1154
(~Doty1154@2601:648:8002:ea78:c565:b03e:e4b3:f4a0)
L959[17:17:04] <Lizzy> oh shit
L960[17:17:21] <Lizzy> flew too close to a
star....
L961[17:19:00] <ds84182> I hate when
people get mad and prissy over the censored stuff in the NA
XCX
L962[17:19:25] <ds84182> It censoring
questionable outfits for a 13 year old girl
L963[17:19:26] *
gamax92 sees a screenshot with BGR font rendering,
vomiting
L964[17:19:33] <ds84182> Like damn,
fucking pedofiles
L965[17:19:46] ⇦
Quits: Kubuxu (~Kubuxu@51.254.25.17) (Ping timeout: 186
seconds)
L966[17:19:58] ⇦
Quits: Doty1154 (~Doty1154@2601:648:8002:ea78:c565:b03e:e4b3:f4a0)
(Client Quit)
L967[17:20:18] ⇦
Quits: Magik6k (~Magik6k_@magik6k.net) (Ping timeout: 186
seconds)
L968[17:20:18] ⇦
Quits: marcin212 (~marcin212@51.254.25.20) (Ping timeout: 186
seconds)
L969[17:20:44]
⇨ Joins: Kubuxu (~Kubuxu@51.254.25.17)
L970[17:21:31]
⇨ Joins: marcin212 (~marcin212@51.254.25.20)
L971[17:21:57] <Lizzy> there, rebooted and
repaired
L972[17:22:58]
⇨ Joins: Magik6k (~Magik6k_@magik6k.net)
L973[17:23:28] ***
Magik6k is now known as Guest3674
L974[17:25:30] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L975[17:25:45] <Sandra> ds84182, NA
XCX?
L976[17:26:44] <ds84182> North American
Xenoblade Chronicles X
L977[17:27:28] <ds84182> If Japan got
under fire for that by everyone, but then North America comes under
fire for removing the thing that Japan went under fire for, then
why even try at this point
L978[17:28:04] <Sandra> can you link an
article or something explaining this stuff?
L979[17:28:33]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L980[17:30:04] <gamax92> seriously, why do
BGR monitors exist?
L982[17:30:47] <Sandra> ds84182, NoA
originally censored a lot, then stopped it because backlash, but
have now started again censoring things.
L983[17:30:48] <ds84182> Use an ad blocker
on that page
L984[17:31:18] <Lizzy> Turtle, what system
you in?#
L985[17:31:30] <ds84182> Sandra: But the
thing is, why the hell are there people getting mad because they
can't see an underaged character's clevage
L986[17:31:32] <Turtle> Some random midway
system
L987[17:31:48] <Turtle> dwarf stars
everywhere, fueling is a pain
L988[17:32:30] <ds84182> And look, if
Nintendo did release it with said ability, the backlash from
EVERYBODY in North America (not even the game's audience) would be
way greater than right now
L989[17:32:44] ⇦
Quits: Ivoah (~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
(Read error: Connection reset by peer)
L990[17:32:51] <ds84182> Because the
second something like that gets on Fox News, you know it's
over
L991[17:32:55] <Sandra> well according to
/that/ page it's about a boob slider. and /that/ is a problem for
censorship.
L992[17:33:26] <ds84182> Sandra: I've seen
plenty more people on reddit bitch about the removed clothes than
the boob slider
L993[17:33:26] <Sandra> outfits for a 15
year old, eh.
L994[17:33:32] <ds84182> s/15/13
L995[17:33:32] <Kibibyte> <Sandra>
outfits for a 13 year old, eh.
L996[17:33:38] <ds84182> shes not even
near legal
L997[17:33:45] <Sandra> no, she's 15 in
the NA release.
L998[17:33:58] <ds84182> Nope, shes 13,
just watched the cutscene
L999[17:34:07] <gamax92> s/13/31/
L1000[17:34:07] <Kibibyte>
<ds84182> Nope, shes 31, just watched the cutscene
L1001[17:34:16] <Sandra> eh, not that
that's an issue anyway.
L1002[17:34:23] <gamax92> Geez Sandra
...
L1003[17:34:28] <ds84182> gamax92: The
streamer guestimated 31 :P
L1004[17:34:31] <Sandra> look. the
character wears whatever the character wears.
L1005[17:35:05] <ds84182> I guess I shall
make a game that gives you Boku no Pico levels of character
clothing
L1006[17:35:14] <ds84182> And the main
character is only 5
L1007[17:35:16] <Sandra> she's 15 in the
west.
L1008[17:35:18] <Inari> ds84182: 14 is
legal here
L1009[17:35:20] <Inari> so pretty
near
L1010[17:35:31] <ds84182> Inari: ...
thats nasty
L1011[17:35:34] <Inari> nah
L1012[17:35:37] <gamax92> yah
L1013[17:35:47] <Inari> you're just some
prude 1100s perosn
L1014[17:35:49] <Lizzy> i need to upgrade
my FSD
L1015[17:35:51]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1016[17:36:16] <ds84182> I agree with
the age of 18 because it aligns with getting out of high
school
L1017[17:36:29] <Inari> also the heck has
chest size to do with being legal now
L1018[17:36:31] <ds84182> else, these
people would be having happy fun time in Middle School
L1019[17:36:53] <Inari> "sorry we'll
hav eto arrest you becasue your chest size is too big to not be
legal yet" Kappa
L1020[17:36:58] <ds84182> Inari: We are
talking about the removed outfits for a 13 year old character
L1021[17:36:59] <gamax92> eto
L1022[17:37:17] <ds84182> Chest size was
something else removed from your own character creation
L1023[17:37:34] <Inari> ds84182: so we're
not letting 13 year old girls wear what they want now?
L1024[17:37:34] <Inari> gj
L1025[17:37:46]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1026[17:37:47] <Sandra> exactly.
L1027[17:37:50] <ds84182> Inari:
actually, they don't chose what to wear
L1028[17:38:10] <Sandra> are you
SURE?
L1029[17:38:11] <ds84182> The player can
make them wear whatever, which is why it came under fire in the
first place
L1030[17:38:13]
⇨ Joins: Ivo
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1031[17:38:27] <ds84182> You can go
change the armor for all of your party members in the game
L1032[17:38:30] <Inari> for the point of
her character she does, unless you do a 4th wall break and have her
explicitly proclaim that she doesnt want that and is forced
to
L1033[17:38:43] ***
Ivo is now known as Guest95158
L1034[17:38:49] <Inari> at that point you
can argue that the player is a shitlord for sending a 13 year odl
girl into battle against her will, cause the palyer controls
her
L1035[17:39:03] <ds84182> Inari: But
thats still something that is socially different in the Americas
than in Japan
L1036[17:39:11] <Turtle> hmm, if fuel
cansiters weren't just trade goods, that'd be great .-.
L1037[17:39:21] <Inari> oh yeah, i
forgot
L1038[17:39:22] <ds84182> So, socially,
it's distasteful and fully illegal in real life
L1039[17:39:25] <Sandra> also 15 in the
US, remember that.
L1040[17:39:28] <Inari> america has no
issue iwth gore
L1041[17:39:29] <Inari> sorry
L1042[17:39:43] <gamax92> How dare you
not capitalize America
L1043[17:39:48] <gamax92> (murican
rage)
L1044[17:40:02] <ds84182> Inari: And
also, for the record, this is not some tumblr bullshit that someone
was bitching about, thank you very much
L1045[17:40:07] <Sandra> ah yes, america,
where gore? who cares. A SINGLE SEXUAL THING? RAISE THE
RATINGS.
L1046[17:40:19] <Inari> ds84182: well the
big media is essentially tumblr
L1047[17:40:42] <Sandra> Inari, no... not
really.
L1048[17:40:43] <ds84182> Inari: which is
exactly why NA removed it
L1049[17:41:03] <Inari> ds84182: which is
waht i find bs :P
L1050[17:41:05] <ds84182> People like to
rant about shit from an feelings point of view, not logic
L1051[17:41:37] <Inari> wonder if there
had bene an issue if it was a 13yr old guy :p
L1052[17:41:37] <ds84182> So, what would
your parent say to another parent if they saw you dress up a 13
year old girl in a swimsuit when you are no where near water
L1053[17:42:00] <gamax92> Are you guys
going to the beach?
L1054[17:42:10] <ds84182> Parent A would
say to Parent B: These new video games are giving pedofiles a
chance to live out their fantisizes and shit
L1055[17:42:32] <Inari> so?
L1056[17:42:34] <ds84182> Then, ofc,
since apparently parents have more power than other adults, they
would get games like those banned
L1057[17:42:37] <ds84182> "for the
children"
L1058[17:42:39] <Inari> video game are
made to live out fantasies
L1059[17:42:42] <Inari> thats like their
essential being
L1060[17:42:45] <Inari> point of
existence
L1061[17:42:48] <gamax92> yah
L1062[17:43:12] <ds84182> Goodness
gracious, I want someone to release a game that sexualizes a child
now
L1063[17:43:18] <ds84182> Just for the
shits and giggles
L1064[17:43:19] <Sandra> i'd probably be
called a "pedophile apologist" for saying this, but I
don't see the problem with exposing children to this.
L1065[17:43:32] <Sandra> ds84182, have
you ever looked at japanese games?
L1066[17:43:40] <Inari> i dont even see a
problem with pedophiles as long as they dont abuse anyone :P
L1067[17:43:51] <ds84182> Sandra: It's
not the exposing children, its the fuel to the fire that will cause
games with anything questionable to get banned
L1068[17:43:53] ***
Daiyousei is now known as SleepingFairy
L1069[17:44:07] <ds84182> And have not
just backlash from gamers, but backlash from non-gamers
L1070[17:44:13] <Sandra> well, yeah,
exactly, Inari.
L1071[17:44:34] <Inari> to me its
like
L1072[17:45:19] <Inari> "I like the
idea of dancing in the rain and sometimes think about it" -
"What, you like the idea of dancing in the rain? You sick
fuck, ban that stuff"
L1073[17:46:03] <Sandra> yeah.
L1074[17:46:06] <Sandra> exactly.
L1075[17:46:12]
⇨ Joins: Xakorik_ (~Xakorik@173.80.89.182)
L1076[17:46:16] <Sandra> there's nothing
wrong with having fetishes.
L1077[17:46:20] <Inari> but eh, i have
risque opinions anyway :P
L1078[17:46:45] <Inari> including that,
that a child can consent (not every child of course, but some
individuals that have reasonably been informed and are intelligent
enough)
L1079[17:47:03] <Sandra> yeah.
L1080[17:47:23] <Inari> for some time i
even thought a pedophilic relationship could work neatly, but thats
even more complex so im less sure on that :P since theres the issue
that the pedophile might not be interested in the child anymore
once it gets too old
L1081[17:47:27] <Inari> then child feels
betrayed/abused
L1082[17:47:30] <Inari> so that might not
realyl work
L1083[17:47:46] <Sandra> I have
pedophilic tendencies sometimes myself.
L1084[17:47:52] <Inari> unless you could
establish the child knowing that, but thats a bit of a jump
still
L1085[17:48:06]
⇦ Quits: Fridtjof (~prassel@osiris.stary2001.co.uk) (Quit:
ZNC - http://znc.in)
L1086[17:48:11]
⇨ Joins: Fridtjof (prassel@fridtjof.xyz)
L1087[17:48:11] <Turtle> I'll just say
this, children are really really dumb, relations won't work. at
all.
L1088[17:48:15] <gamax92> Inari: would
you know anything about fast software textured triangle
rasterization
L1089[17:48:21]
⇦ Quits: Xakorik (~Xakorik@173.80.89.182) (Ping timeout: 190
seconds)
L1090[17:48:30] <Inari> gamax92: i dont
think so?
L1091[17:48:34] <ds84182> I acknowledge
and accept the existence of multiple things, but something like
this, that being accepted just makes me sick inside
L1092[17:48:37] <gamax92> Turtle: would
you know anything about fast software textured triangle
rasterization
L1093[17:48:48] <Turtle> No but I bet
google does
L1094[17:48:51] <Inari> Turtle: thats up
to the individual to be judged
L1095[17:48:53] <gamax92> Google: would
you know anything about fast software textured triangle
rasterization
L1096[17:48:59] <Inari> i just dislike
the blanket ban :P
L1097[17:49:17] <Inari> esp. since i
value personal freedom over being restricted because the mass of
your class is silly
L1098[17:50:18]
⇦ Parts: ds84182 (ds84182@eos.pc-logix.com) (Aaaaand I'm
going to go throw up. Thanks, you sick fucks.))
L1099[17:50:24] <Inari> lol
L1100[17:50:34] <Inari> if you hav eto
throw up over some normal talk you kind of have an issue
L1101[17:50:39] <gamax92> ^
L1102[17:51:21] <Inari> i mean
L1103[17:51:26] <Lizzy> .-. fuck. landed
in a system with just a star and not enough fuel to jump to the
next place
L1104[17:51:27] <Inari> we didnt even
have any graphic descriptions or anything
L1105[17:52:14] <Turtle> Lizzy, I ran out
of fuel, found some lootable fuel cansiters, aparently they're for
trade only T.T
L1106[17:52:15] <Inari> Sandra: i have a
bit of the opposite of that i guess :P but i dont htink theres any
good word for it
L1107[17:52:32] <Lizzy> .-.
L1108[17:52:51] <Sandra> huh?
L1109[17:53:44] <Sandra> I mean, if I was
to talk about this stuff on tumblr I'd immediately get called out
and hated for it.
L1110[17:54:28] <Turtle> s/this
stuff/anything/
L1111[17:54:28] <Kibibyte> <Sandra>
I mean, if I was to talk about anything on tumblr I'd immediately
get called out and hated for it.
L1112[17:54:31] <Inari> also technically
13 might not even be pedophilia, but eh :P
L1113[17:54:49] <Inari> Sandra: well i
was assuming pedophilic tendencies meant that you sometimes feel
attraction to young people
L1114[17:54:49] <gamax92> modprobe
nbd
L1115[17:54:58] <Turtle> Inari: the
defense 'it's not technically illegal' is only for jerks and
assholes
L1116[17:54:58] <gamax92> qemu-nbd -c
/dev/nbd0 Inari.vhd
L1117[17:55:01] <Sandra> Inari, yes I do
aye.
L1118[17:55:07] <gamax92> kpartx -av
/dev/nbd0
L1119[17:55:11] <Inari> Turtle: hm?
L1120[17:56:08] <Inari> Sandra: exactly,
and the opposite would be to have tendencies of wanting to be a
young person in such a relationship ;D thats kind of harder to
achieve though haha, maybe once theres VR
L1121[17:56:13] <Mimiru> Inari, post
pubescent attraction would be Ephebophilia :p
L1122[17:56:16] <Lizzy> well shit
L1123[17:56:20] <Inari> Mimiru:
yeah
L1124[17:56:35] <Lizzy> fell out of super
cruise and have no energy to get back into it
L1125[17:56:43] <Turtle> rip
L1126[17:56:44] <Inari> Mimiru: that was
my point, but maybe Turtle misunderstood
L1127[17:57:00] <Turtle> no, my point was
just about the defense itself
L1128[17:57:02] <Sandra> well I learned
that the age of consent in this country is only 16.
L1129[17:57:19] <Inari> in this its 14~16
\o/
L1130[17:57:23] <Mimiru> Though
Ephebophilia is often lumped into Pedophilla...
L1131[17:57:32] <Inari> Turtle: what
defense?
L1132[17:57:44] <Sandra> also, Inari,
pedophilia is sexual relationships specifically.
L1133[17:57:51] <Turtle>
'(00:54:29)<Inari>also technically 13 might not even be
pedophilia, but eh :P' , i.e. it's technically still legal
L1134[17:58:06] <Inari> Turtle: i was
just pointing out that technically its the wrong term used
here
L1135[17:58:07] <Sandra> I'm sure a
romantic relationship is not pedophilia.
L1136[17:58:14] <Inari> Sandra: yeah, im
inclding those
L1137[17:58:15] <Turtle> oh, fair enough
then
L1138[17:58:34] <Inari> Turtle:
pedophilia itself cant be illegal, because non-actions cant
be
L1139[17:59:32] <Inari> though im sure if
the US made non-actions illegal, they could fill upt he prisons a
bit more and get more money
L1140[17:59:34] *
Inari pokes trump
L1141[18:01:12] <Lizzy> what
L1142[18:01:21] <Lizzy> managed to find
some fuel from somewhere
L1143[18:01:29] <Lizzy> got back into
supercruise
L1144[18:01:49] <Turtle> lol
L1145[18:01:50] <Lizzy> not enough to
frame shift but i can head towards the nerest system
L1146[18:02:45] <Inari> Sandra: i think
for me that interest is purely sexual
L1147[18:02:49] <Inari> but anyway
L1148[18:03:13] <Sandra> well, yeah,
that's my tendencies as well.
L1149[18:04:39]
⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L1150[18:04:50] <Lizzy> casually going
between different star systems in super cruise at 865c
L1151[18:05:15] <Lizzy> what happens if i
log out in space?
L1152[18:05:33] <Turtle> not much I
think
L1153[18:05:36] <Turtle> you just float
in space
L1154[18:06:43] <Turtle> ... wat
L1155[18:07:32] <Turtle> ... I don't
think I want to know, but, clearing out some crap in runescape,
some quite small shorts, aparently the highest open buy order was
for 25x the regular price
L1156[18:09:26] <Lizzy> :/ main tank is
empty
L1157[18:16:27]
⇦ Quits: Guest95158
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1158[18:19:01]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1159[18:19:42] <Lizzy> and there goes
the reserve tank
L1160[18:19:59] <gamax92> beep beep beep
make way for Lizzy emergency landing
L1161[18:20:16] <Lizzy> gamax92, i would
if i could but i'm in the middle of fucking nowhere
L1162[18:21:05] <Lizzy> oxygen will be
depleted in 1:40
L1163[18:21:27] <Turtle> Take a
screenshot of your current location and log out if you don't wish
to SD
L1164[18:21:49] <Lizzy> will that help me
at all when i next log in?
L1165[18:22:18] <Turtle> You can poke
wolfmitchell, or me when I get out my out-of-fuel issue to bring
fuel, there's also a service iirc
L1166[18:22:43] <Lizzy> shit, just ran
out of oxygen
L1167[18:22:45] <Lizzy> ¬_¬
L1168[18:23:00] <Lizzy> oh
L1169[18:23:04] <Lizzy> oh well*
L1170[18:23:14] <Lizzy> didn't have much
on that ship that wasn't stock
L1172[18:25:44]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1173[18:27:27]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1174[18:29:17] <Inari> wonder if any
fuel rat ever was victim of an ambush (i.e. someone setting of a
signal to get someone there and kill them)
L1175[18:30:37] <Mimiru> If you tried
something like that in EVE, you'd just be ded.
L1176[18:30:41] <Mimiru> no
questions
L1177[18:32:39]
⇦ Quits: cobra
(~cobra@HSI-KBW-078-042-231-115.hsi3.kabel-badenwuerttemberg.de)
(Quit: cobra)
L1178[18:34:42] <Turtle> Inari,
uhhh
L1179[18:34:57] <Turtle> Probably the
moment I poke the EVE people I hang around with about E:D
L1180[18:35:22] <gamax92> what is
EVE
L1181[18:35:25] <Turtle> That said, who
knows, they're not total jerks either
L1182[18:35:40] <Mimiru> EVE Online Space
MMO huge ships, assholes... spreadseets in space
L1183[18:36:10] <gamax92> Where you're
going, you need Windows, or you'd run out of oxygen and die
L1184[18:38:43] <Inari> Turtle: seems it
has happene dbeforeb ut is rare
L1185[18:39:09] <Turtle> yep, the E:D
subreddit threw a complete fit when a bunch of EVE players flew
around in E:D and you can guess what happened.
L1186[18:39:32] <Turtle> (On the EVE
subreddit everyone was laughing their asses off at said fit at the
time)
L1187[18:45:07]
⇦ Quits: Vexatos
(~Vexatos@p200300556E14A478215055C288B2877E.dip0.t-ipconnect.de)
(Quit: I guess I have to go now. Bye ✔)
L1188[18:51:18]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1189[18:52:45]
⇦ Quits: Kubuxu (~Kubuxu@51.254.25.17) (Quit: WeeChat
1.3)
L1190[18:52:51]
⇦ Quits: Guest3674 (~Magik6k_@magik6k.net) (Quit:
Bye!)
L1191[18:53:06]
⇦ Quits: marcin212 (~marcin212@51.254.25.20) (Quit: WeeChat
1.3)
L1192[18:54:12]
⇨ Joins: tim4242
(webchat@dslb-178-001-137-255.178.001.pools.vodafone-ip.de)
L1193[18:54:53]
⇨ Joins: Kubuxu (~Kubuxu@51.254.25.17)
L1194[18:55:15]
⇨ Joins: marcin212 (~marcin212@51.254.25.20)
L1195[18:55:32]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1196[18:57:00]
⇨ Joins: Magik6k (~Magik6k_@magik6k.net)
L1197[18:57:30] ***
Magik6k is now known as Guest45735
L1198[19:09:09]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1199[19:10:51]
⇦ Quits: Guest45735 (~Magik6k_@magik6k.net) (Quit:
Bye!)
L1200[19:12:03]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1201[19:13:19]
⇨ Joins: Magik6k (~Magik6k_@magik6k.net)
L1202[19:13:38]
⇦ Quits: Nachtara (~coob@50-83-108-134.client.mchsi.com)
(Read error: Connection reset by peer)
L1203[19:13:49] ***
Magik6k is now known as Guest68514
L1204[19:32:23]
⇦ Quits: tim4242
(webchat@dslb-178-001-137-255.178.001.pools.vodafone-ip.de) (Quit:
Web client closed)
L1205[19:32:35]
⇦ Quits: Turtle (~SentientT@82-171-92-73.ip.telfort.nl)
(Quit: Nettalk6 - www.ntalk.de)
L1206[19:33:21]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Ping timeout:
190 seconds)
L1207[19:36:18]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1208[19:36:42]
⇦ Quits: Xal (~Xal@S0106881fa12987ab.vw.shawcable.net) (Ping
timeout: 195 seconds)
L1209[19:40:16] <gamax92> Windows Update,
checking for updates since 1684
L1210[19:42:28] <Ivoah> gamax92: I've had
windows update take 3 straight days (72 hours) to "check for
updates"
L1211[19:44:45] <gamax92> it's sad too,
even if I did a full system upgrade on linux which usually does a
ton of packages, still wouldn't take that long
L1212[19:46:04] <CompanionCube> gamax92,
wouldn't it be Jan 1 1900
L1213[19:46:15] <CompanionCube> since I
don't think windows's clock goes back to 1684
L1214[19:46:33] <gamax92> why that
date.
L1215[19:46:35] <Ekoserin> ~w
network
L1217[19:47:39]
⇨ Joins: ping
(~pixel@c-68-41-215-101.hsd1.mi.comcast.net)
L1218[19:47:40]
zsh sets mode: +v on ping
L1219[19:49:22] <Inari> i need to figure
out whats lagging my clipboard
L1220[19:49:23] <Inari> <.<
L1221[20:01:45]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1222[20:02:05]
⇨ Joins: Nachtara
(~coob@50-83-108-134.client.mchsi.com)
L1223[20:03:34] <gamax92> "preparing
to configure windows" wtf you didn't even ever finish checking
for updates
L1224[20:04:44] <Izaya> Server directly:
352ms. Server through compressed SSH tunnel: 350ms
L1225[20:06:26]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1226[20:07:23] ***
alekso56 is now known as alekso56_off
L1227[20:09:15] <CompanionCube> Izaya,
how are you
L1228[20:09:30] <Izaya> pretty good,
you?
L1229[20:10:38] <CompanionCube>
fine
L1230[20:10:50] <CompanionCube> just
tried the alpha desktop version of cloud9
L1231[20:11:15] <CompanionCube>
unfortunately it's a node-webkit app, but they do a good job with
the UI.
L1232[20:11:29] <Izaya> why not
vim?
L1233[20:11:30] <Izaya> :3
L1234[20:11:41] <CompanionCube> Izaya, I
currently use hacked-together gvim
L1235[20:11:56] <CompanionCube> with the
assistance of cua-mode to provide friendlier shortcuts
L1236[20:11:58] *
Izaya was just doing the usual thing
L1237[20:12:25] *
CompanionCube has it configured so he doesn't need to use the weird
keybinds
L1238[20:12:37] <Inari> gamax92: thats
what you thought
L1239[20:12:44] <Izaya> weird
keybinds?
L1240[20:12:51] <CompanionCube> yes
L1241[20:13:11] <Izaya> like what?
L1242[20:13:29] <Izaya> also can has
screenshots of this cloud 9? all I'm getting from google images is
the freaking logo
L1244[20:14:54] <CompanionCube> more
minimal themes are an option
L1245[20:15:06] <Izaya> interesting
L1246[20:15:22] <Izaya> why are they
using javashit to blink an LED?
L1247[20:15:24] <CompanionCube> Izaya,
there's a hosted webapp at c9.io
L1248[20:15:32] <CompanionCube> as for
that
L1249[20:15:38] <CompanionCube> I would
not know
L1250[20:15:59] <CompanionCube> it's in
the demo directory so it's likely not actually used
L1251[20:16:23] <Izaya> I must be weird,
if I used this I'd have a single terminal with tmux
L1252[20:16:35] <Izaya> none of this
other fluff
L1253[20:16:36] <CompanionCube> it
actually uses tmux behind the scenese
L1254[20:16:48] <Izaya> okay the image
editor I might use
L1255[20:16:55] <Izaya> though my
preference is ImageMagick
L1256[20:17:10] <CompanionCube> would you
use the SSH workspace functionality
L1257[20:17:23] <CompanionCube> (which
unfortunately requires a paid plan)
L1258[20:17:36] <CompanionCube> you can
also install it on your own server iirc
L1259[20:17:48] <Izaya> the 'install on
own server' thing could be cool
L1260[20:18:17] <CompanionCube> it
involves running their node app on your box though
L1261[20:18:29] <Izaya> well if I did
install node
L1262[20:18:36] <Izaya> I could use all
the other javashit programs people write too
L1263[20:18:52] <CompanionCube> both the
server and the client are written in JS
L1264[20:18:57] <Izaya> without feeling
like I just wasted a few hundred megs of disk space to install the
JS environment
L1265[20:19:13] <Izaya> can I JIT-compile
Javashit so it isn't so heavy?
L1266[20:19:32] <CompanionCube> define
'JIT-compile'
L1267[20:19:36] <CompanionCube> do you
mean saving bytecode to disk
L1268[20:19:57] <Izaya> well really, I
don't care whether it's JIT-compiled, I just want it to not use so
much CPU
L1269[20:20:15] <CompanionCube> iirc node
uses v8 for JS
L1270[20:20:22] <Izaya> and?
L1271[20:20:30] <Izaya> poorly written
javashit can still max a core
L1272[20:20:36]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1273[20:21:41] <Izaya> for what I'd use
it for, I'd probably be better off installing one of those web
terminal things
L1274[20:21:56] <Izaya> like all I use is
tmux and vim anyway
L1275[20:22:16] <CompanionCube>
shellinabox might be useful for that
L1276[20:22:46]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1277[20:31:28] <CompanionCube>
grrr.
L1278[20:31:35] <Izaya> ?
L1279[20:31:36] <CompanionCube> OEN's
fraud detector is very obviously broken.
L1280[20:31:51] <CompanionCube> '
L1281[20:31:52] <CompanionCube> Proxy/VPN
Detected.
L1282[20:31:52] <CompanionCube> It
appears you're a Proxy / VPN / bad IP, please contact your host for
more information '
L1283[20:32:01] <CompanionCube> Support
ticket has been filed :D
L1284[20:32:21] <Izaya> ._.
L1285[20:39:08]
⇨ Joins: Doty1154
(~Doty1154@2601:648:8002:ea78:c565:b03e:e4b3:f4a0)
L1286[20:40:25]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1287[20:40:50] <CompanionCube> Izaya,
Fastest answer *ever*
L1288[20:40:58] <CompanionCube> and it
also says we use a custom fraud module now instead of maxmind that
was written and developed by cubedata oenet's partner
themselves
L1289[20:40:58] <CompanionCube> and it
uses fraudrecord and a proxy/vpn/bad ip detection api to detect
fraud accounts
L1290[20:40:58] <CompanionCube> so if you
was marked by the fraud module we cannot accept you as you was
marked fraud for a reason which means to us high risk.
L1291[20:40:59] <CompanionCube> and by
the way it wasn't the api that caught you it was fraudrecord that I
will review the report now.
L1292[20:42:51] <CompanionCube> I miiight
need to go punch someone who previously had this IP in the
past.
L1293[20:43:12] <Izaya> heh
L1294[20:43:38] <Izaya> only might?
L1295[20:43:55] <CompanionCube> nope it
was the api that caught you but the decision to not accept you
based on high risk according to you getting caught by our fraud
module still stands.
L1296[20:43:55] <CompanionCube>
Regards,
L1297[20:43:55] <CompanionCube> CubeData
Admin/Security Team
L1298[20:43:59] <CompanionCube> and fuck
you too
L1299[20:45:49]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1300[20:46:05] <CompanionCube> Izaya,
^
L1301[20:47:38] <Izaya> I love the way
the message is all in lowercase and non-punctuated, but the last
part is obviously added automatically
L1302[20:48:09] <CompanionCube> and it
also says we use a custom fraud module now instead of maxmind that
was written and developed by cubedata oenet's partner
themselves
L1303[20:48:16] <CompanionCube> does
anyone else smell 'magic black box'
L1304[20:49:12] <Mimiru> CompanionCube,
who the hell even is this?
L1305[20:49:21] <CompanionCube> Mimiru,
some random VPS provider
L1306[20:49:58] <CompanionCube> *free VPS
provider
L1307[20:50:56] ***
Kasen is now known as rakiru|offline
L1308[20:51:18] <CompanionCube> and I
think my account has just been nuked
L1309[20:51:19] <CompanionCube>
Bastards.
L1310[20:52:19] <CompanionCube> The irony
of this
L1311[20:52:27] <CompanionCube> is that I
was previously using their services not long ago
L1312[20:52:39] <CompanionCube> the only
reason I re-ordered was because they moved to a new billing
platform
L1313[20:53:32] <CompanionCube> Izaya,
^
L1314[20:53:40] <Izaya> great business
stuff
L1315[20:53:53] <CompanionCube>
indeed
L1316[20:53:59] <CompanionCube> they've
turned me off their sponsor now
L1317[20:54:04] <CompanionCube> no
buisness for them
L1318[20:55:25] <CompanionCube> 'Our
fraud detection system is also more accurate, so less users will be
facing the "fraud" error as experienced in
HostBill.'
L1319[20:55:29] <CompanionCube> oh the
irony
L1320[20:57:51] <CompanionCube> Izaya,
marking all of their recent email as spam felt good
L1322[20:58:24] ***
rakiru|offline is now known as Kasen
L1323[20:58:26] <Izaya> hah
L1324[20:58:44]
⇨ Joins: Uni
(~Uni@p5DEC6D64.dip0.t-ipconnect.de)
L1325[20:59:30] <CompanionCube> it's a
shame all of the freevps services
L1326[20:59:32] <CompanionCube> are
scams
L1327[21:00:02] <Izaya> well if something
is fre
L1328[21:00:04] <Izaya> free*
L1329[21:00:09] <Izaya> you are the
product, after all
L1330[21:00:48]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1331[21:01:06]
⇦ Quits: Inari (~Uni@p5DEC6315.dip0.t-ipconnect.de) (Ping
timeout: 186 seconds)
L1332[21:01:11] <CompanionCube> vpsbit
appear not to be a scam
L1333[21:01:15] <CompanionCube> but are
in stock approximately never
L1334[21:04:31]
⇨ Joins: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
L1335[21:04:32]
zsh sets mode: +v on Kodos
L1336[21:04:42]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1337[21:05:17]
⇨ Joins: Xal
(~Xal@S0106881fa12987ab.vw.shawcable.net)
L1338[21:08:56] <Kodos> I love my mod so
much ^.^
L1339[21:21:13] ***
Kasen is now known as rakiru|offline
L1340[21:30:09] ***
rakiru|offline is now known as Kasen
L1341[21:31:16]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Ping timeout:
190 seconds)
L1342[21:33:22]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1344[21:45:04]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1345[21:45:09]
⇦ Quits: Jezza (~Jezza@185.44.151.107) (Read error:
Connection reset by peer)
L1346[21:46:00] <Xal> cool stuff
Kodos
L1347[21:46:10] <Xal> some kind of
warehouse mod?
L1348[21:47:49] <Kodos> Those are
Shelving Units from Magneticraft
L1350[21:51:39]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1351[21:55:45]
⇦ Quits: Nachtara (~coob@50-83-108-134.client.mchsi.com)
(Read error: Connection reset by peer)
L1352[22:00:01]
⇦ Quits: v^Laptop (~ping@c-68-41-215-101.hsd1.mi.comcast.net)
(Ping timeout: 190 seconds)
L1354[22:02:36]
⇦ Quits: Doty1154
(~Doty1154@2601:648:8002:ea78:c565:b03e:e4b3:f4a0) (Quit:
Leaving)
L1355[22:03:54] <Kodos> Needs more
catwalks mod
L1356[22:04:15] <Izaya> eh
L1357[22:04:29] <Izaya> I can replace
these with EnderIO conduits at a later date
L1358[22:05:50]
⇨ Joins: dangranos__ (~dangranos@178.186.33.116)
L1359[22:08:12]
⇨ Joins: pong
(~pixel@c-68-41-215-101.hsd1.mi.comcast.net)
L1360[22:10:12]
⇦ Quits: ping (~pixel@c-68-41-215-101.hsd1.mi.comcast.net)
(Ping timeout: 194 seconds)
L1361[22:19:58]
⇦ Quits: Lathanael|Away
(~Lathanael@p5496176F.dip0.t-ipconnect.de) (Ping timeout: 206
seconds)
L1362[22:27:30]
⇦ Quits: Xal (~Xal@S0106881fa12987ab.vw.shawcable.net) (Ping
timeout: 186 seconds)
L1363[22:27:44] <sugoi> what's the lowest
version of lua cpu in oc i can safely assume?
L1364[22:27:50] <sugoi> if i write code
that depends on 5.2 - is that okay?
L1365[22:27:58] <dangranos__> yup
L1366[22:28:02] <Mimiru> 5.2 is still the
default
L1367[22:28:17] <gamax92> 5.3 shouldn't
ever be the default
L1368[22:28:29] <sugoi> not aiming for
5.3, but why?
L1369[22:30:01]
⇨ Joins: Lathanael|Away
(~Lathanael@p54961953.dip0.t-ipconnect.de)
L1370[22:30:20] <sugoi> #lua 1
L1371[22:30:20] <|0xDEADBEEF|> >
1
L1372[22:31:04] <sugoi> #lua
t={};setmetatable(t,{__len=function(_)return 123;end});return
#t
L1373[22:31:04] <|0xDEADBEEF|> >
123
L1374[22:31:13] <sugoi> that's cool ^ :)
i like lua
L1375[22:32:58] <gamax92> sugoi: om nom
nom fixed point numbers
L1376[22:36:01]
⇨ Joins: Xal
(~Xal@S0106881fa12987ab.vw.shawcable.net)
L1377[22:38:30]
⇨ Joins: Doty1154
(~Doty1154@2601:648:8002:ea78:313b:4592:8c06:9ff)
L1378[22:40:45]
⇦ Quits: Xal (~Xal@S0106881fa12987ab.vw.shawcable.net) (Ping
timeout: 206 seconds)
L1379[22:57:27]
⇦ Quits: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net) (Quit: Web
client closed)
L1380[23:05:14]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1381[23:07:37] *
gamax92 pokes a Temia
L1382[23:08:16] <dangranos__>
"a" Temia?
L1383[23:08:19] <Alissa> yes
L1384[23:08:24] <Alissa> there could be
multiple wild Temias
L1385[23:08:26] <gamax92> shhh
>_>
L1386[23:08:28]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1387[23:08:34] <Alissa> however, there's
a local, more domestic one.
L1388[23:20:20]
⇦ Quits: dangranos__ (~dangranos@178.186.33.116) (Read error:
Connection reset by peer)
L1389[23:20:35] <gamax92> I guess Temia
isn't here anyway...
L1390[23:21:31]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Read error:
Connection reset by peer)
L1391[23:23:22]
⇨ Joins: Xal
(~Xal@s0106881fa12987ab.vw.shawcable.net)
L1392[23:27:33]
⇨ Joins: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net)
L1393[23:34:45]
⇦ Quits: Ivoah
(~Ivoah@p-68-237-136-19.dsl1.rtr.chat.fpma.frpt.net) (Remote host
closed the connection)
L1394[23:38:58] <Antheus> Her Story
10/10
L1395[23:39:17] <Antheus> Great game,
kinda like Gone Home
L1396[23:40:41] *
Temia curls up on Gamax.
L1397[23:40:44] *
Temia zzzz.
L1398[23:42:16] *
Antheus shoots gamax92 with a burrito
L1399[23:42:45] ***
Antheus is now known as Antheus|Sleep