<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:00:33] <Vampyre> you don't need to
emulate io, even if the archive is already in memory
L2[00:01:13]
<coderboy14> Reason I was emulating it was
to
L3[00:01:29] <Vampyre> in case the archive
is in memory, just keep an index to the buffer and calculate the
substring to move to the new table
L4[00:01:46] <Vampyre> the seeks are just
then index + 1
L5[00:03:13]
<coderboy14> wrap the 'io.openCode Block
pastebined
https://paste.pc-logix.com/wacebujafuio` method
isn't for wrapping the handle of the source file (the one that
actually exists). It's for opening and "writing" the
output files - the ones that are going to be stored on the object
list.
L6[00:03:13]
<coderboy14> Unless I'm horribly
misunderstanding something, lol
L7[00:05:02] <Vampyre> yah, but that is only
these lines:
L8[00:05:02] <Vampyre> local hand =
io.open(dent.name, "w")
L9[00:05:03] <Vampyre>
hand:write(file:read(dent.filesize))
L10[00:05:03] <Vampyre> hand:close()
L11[00:05:16] <Vampyre> you wrote a whole
wrapper for those 3 lines
L12[00:05:49] <Vampyre> but basically, that
is something like my_result_table[dent.name] =
file:read(dent.filesize)
L13[00:06:02] <Vampyre> that's all
(excluding the directory make things)
L14[00:06:41]
<coderboy14> I had tried something
different there before, it didn't work, and so I did this to try
and keep the codes looking functionally similar, to try and see
where I was screwing up, lol. Directories are stored exactly the
same as files, lol. I'll try changing it back to something like
that, and see how it goes.
L15[00:08:37] <Vampyre> local function
fwrite()
L16[00:08:37] <Vampyre> refs[pwd ..
"/" .. dir .. "/" .. dent.name] =
file:read(dent.filesize))
L17[00:08:37] <Vampyre> end
L18[00:08:46] <Vampyre> that should be all
you need I think
L19[00:09:17] <Vampyre> no, not even
that
L20[00:09:25] <Vampyre> dent.name is
already including the path
L21[00:09:34] <Vampyre> refs[dent.name] =
file:read(dent.filesize))
L22[00:11:57]
<Ocawesome101> there, it finally
compiles
L23[00:12:19]
<coderboy14> I swapped that out. I don't
see any changes, but I'm fixing a few other things I noticed. Maybe
that `print` that the original person put in there, it was just a
debug??
L24[00:12:52] <Vampyre> the print(name)
?
L25[00:13:00]
<Ocawesome101> time to build linux...
which involves cloning the whole fucking source tree.... ugh
L26[00:13:45]
<coderboy14> Yah, that's what is causing
not only the names, but the contents of every single file to be
spilled out onto the screen, which is part of what made me think I
really messed something up.
L28[00:14:09] <Vampyre> it does?
L29[00:14:22] <Vampyre> that's not good, it
shouldn't do that ;-)
L30[00:14:26]
<Ocawesome101> tfw windows-style line
endings
L31[00:14:28]
<Ocawesome101> yuck
L32[00:14:29] <Vampyre> does the original
do that too?
L33[00:15:03]
<Ocawesome101> (seriously, for the love of
god please use unix-style line endings or OC software may well
break (and it annoys programmers if you use windows-style
endings))
L34[00:15:14]
<coderboy14> I don't believe so, from the
screenshots of it I've seen, and what the variable name is.
Although it wouldn't hurt to boot up OpenOS and try.
L35[00:15:47]
<coderboy14> Character line endings at the
second haven't been my biggest priority. Unfortunately I'm on
Windows, and so that's the endings it choose for me, lol.
L36[00:15:49] <Vampyre> yah, check the base
you work with first, just to be sure
L37[00:16:41] <Vampyre> spending a few
hours on bugs which are apparently upstream is not fun ;-)
L38[00:17:23]
<Ocawesome101> any decent editor should
have an option to switch from CRLF to just LF
L39[00:18:00] <Vampyre> also, in that
screenshot I don't see the file data, only their names, so, how do
you mean it's printing the data, not just the names?
L40[00:18:06]
<coderboy14> At this point, I've
considered doing the worst thing imaginable - spending hours
reading the specs and writing my own `cpio` deflate library!
L41[00:18:07]
<coderboy14> Sometimes I change it, but I
often switch editors a decent but.
L42[00:18:14]
<Ocawesome101> fair enough
L43[00:18:23]
<Ocawesome101> cpio does no
compression
L44[00:18:26]
<Ocawesome101> deflate is
compression
L45[00:18:33]
<Ocawesome101> you may be referring to
unarchiving?
L46[00:18:51]
<coderboy14> Everything under the line
`bin/glacier.lua`, that's the contents of `glacier.lua`. I know it
doesn't compress, but yah, I just got the words mixed up.
L47[00:19:21]
<Ocawesome101> fair enough. happens to
everyone
L48[00:19:22] <Vampyre> aah ok, I get it
;-)
L49[00:22:01]
<coderboy14> Okay, yep, the original
source works ... up until the end. It does print out all the file
names, and put the on the disk, but it has an error at the
end...... maybe I generated the CPIO archive wrong??
L50[00:22:45]
<Ocawesome101> maybe
L51[00:22:45] <Vampyre> yah, I'm following
your code, it's coming from your wrapper at
component.invoke(self.addres, "write", self.handle,
contents)
L52[00:23:06] <Vampyre> but how exactly
that end up at stdio instead of the file, I dunno
L53[00:23:13] <Vampyre> really, kill the
wrapper ;-)
L54[00:23:37]
<coderboy14> I was saying there is an
error in the original source code too, when extracting the archive.
I'll remove them, it just helped me process the debugging process,
lol.
L55[00:24:07] <Vampyre> take the original,
just change the fwrite to set the table and move on ;-)
L56[00:29:04] ⇦
Quits: kan18 (~kan18@h68.131.188.173.dynamic.ip.windstream.net)
(Quit: WeeChat 3.0.1)
L57[00:30:55] ⇨
Joins: kan18
(~kan18@h68.131.188.173.dynamic.ip.windstream.net)
L58[00:32:55]
<coderboy14> Well, promising so far. I
rewrote it as you said, and now it doesn't spew garbage on the
screen ... but it is also locking up somewhere...
L59[00:37:28] <Vampyre> add some debug
prints on key lines
L60[00:38:35] ⇦
Quits: t20kdc
(~20kdc@cpc139384-aztw33-2-0-cust220.18-1.cable.virginm.net)
(Remote host closed the connection)
L61[00:39:50]
<coderboy14> That's what I got to, and the
issue is I'm going to guess the cursor has reached EOF, and when it
ties to read another byte, it throws an error?
L62[00:39:55] <Amanda> My day is
immeasurable and my disappointment is ruined
L63[00:42:45] ⇦
Quits: s_a_m (~sam@172.58.204.73) (Ping timeout: 189
seconds)
L64[00:44:26] <Amanda> %tell Inari anyway,
stop letting the frog eat my food, so I'll let the police chief
notice your illegal use of the dice engine OCR cryptocurrency. Why
are you even using cats to show the results of the wagers of your
cockfights, anyway
L65[00:44:26] <MichiBot> Amanda: Inari
will be notified of this message when next seen.
L66[00:46:00]
<Ocawesome101> k, building kernel
now
L67[00:46:10]
<Ocawesome101> then to figure out what to
do for a bootloader
L68[01:04:03]
<bad at
vijya> lmao
L69[01:04:18]
<bad at
vijya> i should work on Tsuki later
L70[01:05:32] <Amanda> In #oc bad at vijya
doesn't say "hello" they say "I should work on
tsuki" and I think that's beautiful
L71[01:07:48]
<coderboy14> I removed all my wrappers,
and replaced the second opening of a file with pushing to the
table.... but the same exact issue is still going on?! How,
lol?
L72[01:16:22] ⇦
Quits: kan18 (~kan18@h68.131.188.173.dynamic.ip.windstream.net)
(Quit: WeeChat 3.0.1)
L73[01:17:26]
<bad at
vijya> @coderboy14 did you remember null termination and
alignment?
L74[01:17:38] ⇨
Joins: kan18
(~kan18@h68.131.188.173.dynamic.ip.windstream.net)
L75[01:18:55]
<MadMan310>
what is the difference between event.listen() and event.pull()
?
L76[01:19:29]
<Ocawesome101> mmm
L77[01:19:34]
<Ocawesome101> getting "rootfs not
found"
L78[01:19:41]
<Ocawesome101> i'm sure i'm specifying it
correctly
L79[01:20:23] <Hawk777> event.listen:
return immediately; in future, every time this event arrives, call
the registered function
L80[01:20:23] <Hawk777> event.pull: pause
execution (of the current coroutine) at this point until an event
arrives, then resume execution and return that event
L81[01:22:12] ⇦
Quits: kan18 (~kan18@h68.131.188.173.dynamic.ip.windstream.net)
(Remote host closed the connection)
L82[01:23:22] ⇨
Joins: kan18
(~kan18@h68.131.188.173.dynamic.ip.windstream.net)
L83[01:26:03]
<coderboy14> @bad at vijya umm... huh? I
don't even know what that means, lol.
L84[01:26:33]
<Ocawesome101> aha! USB mass storage
wasn't enabled
L85[01:27:35]
<Ocawesome101> but i was trying to boot
from USB
L86[01:27:41]
<Ocawesome101> that'd definitely make
it... not work
L87[01:27:53]
<bad at
vijya> @coderboy14 Basically, everything in CPIO has to be
aligned to two bytes. if you read an odd number, there'll be an
extra null byte at the end. this goes for the name and the file
contents
L88[01:28:00]
<bad at
vijya> also, in cpio, file names are null terminated
L89[01:28:45]
<coderboy14> @bad at vijya Ah. Say, I
didn't write the core CPIO library. I'm just patching it, to make
it work for my situation. I tried to not touch a single bit of the
confusing math-y parts.
L90[01:28:57]
<bad at
vijya> oh? cpio library?
L91[01:29:12]
<MadMan310>
so if i were to start an event listener it would call a function if
it recieves the signal at any time while its running?
L92[01:29:44]
<MadMan310>
i guess its more suited for background processes
L93[01:29:57]
<bad at
vijya> >coderboy14: <@!175686996461617162> Ah. Say, I
didn't writ…
L94[01:29:57]
<bad at
vijya> what cpio library lmao
L96[01:31:18]
<bad at
vijya> oh, i wrote that
L97[01:31:33]
<coderboy14> Hahah. Oh that's funny.
L98[01:31:55]
<coderboy14> Guess there is no better
person to talk to, lol
L99[01:33:39]
<bad at
vijya> yeah i guess
L100[01:33:41]
<bad at
vijya> lemme see your code
L102[01:40:52]
<Vaur>
%tonk
L103[01:40:53] <MichiBot> Yippee! Vaur!
You beat Forecaster's previous record of <0 (By 4 hours, 23
minutes and 40 seconds)! I hope you're happy!
L104[01:40:54] <MichiBot> Vaur's new
record is 4 hours, 23 minutes and 40 seconds! Vaur also gained
0.00439 tonk points for stealing the tonk. Position #1.
L105[01:43:28]
<bad at
vijya> god i need to rewrite that util
L106[01:43:29]
<bad at
vijya> lmao
L107[01:43:37]
<bad at
vijya> it can be done in so many fewer lines of code
L108[01:44:21]
<coderboy14> It's still rocket science to
me, and it looked way less intimidating than some other archive
libraries.
L109[01:44:32]
<bad at
vijya> yeah cpio is super easy to decode
L110[01:45:09]
<coderboy14> Things like file formats
always mess with my brain, which is why I'm trying pretty hard to
avoid having to write my own library from scratch, lol
L111[01:45:53]
<bad at
vijya> so, you're making the file with cpio right?
L112[01:46:08]
<bad at
vijya> like, `find . -depth | cpio -o`
L113[01:46:50]
<bad at
vijya> OH
L114[01:46:51]
<bad at
vijya> WAIT
L115[01:46:53]
<bad at
vijya> so
L116[01:47:03]
<bad at
vijya> the max you can read with the component in one go is 2048
bytes
L117[01:48:28]
<bad at
vijya> and that util doesn't actually verify magic numbers
L118[01:48:29]
<coderboy14> Yah, mine is just a little
over that ... 84,480 bytes
L119[01:48:43]
<bad at
vijya> if any file in the cpio is over 2048 bytes, it won't
work
L120[01:48:54]
<bad at
vijya> i can actually throw together a better util real
fast
L121[01:49:04]
<bad at
vijya> and i really should
L122[01:49:21]
<bad at
vijya> god, that ancient version of uncpio is painful
L123[01:49:27]
<bad at
vijya> 😔
L124[01:49:57]
<coderboy14> lol. I was just getting so
confused, because when running via OpenOS, it opens my archive zero
issues. Doing it with my patches version, naw.
L125[01:50:26]
⇨ Joins: s_a_m (~sam@172.58.204.73)
L126[01:50:39]
<bad at
vijya> yeah, that's how it be, 2048 read limit
L127[01:50:45] <s_a_m> shouldn't be too
hard to fix
L128[01:52:09]
<coderboy14> Ah, makes sense. So one of my
(many) theories was right, not having the buffer library was
killing me, lol.
L129[01:52:49] <s_a_m> in zorya, i wrap
read/write lmao
L130[01:52:54] ⇦
Quits: SlimeDiamond (~slime@basher.zenoc.net) (Ping timeout: 198
seconds)
L131[01:53:01] <s_a_m> sorry, just
read
L132[01:53:10] <s_a_m> iirc write doesn't
have a limit
L133[01:53:50]
<coderboy14> I tried wrapping, but I
didn't know that was the issue. Otherwise I'd imagine fixing it is
fairly simple, just have the wrapper split the read into several
calls if need be.
L134[01:54:05]
⇨ Joins: SlimeDiamond (~slime@basher.zenoc.net)
L135[01:56:12] <s_a_m> ye
L136[01:56:42] <s_a_m> i needed to make a
new uncpio util *anyways*
L137[01:57:39]
<coderboy14> I honestly hadn't heard of
CPIO before finding the library, lol
L138[01:59:11] <s_a_m> oh yeah, absolutely
ancient *nix archive format
L139[02:00:48] <s_a_m> it's gonna have
problems in 2038
L140[02:01:00] <s_a_m> which is the main
reason i made tsar
L141[02:01:08]
<coderboy14> But at least its simple.
That's the important part. Especially since at some point I need to
write a library to create the archives as well.
L142[02:01:35] <s_a_m> tsar is pretty
simple
L143[02:01:37]
<coderboy14> I was looking at tsar, but I
couldn't get Lua on my computer to cooperate nicely to actually
create the archive, lol
L144[02:01:44] <s_a_m> same method of
reading cpio
L145[02:01:50] <s_a_m> oh, you need
luafilesystem installed
L146[02:02:05] <s_a_m> much like cpio, you
pipe a list of files into the util
L147[02:02:45]
<coderboy14> Yah, but that's easier said
than done. At first I didn't have it, but the only way I could get
it was an older Lua version that was pre-build with an installer
... but then the bitwise symbols used in the file, they weren't
supported anymore!
L148[02:03:15] <s_a_m> do you not have vs
tools installed?
L149[02:03:42]
<coderboy14> Visual Studio, I might have
it. Don't really use anything in VS though, so IDK.
L150[02:03:50] <s_a_m> huh
L151[02:04:05] <s_a_m> do you have a linux
install or vm?
L152[02:04:10] <s_a_m> or WSL?
L153[02:04:46]
<coderboy14> My primary is a Windows PC,
and I tried installing WSL, but it wanted me to restart, and I
didn't wanna loose my ten thousand tabs of documentation.
L154[02:05:02] <s_a_m> if so, you can
install luarocks then do `sudo luarocks install
luafilesystem`
L155[02:05:58]
<coderboy14> I tried installing luarocks
on Windows, but that ... it didn't play nicely ... at all. And I
couldn't get the right version of Lua installed to support things
like bitwise operators anyways, so I threw the towel in.
L156[02:06:56] ⇦
Quits: Thutmose (~Patrick@host-69-59-79-181.nctv.com) (Quit:
Leaving.)
L157[02:12:01] <Amanda> Goddesses above. I
genuinely don't understand how people can have a lot of tabs
open
L158[02:12:27] <Amanda> I get extremely
anxious at 8-10 when the tab bar starts shrinking
L159[02:12:44] <Amanda> Anyways
L160[02:13:11] *
Amanda tucks in around elfi, passes out to the sound of thunder
boomers and flashy gurls outside
L161[02:13:54] <Amanda> If I disappear
overnight, I probably lost power
L162[02:14:04]
<coderboy14> I have 24 tabs open, and the
vast majority of them have at least fifteen tabs open.
L163[02:14:13]
<coderboy14> *24 windows open
L164[02:14:44]
<ThePiGuy24> why
L165[02:14:47] <Amanda> I have one window
with fou- five pinned tabs, the rest I close when I'm done with
whatever I'm doing
L166[02:15:35] <Amanda> I'm not going to
remember what I was reading on those pages, might as well close
them and save the ram, google whatever it is again when I next need
it
L167[02:15:38]
<coderboy14> Because as I'm working on
projects, I have a tonne of various docs and references open. One
window is just pages from the OpenComputer docs, another is just
forum pages, a window or two on lua docs, etc.
L168[02:16:15] <Amanda> May I interest you
in Zeal
L169[02:16:35]
<coderboy14> Chrome is only using 4GB of
memory. What's that?
L170[02:16:39] <Amanda> That'll get rid of
some of the docs windows at least
L171[02:16:46] <Amanda> Doc viewer
L172[02:17:25]
<coderboy14> I'll check it out (just
installed it, lol)
L173[02:17:26] <Amanda> Based on the
docsets from the macros app Dash
L174[02:18:04] <Amanda> And you can make
your own, they're literally just html files with a SQLite
index
L175[02:18:19] <Amanda> Anyways, sleep for
real, night nerds
L176[02:18:24]
<coderboy14> Goodnight
L178[03:02:39]
⇨ Joins: Neo (~neo@ip160.ip-192-99-104.net)
L179[03:02:50] *** Server sets mode: +ntz
L180[03:03:39]
⇨ Joins: Corded
(~MichiBot@ip160.ip-192-99-104.net)
L181[03:03:39]
zsh sets mode: +v on Corded
L182[03:03:44]
⇨ Joins: MichiBot
(~MichiBot@ip160.ip-192-99-104.net)
L183[03:03:44]
zsh sets mode: +v on MichiBot
L184[03:03:53]
<Michiyo>
oh.. lol
L185[03:04:13]
<bad at
vijya> heh
L187[03:05:14] <s_a_m> oh no
L188[03:05:18] <s_a_m> my proxy box isn't
working
L189[03:05:18] <s_a_m> wtf
L190[03:05:37]
<ThePiGuy24> boxy prox
L191[03:05:59]
<Michiyo>
%test
L192[03:06:01] <MichiBot> Michiyo:
No.
L193[03:06:05]
⇨ Joins: michiyo (~michiyo@znc.michiyo.me)
L194[03:06:25] <CompanionCube>
%tonkout
L195[03:06:25] <MichiBot> I'm sorry
CompanionCube, you were not able to beat Vaur's record of 4
hours, 23 minutes and 40 seconds this time. 1 hour, 25 minutes and
32 seconds were wasted! Missed by 2 hours, 58 minutes and 8
seconds!
L196[03:06:35] ***
michiyo is now known as Guest20920
L197[03:06:40]
<Michiyo>
It wasn't down for that long CC :P
L198[03:08:23]
zsh sets mode: +o on Guest20920
L199[03:08:28] ***
Guest20920 is now known as Michiyo
L200[03:08:46]
<ThePiGuy24> мичибот
L201[03:09:56] <s_a_m> I
ACCENDENTALLY
L202[03:09:57] <s_a_m> HIT
L203[03:10:03] <s_a_m> "APPLY
DEFAULTS AND EXIT"
L204[03:10:34] <s_a_m> pain
L205[03:10:36] <s_a_m> anyways
L206[03:13:24] <s_a_m> also that fix to
networkmanager apparently still hasn't gone through
L207[03:13:43] <s_a_m> the one that
prevents networkmanager from wiping your fucking DNS servers
because you didn't set any up for a VPN
L208[03:18:38] ⇦
Quits: s_a_m (~sam@172.58.204.73) (Ping timeout: 189
seconds)
L209[03:21:16]
⇨ Joins: s_a_m
(~sam@pool-70-16-239-151.rcmdva.fios.verizon.net)
L211[03:28:51] <MichiBot>
ABC Diesel
Engine Startup Tugboat 5500 Horsepower | length:
5m 33s
| Likes:
49,005 Dislikes:
2,200 Views:
6,564,365 | by
ShippingHarbors | Published On 9/11/2015
L212[03:33:32] <Michiyo> ....
L213[03:33:36] <Michiyo> error: eno3: cmd
'/bin/ip route add default via 51.79.17.254 proto kernel dev eno3
onlink' failed: returned 1 (Cannot find device
"eno3")
L214[03:55:22] ⇦
Quits: ThePiGuy24 (~ThePiGuy2@host-92-17-126-142.as13285.net)
(Remote host closed the connection)
L216[04:14:26] <Vampyre> carrige return
and line feed, or in c \r\n
L217[04:14:48] <Vampyre> \r\n is the
standard windows end of line mantra
L218[04:15:00]
<coderboy14> Ah. Okay, I'll have to filter
them out. They're ugly and may be breaking my program(?)
L219[04:15:03] <Vampyre> unix uses just
\n, mac (pre x) uses \r
L220[04:15:22] <Vampyre> no, they are
litterly the end of lines of your peogram
L221[04:15:31] <Vampyre> program*
L222[04:15:50] <Vampyre> don't matter if
you have the \r in there too (usually)
L223[04:16:18] <Vampyre> well... ok, to do
some defensive programming, maybe filter the \r's ;-)
L224[04:18:54]
<bad at
vijya> >coderboy14: What are these weird symbols popping up
on my…
L225[04:18:55]
<bad at
vijya> gpu.set doesn't automatically process line breaks
L226[04:38:56] ⇦
Quits: ben_mkiv
(~ben_mkiv@200116b8143fde00909b18c1e04a8fe3.dip.versatel-1u1.de)
(Ping timeout: 189 seconds)
L227[04:50:45] <Izaya> thinkign about
netboot PsychOS again
L228[04:50:57] <Izaya> HDDs are expensive,
network cards are cheap
L229[04:54:28]
<bad at
vijya> i should have netboot tsuki
L230[04:54:35]
<bad at
vijya> lmao
L231[05:03:50]
<Ocawesome101> I could netboot ULOS with a
kernel module and special bootloader most likely
L232[05:13:22] <Izaya> I'd need to build a
few things into the kernel but it should be easy enough for
PsychOS
L233[05:20:53]
<bad at
vijya> lmao
L234[05:20:55]
<bad at
vijya> i could netboot zorya
L235[05:21:05]
<bad at
vijya> also my sodium levels are now through the fucking
roof
L236[05:21:06]
<bad at
vijya> holy shit
L237[05:21:15]
<bad at
vijya> i nearly capped the flag in titanfall 2
L238[05:21:16]
<bad at
vijya> multiple times
L239[05:21:19]
<bad at
vijya> and my team was just
L240[05:21:22]
<bad at
vijya> jacking themselves off
L241[05:21:46]
<Ariri> all
the new players lol
L242[05:21:48]
<bad at
vijya> like, fuckers, i can't do literally everything at once
just because i know how to move and i use the kraber
L243[05:22:02]
<bad at
vijya> PLEASE for the LOVE OF GOD
L244[05:22:14]
<bad at
vijya> look, there's new players, and then there's just not
doing jack shit like
L245[05:22:16]
<bad at
vijya> holy fuck
L246[05:22:35]
<Ariri> 2
months ago ctf and point defense was always one-sided due to insane
pros
L247[05:22:35]
<Ariri> now
it's balanced out
L248[05:22:39]
<Ariri>
lmao
L249[05:23:00]
<Ariri> i
should play that more often
L250[05:23:22]
<Ariri>
thought i've been enjoying apex because of valkyrie reminding me of
Northstar <3
L251[05:23:41]
<Ariri>
though*
L252[05:27:09]
<Kleadron>
x86 assembly is really interesting
L253[05:27:12]
<Kleadron>
and ms-dos com files
L254[05:27:23]
<Kleadron>
at least, dos development with assembly in general
L256[05:27:35] <MichiBot>
VALKYRIE.EXE
IS STRAIGHT UP BUSSIN | length:
5m 48s | Likes:
10,356 Dislikes:
60 Views:
129,166 | by
Diceboi |
Published On 16/5/2021
L257[05:27:38]
<bad at
vijya> oh my FUCKING GOD
L258[05:27:40]
<bad at
vijya> IT HAPPENED AGAIN
L259[05:28:04]
<bad at
vijya> "hurr durr a loss is a lesson learned" THANKS
FOR HELPING GET THE FLAG BACK, MR WISE MAN
L260[05:28:18]
<bad at
vijya> i am levels of tilted i have not been in a hot
minute
L262[05:28:37] <Izaya> this is why I don't
play team games
L263[05:28:55]
<bad at
vijya> it's fun when i don't have fucking smoothbrains as
teammates
L264[05:29:24] <Izaya>
because I don't have enough
friends to fill out a competent team
L265[05:30:06]
<bad at
vijya> i wish there was team damage in this game sometimes
L266[05:30:11]
<bad at
vijya> i'd just brain some of my own teammates
L267[05:30:29]
<Ariri>
same when i have to play with randoms
L268[05:30:42]
<bad at
vijya> like holy fuck
L269[05:31:02]
<bad at
vijya> also the people who put sentries on spawns
L270[05:31:03]
<bad at
vijya> can go to hell
L271[05:31:05]
<bad at
vijya> like, actually
L272[05:31:09]
<Ariri>
yes
L273[05:32:23]
<bad at
vijya> also people who can only use the CAR or spitfire and are
like
L274[05:32:25]
<bad at
vijya> G4 or some shit
L275[05:32:28]
<bad at
vijya> are objectively shit at the game
L276[05:33:03]
<Ariri> the
spitfire has been unbalanced for literal generations
L277[05:33:11]
<Ariri> it
still needs nerfing in apex
L278[05:33:15] <CompanionCube> Izaya:
earlier on freenode, anyone pinging the owner's nick got killed by
sigyn
L279[05:33:24] <Izaya> c l a s s
L280[05:33:37] <CompanionCube> also he
wrote a BS apology
L281[05:33:39] <Izaya> also I need to get
a nice buffer library working on Linux so I can use the normal
libmtar/liblz16 without modification
L282[05:33:55] <Izaya> was this man's
intention to kill freenode?
L283[05:34:12] <CompanionCube> no
L284[05:34:22] <CompanionCube> he just has
an ego the size of the moon
L285[05:35:33] <CompanionCube> genuinely
believes that he owns the place, and probably this is part of his
grand irc manifesto
L286[05:36:06] ⇦
Quits: SlimeDiamond (~slime@basher.zenoc.net) (Ping timeout: 198
seconds)
L287[05:36:58] *
CompanionCube doesn't think one of his channel ops banning a whole
isp will be topped, though
L288[05:37:31] <Izaya> I mean, next is
banning a country's IP block?
L289[05:38:11] <CompanionCube> not seeing
it
L290[05:39:40]
⇨ Joins: SlimeDiamond (~slime@basher.zenoc.net)
L291[05:41:38] <Vampyre> ...is this 1995?
are IRC wars a thing again?
L292[05:44:19]
<bad at
vijya> don't you remember, he's the price of korea or
something
L293[05:44:50]
<bad at
vijya> anyways
L294[05:44:53]
<bad at
vijya> that's enough game for tonight
L295[05:44:54]
<bad at
vijya> i'm just
L296[05:44:56]
<bad at
vijya> super tilted
L297[05:45:01]
<bad at
vijya> and not even magic spear 1 helped
L298[05:46:48]
<bad at
vijya> oh well
L299[05:47:06]
<bad at
vijya> i got to rip and tear some grunts with papa scorch and
kraber people's skulls out of this plane of reality
L300[05:49:37]
<bad at
vijya> anyways
L301[05:49:44]
<bad at
vijya> Izaya: did you see my update to uncpio
L302[05:49:57] <Izaya> it popped up in my
RSS reader
L303[05:50:21]
<bad at
vijya> it now actually complains if you throw invalid data at
it
L304[05:50:30]
<bad at
vijya> and it no longer OOMs with large files
L305[05:53:37]
<bad at
vijya> anyways
L306[05:53:59]
<bad at
vijya> i should make a cute archiver for OpenOS that supports
mtar, tsar, cpio, cpio64, and maybe tar
L307[06:13:30]
<bad at
vijya> someone was really trying to get into my site
L308[06:16:03]
<bad at
vijya> looks like someone just
L309[06:16:05]
<bad at
vijya> used a VPN
L310[06:16:13]
<bad at
vijya> and was trying to do all the wacky vulns
L311[06:16:30]
<bad at
vijya> that don't exist because i keep my software up to date
and i don't have web control panels
L312[06:22:05]
<Forecaster> that happens all the time to
me
L313[06:22:25]
<Forecaster> all sorts of requests to
wp-login.php and stuff
L314[06:22:43]
<Forecaster> that I don't have in the root
of my domain...
L316[06:31:17]
<Forecaster> `script
'/var/www/directories/wp-login.php' not found or unable to stat`
happened today...
L317[06:32:38]
<Forecaster> `script
'/var/www/directories/misc.php' not found or unable to stat` I
don't even know what this would be from
L318[06:35:30]
<bad at
vijya> lmao
L320[06:49:01] ⇦
Quits: Hawk777 (~chead@2607:c000:8268:1a00:2b59:e4fc:7de4:7c7b)
(Quit: Leaving.)
L321[06:53:16]
<bad at
vijya> huh
L322[06:53:22]
<bad at
vijya> i wonder if someone's trying to DoS me or something
L323[06:53:41]
<bad at
vijya> getting 2Mbit/17Mbit
L324[07:53:28]
⇨ Joins: Vexatos
(~Vexatos@port-92-192-63-219.dynamic.as20676.net)
L325[07:53:28]
zsh sets mode: +v on Vexatos
L326[08:43:27] ⇦
Quits: SlimeDiamond (~slime@basher.zenoc.net) (Ping timeout: 189
seconds)
L327[08:50:44]
⇨ Joins: SlimeDiamond (~slime@basher.zenoc.net)
L328[09:07:09] <Izaya> .tell ben_mkiv hey
did the OCDevices racks get the network fixes?
L329[09:07:46] <Izaya> %tell ben_mkiv hey
did the OCDevices racks get the network fixes OC racks got a few
months back where servers wouldn't be able to talk on the network
if they didn't have a component connection?
L330[09:07:46] <MichiBot> Izaya: ben_mkiv
will be notified of this message when next seen.
L331[09:25:28]
⇨ Joins: rason (webchat@31.162.76.6)
L333[09:45:39]
⇨ Joins: ben_mkiv
(~ben_mkiv@200116b8143fde00909b18c1e04a8fe3.dip.versatel-1u1.de)
L334[09:48:47]
<Kristopher38> Lol good one
L335[10:05:01]
⇨ Joins: t20kdc
(~20kdc@cpc139384-aztw33-2-0-cust220.18-1.cable.virginm.net)
L336[10:08:21] ⇦
Quits: rason (webchat@31.162.76.6) (Quit:
webchat.esper.net)
L337[10:17:45] <Izaya> got em automated to
close when the monsters come out
L338[11:25:02]
<Forecaster> %tonkout
L339[11:25:05] <MichiBot> Shoot!
Forecaster! You beat Vaur's previous record of 4 hours, 23
minutes and 40 seconds (By 3 hours, 54 minutes and 57 seconds)! I
hope you're happy!
L340[11:25:06] <MichiBot> Forecaster has
stolen the tonkout! Tonk has been reset! They gained 0.008 tonk
points! plus 0.007 bonus points for consecutive hours! (Reduced to
50% because stealing) Current score: 1.0314107. Position #3 Need
0.1311203 more points to pass CompanionCube!
L342[13:01:18]
⇨ Joins: Thutmose
(~Patrick@host-69-59-79-181.nctv.com)
L343[13:50:37] ⇦
Quits: ben_mkiv
(~ben_mkiv@200116b8143fde00909b18c1e04a8fe3.dip.versatel-1u1.de)
(Killed (NickServ (GHOST command used by
ben_mkiv|afk!~ben_mkiv@2001:16b8:1eec:4a00:d8b5:c532:8635:beb7)))
L344[13:50:39]
⇨ Joins: ben_mkiv|afk
(~ben_mkiv@2001:16b8:1eec:4a00:d8b5:c532:8635:beb7)
L345[13:57:27]
⇨ Joins: Inari
(~Pinkishu@p4fe7e8e8.dip0.t-ipconnect.de)
L346[13:59:37] <Inari> nep
L347[13:59:59] <Inari> Amanda: odd dreams
again?
L348[14:10:44] <Amanda> Inari: yup
L349[14:15:35]
<Vaur>
%tonk
L350[14:15:36] <MichiBot> Sard! Vaur! You
beat Forecaster's previous record of <0 (By 2 hours, 50 minutes
and 32 seconds)! I hope you're happy!
L351[14:15:37] <MichiBot> Vaur's new
record is 2 hours, 50 minutes and 32 seconds! Vaur also gained
0.00284 tonk points for stealing the tonk. Position #1.
L352[14:17:37]
⇨ Joins: ThePiGuy24
(~ThePiGuy2@host-92-17-126-142.as13285.net)
L353[15:11:17] ⇦
Quits: ThePiGuy24 (~ThePiGuy2@host-92-17-126-142.as13285.net) (Ping
timeout: 189 seconds)
L354[15:16:25]
⇨ Joins: ThePiGuy24
(~ThePiGuy2@host-92-17-126-142.as13285.net)
L355[15:31:48] ⇦
Quits: Renari (~Renari@64.67.31.239.res-cmts.bgr.ptd.net) (Read
error: -0x1: UNKNOWN ERROR CODE (0001))
L356[15:33:19]
<Forecaster> %sip
L357[15:33:20] <MichiBot> You drink a
fragrant ferozium potion (New!). Forecaster briefly feel like they
have just stepped out of a car.
L358[15:55:57] ⇦
Quits: ben_mkiv|afk
(~ben_mkiv@2001:16b8:1eec:4a00:d8b5:c532:8635:beb7) (Remote host
closed the connection)
L359[15:56:41]
⇨ Joins: ben_mkiv
(~ben_mkiv@2001:16b8:1eec:4a00:d8b5:c532:8635:beb7)
L360[16:05:46]
⇨ Joins: TPG24
(~ThePiGuy2@host-92-17-126-142.as13285.net)
L361[16:07:32] ⇦
Quits: ThePiGuy24 (~ThePiGuy2@host-92-17-126-142.as13285.net) (Ping
timeout: 189 seconds)
L362[16:38:46] <ben_mkiv> MichiBot?
L363[16:39:58] <ben_mkiv> Izaya, uhm...
OCDevices rack extends the OC rack, so in theory it should work as
the OC rack
L364[16:40:55] <ben_mkiv> also did that
really affect the rack or rather the server?
L365[16:41:12] <ben_mkiv> because a server
without component connection sounds like some server with a linked
card or similar
L366[16:41:19] <ben_mkiv> or wireless
card
L367[16:58:17] ⇦
Quits: immibis (~immibis@62.156.144.218) (Remote host closed the
connection)
L368[16:58:39]
⇨ Joins: immibis (~immibis@62.156.144.218)
L369[17:01:44]
⇨ Joins: Hawk777
(~chead@2607:c000:8268:1a00:df3f:4365:d366:e6e2)
L370[17:37:49] ⇦
Quits: glasspelican (~quassel@2607:5300:201:3100::325) (Ping
timeout: 204 seconds)
L371[17:40:57]
⇨ Joins: glasspelican
(~quassel@2607:5300:201:3100::325)
L372[17:42:58] ⇦
Quits: kinkinkijkin (sid476447@id-476447.tinside.irccloud.com)
(Quit: Connection closed for inactivity)
L373[18:18:52] ⇦
Quits: s_a_m (~sam@pool-70-16-239-151.rcmdva.fios.verizon.net)
(Ping timeout: 198 seconds)
L375[18:34:34]
⇨ Joins: s_a_m (~sam@172.58.204.73)
L377[18:36:29]
⇨ Joins: lord| (~ba7888b72@66.109.211.50)
L378[18:38:36] <s_a_m> god, dual wielder
is such a comfy track
L379[18:38:58]
<Kleadron>
"comfy"
L381[18:40:33] <MichiBot>
"Dual
Wielder" (Extended) - Ace Combat 7 Soundtrack | length:
29m 50s | Likes:
1,206
Dislikes:
12 Views:
180,565 |
by
Zaptroxix | Published On 17/1/2019
L382[18:40:37] <s_a_m> yeah, comfy
L384[18:44:45] <s_a_m> Ariri: no
L385[18:45:46] <s_a_m> also this track
makes me want to buy a supersonic interceptor and fly at high
altitudes
L386[18:45:58] <s_a_m> at my maximum sage
speed
L387[18:46:01] <s_a_m> *safe
L388[19:06:38] <Vampyre> so what is your
theme song for maximum unsafe speed?
L389[19:13:25] <s_a_m> oh lemme pull it up
real quick
L391[19:15:31] <MichiBot>
"Magic
Spear II" - Ace Combat 7 Soundtrack | length:
4m 6s
| Likes:
2,462 Dislikes:
14 Views:
427,591 | by
Zaptroxix | Published On 18/1/2019
L392[19:16:15] <s_a_m> perfect for engine
shredding overspeed
L393[19:16:44] <Vampyre> bit cheery
considering the nuclear war thing ;-)
L394[19:17:04] <s_a_m> yeah, i'm unsure
why it was so cheery
L395[19:17:48] <s_a_m> "why is the
music so jammin when i'm supposed to be destroying IRBMs aimed at
friendly forces"
L396[19:18:17] <s_a_m> "and why did
we go from giant airborn aircraft carrier being shotdown by a giant
railgun to goddamn nukes"
L397[19:21:06] <Vampyre> nuclear war is
apparantly always a good option... specially in games, movies and
my mind ;-)
L399[19:31:24] <MichiBot>
"Consequence of Power" (Extended) - Project Wingman
Soundtrack | length:
30m 59s | Likes:
140 Dislikes:
0
Views:
12,282 | by
Zaptroxix Backup | Published On
1/12/2020
L400[19:38:23] <Vampyre> still cheery, but
that's just me ;-)
L401[19:49:11] ⇦
Quits: s_a_m (~sam@172.58.204.73) (Ping timeout: 189
seconds)
L402[20:05:11]
<Vaur>
%tonkout
L403[20:05:14] <MichiBot> Blast! Vaur!
You beat your own previous record of 2 hours, 50 minutes and 32
seconds (By 2 hours, 59 minutes and 5 seconds)! I hope you're
happy!
L404[20:05:15] <MichiBot> Vaur has tonked
out! Tonk has been reset! They gained 0.005 tonk points! plus 0.008
bonus points for consecutive hours! Current score: 1.35080255,
Position #1
L405[20:13:31]
⇨ Joins: ThePiGuy24
(~ThePiGuy2@host-92-17-126-142.as13285.net)
L406[20:14:20] ⇦
Quits: TPG24 (~ThePiGuy2@host-92-17-126-142.as13285.net) (Ping
timeout: 189 seconds)
L408[20:41:23]
⇨ Joins: lord| (~ba7888b72@66.109.211.50)
L409[20:48:45]
⇨ Joins: TPG24
(~ThePiGuy2@host-92-17-126-142.as13285.net)
L410[20:50:30] ⇦
Quits: ThePiGuy24 (~ThePiGuy2@host-92-17-126-142.as13285.net) (Ping
timeout: 198 seconds)
L412[21:42:29] ⇦
Quits: TPG24 (~ThePiGuy2@host-92-17-126-142.as13285.net) (Ping
timeout: 189 seconds)
L413[21:47:28]
⇨ Joins: ThePiGuy24
(~ThePiGuy2@host-92-17-126-142.as13285.net)
L414[22:00:29] ⇦
Quits: SlimeDiamond (~slime@basher.zenoc.net) (Ping timeout: 189
seconds)
L415[22:05:17]
⇨ Joins: SlimeDiamond (~slime@basher.zenoc.net)
L416[22:37:59]
<Ocawesome101> there we go
L417[22:38:08]
<Ocawesome101> finally got luppc
booting
L418[22:38:34]
<bad at
vijya> i still can't
L419[22:38:42]
<Ocawesome101> doesn't support
control-{key} or the like, which is mildly annoying :|
L420[22:38:51]
<Ocawesome101> what're you having issues
with?
L421[22:39:02]
<bad at
vijya> the kernel won't let my IDE controller function
L422[22:39:07]
<Ocawesome101> ah
L423[22:39:11]
<bad at
vijya> i enabled EVERY ide controller driver
L424[22:39:14]
<bad at
vijya> and nah, it doesn't work
L425[22:39:20]
<Ocawesome101> i have no such issue
(5.13rc1 i think?)
L426[22:39:27]
<Ocawesome101> latest master source tree
:P
L427[22:39:39]
<bad at
vijya> will try that later
L429[22:40:49]
<Ocawesome101> i just had issues getting
it to recognize my USB stick. those turned out to be because i
didn't enable some SCSI thing
L430[22:41:28] <Izaya> ben_mkiv:
cool
L431[22:42:45] <Izaya> and I'm not sure if
it was the server or the rack that caused it but it broke
networking pretty hard if you had headless un-component-connected
servers
L432[22:42:49]
<Wattana>
hey uhh yall mind if I share my github repo for opencomputers
docs?
L433[22:43:19]
<Wattana>
long story short i decided to make docs for emmylua and sumenko's
lua language server
L434[22:43:25]
<Wattana>
so that i wont have to open the online docs
L435[22:44:49] <Izaya> neat
L436[22:45:12]
<Ocawesome101> izaya: do you have issues
with arrow keys working in luppc?
L437[22:45:23] <Izaya> works on my
machine
L438[22:45:23]
<Ocawesome101> for me they aren't
recognized properly
L439[22:45:35]
<Ocawesome101> neither is ctrl-KEY
L440[22:45:39]
<Ocawesome101> interesting
L441[22:45:42]
<Ocawesome101> what kernel version are you
using?
L442[22:45:44] <Izaya> those work
too
L443[22:45:48] <Izaya> 5.12.1 IIRC
L444[22:45:58]
<Ocawesome101> i'm using 5.13rc1
L445[22:46:07] <Izaya> interesting
L446[22:46:10]
<Ocawesome101> because that was what git
clone retrieved :P
L447[22:46:15] <Izaya> :D
L448[22:46:29] <Izaya> (the dependencies
script should pull in 5.12.1 by the way)
L449[22:46:34]
<Wattana>
>/bin/ocawesome --101: izaya: do you have issues with arrow
key…
L450[22:46:34]
<Wattana>
whats luppc?
L452[22:46:50] <CompanionCube> wasn't the
legacy IDE driver removed semi-recently?
L453[22:46:52] <Izaya> LuPPC is my LuPI2
fork
L454[22:47:23]
<Ocawesome101> Izaya: it does not
L456[22:47:28]
<Ocawesome101> nor is there anything about
it in there
L457[22:47:48]
<Wattana>
izaya u tryna make an os that actually run opencomputers codes
lmao
L458[22:48:13]
<Ocawesome101> lupi is a linux init
replacement that is similar enough to be mostly compatible with
OC
L459[22:48:19] <Izaya> you're right! it's
in the makefile, I'm dumb.
L460[22:48:37]
<Wattana>
so uhhh
L461[22:48:49]
<Wattana>
indie operating system that runs on luppc when
L462[22:48:55] <Izaya> Wattana: damn
right, I'm gonna run PsychOS on bare metal and finally have a
computer where all the software breakage is my fault
L463[22:49:02]
<Wattana>
~~MineOS for luppc pls~~
L464[22:49:14] <Izaya> y'know
L465[22:49:25] <Izaya> you can run LuPPC
on x86_64 machines
L466[22:49:36] <Izaya> 16GB might be
enough memory for MineOS
L467[22:50:24]
<Ocawesome101> i'm running it on a pentium
m laptop
L468[22:50:27]
<Ocawesome101> from a usb stick lmao
L469[22:50:34] <Izaya> n i c e
L470[22:52:57]
<Ocawesome101> i'd really like to get it
running on my 20MB Compaq machine but i think that's a bit of a
pipe dream
L471[22:53:12] <Izaya> eeeeeh
L472[22:53:18] <Izaya> 20M RAM?
L473[22:53:20]
<Ocawesome101> i sadly don't have any
floppy disks and writing to the hard drive it has is paaaaaain
because i have to take it out
L474[22:53:21]
<Ocawesome101> yes
L475[22:53:34] <Izaya> On my eMac it boots
up to using 11M
L476[22:53:47] <Izaya> you'd get like, 10M
of usable RAM
L477[22:53:53] <Izaya> that's a breddy
beefy OC machine
L478[22:54:20]
<Ocawesome101> oh neat
L479[22:54:40]
<Ocawesome101> also, help how do i exit
ced's visual mode
L480[22:54:47] <CompanionCube> Izaya: one
of the betters ways a channel has been closed: 'Mode
#freenode-policy-feedback [+b *!*@*] by rasengan'
L481[22:54:53] <Izaya> the kernel is 16M
or so though so YMMV
L482[22:55:02] <Izaya> just hit q
L483[22:55:16] <Izaya> (it doesn't close
the buffer so you can come back to it)
L484[22:55:18] <CompanionCube> it had
seemingly outlived its purpose, so it was cleared and redirected to
the also-dead #freenode
L485[22:55:34]
<Ocawesome101> oh neat
L486[22:55:45]
<Ocawesome101> for me it uses 8M of ram on
boot
L487[22:55:59]
<Ocawesome101> kernel is 4.2M
L488[22:56:29] <Izaya> I might add a bind
for Q to close the buffer also
L489[22:57:19] <Izaya> but for now the
easiest is probably hit : and enter close, then quit
L490[22:57:28] *
Izaya wants to rewrite this part of ced
L491[22:57:39]
<bad at
vijya> god
L492[22:57:48]
<bad at
vijya> i wish i still had my K6/2+ machine
L493[22:59:07]
<Wattana>
im tempted to try and port mineos to luppc lol
L494[22:59:25]
<Wattana>
but god knows how much code i'll mess up
L495[23:00:12]
<Ocawesome101> if you can make the mouse
work it should Just Work
L496[23:00:19]
<Ocawesome101> but i don't think lupi
supports mouse input
L497[23:01:17] <Izaya> not yet B)
L498[23:01:37]
<Ocawesome101> heh
L499[23:01:49]
<Ocawesome101> i'm making a PR to fix a
bug that breaks ULOS
L500[23:01:55] <Amanda> Clap you hands to
make LuPPC believe in mic!
L501[23:01:58] <Amanda> mice*
L502[23:01:58]
<Ocawesome101> specifically, component
proxies are missing `.address`
L503[23:02:21] <Izaya> you could probably
modify the init script to start gpm
L504[23:02:26] <Izaya> or, init code,
rather
L505[23:02:38] <Izaya> then that would
spew mouse events to the emulator
L506[23:02:43] ⇦
Quits: ThePiGuy24 (~ThePiGuy2@host-92-17-126-142.as13285.net) (Ping
timeout: 204 seconds)
L507[23:02:50] <Izaya> as stdin
L508[23:03:34]
⇨ Joins: ThePiGuy24
(~ThePiGuy2@host-92-17-126-142.as13285.net)
L509[23:06:05]
<Ocawesome101> Izaya: PR has been
made
L510[23:07:32]
<Ocawesome101> hmmmm
L511[23:07:51]
<Ocawesome101> interestingly, Cynosure's
terminal emulator gets keyboard input without issue
L512[23:08:09] <Izaya> does luppc complain
about not getting a framebuffer on your machine?
L513[23:08:12] <Izaya> because I'm using
the vty
L514[23:08:35]
<Ocawesome101> i have the radeon driver
built in, so no :^)
L515[23:09:26] <Izaya> ... try disabling
that
L516[23:09:27] <Izaya> :D
L517[23:09:51]
<Ocawesome101> but i like hardware
acceleration :(
L518[23:10:02]
<bad at
vijya> uhhh
L519[23:10:04] <Izaya> the cursed original
Radeon in the eMac doesn't work with loonix drivers so it doesn't
get a framebuffer
L520[23:10:10]
<bad at
vijya> uhhh
L521[23:10:15]
<Ocawesome101> i have an X300 lmao
L522[23:10:15]
<bad at
vijya> i need the uhhh
L523[23:10:16]
<bad at
vijya> MDA
L524[23:10:17]
<bad at
vijya> driver
L525[23:10:25]
<bad at
vijya> but i'm pretty sure that's not mainline anymore
L526[23:10:27]
<Ocawesome101> oh well, gotta re-add ACPI
anyway
L527[23:10:28]
<bad at
vijya> *not in
L528[23:10:40]
<bad at
vijya> matrox
L529[23:10:41]
<bad at
vijya> that is
L530[23:10:56] <Izaya> this thing has a
Radeon 7500
L531[23:11:06]
<bad at
vijya> OH
L532[23:11:09]
<bad at
vijya> 5.10 ADDED SUPPORT FOR IT
L533[23:11:13]
<bad at
vijya> [x] nice
L534[23:11:40]
<Ocawesome101> izaya: my 2006 MBP has a
radeon x1600, which due to apple's efi fuckery only works on linux
in bios mode
L536[23:12:06] <Izaya> well that's
fucked
L537[23:12:11] <Izaya> but consider
L538[23:12:49] <Izaya> the Radeon 7500 is
lacking significant parts that are in modern GPUs, offloading it to
the CPU instead
L539[23:13:17]
<Ocawesome101> ....huh
L540[23:13:50]
<Spider
EveryOS> HAHA! I got it working!
L541[23:13:54] <Izaya> some parts of the
geometry calculation
L542[23:14:06]
<bad at
vijya> i just want hi res terminal
L543[23:14:11]
<Ocawesome101> anyways i'm actually rather
happy to have the latitude. got it by chance, the keyboard is
great, everything works, it runs windows 7 B)
L544[23:14:17] <Izaya> tfw terminal is
full resolution
L545[23:14:24] <Izaya> 1280x960
baybee
L546[23:14:34]
<bad at
vijya> mine is 640x480
L547[23:14:37]
<bad at
vijya> pain
L548[23:14:37] <Izaya> if only I could
think of a nice way to load fonts
L549[23:15:42]
<bad at
vijya> need 1680x1050 terminal
L550[23:18:12]
<bad at
vijya> does anyone every use xconfig for configuring
kernels
L551[23:18:13]
<bad at
vijya> like
L552[23:18:14]
<bad at
vijya> ever
L553[23:18:49]
<bad at
vijya> >->
L554[23:18:58]
<bad at
vijya> why is `make menuconfig` frozen
L555[23:22:05]
<Wattana>
hey uhh
L556[23:22:11]
<Wattana>
hows the luacomp refactor going?
L558[23:22:52]
<bad at
vijya> Izaya:
L559[23:23:22] <Izaya> n i c e
L560[23:23:24]
<Ocawesome101> izaya: does your gitea
instance support pushing via ssh?
L561[23:23:28] <Izaya> yes
L562[23:23:33] <Izaya> port 2222
L563[23:23:37]
<Ocawesome101> i added a key
but---ahhh
L564[23:23:48]
<Ocawesome101> how do i configure
that?
L565[23:23:50]
<bad at
vijya> we full res now
L566[23:24:11]
<bad at
vijya> now i need to force this into actually cooperating
L567[23:24:14] <Izaya> set the remote URL
to ssh://git@git.shadowkat.net:2222/user/repo.git
L568[23:24:34] <Izaya>
it's on the repo
pages
L569[23:24:38]
<Ocawesome101> right, ty
L570[23:24:50]
<bad at
vijya> als
L571[23:24:53]
<bad at
vijya> *also
L572[23:25:02]
<bad at
vijya> gonna enable ALSA support for the shits and giggles
L573[23:25:43] <Izaya> been thinkign about
sound
L574[23:25:46] <Izaya> so hear me
out
L575[23:25:48] <Izaya> right
L576[23:25:52] <Izaya> stereo tape
drives
L577[23:25:58]
<bad at
vijya> heh
L578[23:26:01] <Izaya> DFPWM
L579[23:26:03]
<bad at
vijya> also
L580[23:26:04]
<bad at
vijya> like
L581[23:26:06]
<bad at
vijya> izaya
L582[23:26:06]
<bad at
vijya> so
L583[23:26:13]
<bad at
vijya> the other thing i was thinking about was
L584[23:26:15]
<bad at
vijya> just
L585[23:26:16]
<bad at
vijya> tunes
L586[23:26:36]
<Ocawesome101> add computronics sound card
support
L587[23:26:39]
<bad at
vijya> ^
L589[23:28:47]
<Ocawesome101> .....
L590[23:34:48] ⇦
Quits: Vexatos (~Vexatos@port-92-192-63-219.dynamic.as20676.net)
(Quit: Insert quantum chemistry joke here)
L591[23:36:32]
<bad at
vijya> i just remembered one of my first experiences with
SATA
L592[23:36:56]
<bad at
vijya> because i was poor and didn't get a modern computer for a
while, i was wondering where the weird jumpers on the hard drives
was
L593[23:37:02]
<bad at
vijya> i was also very young
L594[23:37:03]
<bad at
vijya> lmao
L595[23:37:18] <Izaya> "hey how do I
set this fancy new drive to slave mode"
L596[23:37:27]
<bad at
vijya> pretty much
L597[23:37:41] ⇦
Quits: t20kdc
(~20kdc@cpc139384-aztw33-2-0-cust220.18-1.cable.virginm.net)
(Remote host closed the connection)
L598[23:38:06]
<bad at
vijya> gah
L599[23:38:19]
<bad at
vijya> why did the entire kernel have to recompile
L600[23:38:24]
<bad at
vijya> ...oh, because i changed the CPU target
L601[23:38:28]
<bad at
vijya> lmao
L602[23:38:39]
<bad at
vijya> to Pentium 3
L603[23:42:56] ⇦
Quits: ben_mkiv (~ben_mkiv@2001:16b8:1eec:4a00:d8b5:c532:8635:beb7)
(Ping timeout: 189 seconds)
L604[23:43:46]
<bad at
vijya> um
L605[23:43:51]
<bad at
vijya> my pentium 3 machine isn't booting....
L606[23:50:14]
<bad at
vijya> :<
L607[23:51:45]
<Kleadron>
:^>
L608[23:51:51]
<Kleadron>
why not
L609[23:51:58]
<Kleadron>
is it just doing nothing at all?
L610[23:55:11]
<bad at
vijya> i fixed it by reseating the gpu
L611[23:56:34]
<bad at
vijya> p h e w
L612[23:56:43]
<bad at
vijya> still grabbing a p4 machine
L613[23:57:37]
<bad at
vijya> from storage shed
L614[23:57:56]
<bad at
vijya> just in case i keep having IDE controller issues
L615[23:59:15] ⇦
Quits: Hawk777 (~chead@2607:c000:8268:1a00:df3f:4365:d366:e6e2)
(Quit: Leaving.)