<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:11:52] ⇦
Quits: Lucifer (sid32492@ilkley.irccloud.com) (Ping timeout: 186
seconds)
L2[00:13:50] ⇦
Quits: Hawk777 (~Hawk777@2607:c000:829b:6400:7804:594d:304:469d)
(Quit: Leaving.)
L3[00:15:02] ⇨
Joins: Lucifer (sid32492@ilkley.irccloud.com)
L4[03:58:42] * Amanda
meows and looks around for where Elfi wandered off to
L5[04:09:10] <MichiBot> Amanda REMINDER:
look into the systemd-journal-flush failures on nonad-3
L6[04:28:29] <Amanda> Well, it only took me
a little over2 weeks, but it's finally happy.No idea why it was
angry, considering it's been in the failed state since the
4th
L7[04:32:35] * Amanda
finds Elfi burrowed into her floof, after chasing her signal in a
large circle for 40m
L8[04:32:57] <Amanda> Damn inefficient fae
sensors
L9[05:01:33] <Amanda> %choose factory or try
and be productive two days in a row challange (impossible)
L10[05:01:34] <MichiBot> Amanda: Eeny,
meeny, miny, factory.
L11[05:01:39] *
Amanda nods
L12[05:02:00] *
Amanda curls up on her pillow, loads up her newest factorycat
game
L13[05:31:37]
<Forecaster> Theres a new one?
L14[05:44:03] <CompanionCube>
%tonkout
L15[05:44:03] <MichiBot> Gadsbudlikins!
CompanionCube! You beat Ocawesome101's previous record of 10
hours, 40 minutes and 58 seconds (By 4 hours, 16 minutes and 36
seconds)! I hope you're happy!
L16[05:44:04] <MichiBot> CompanionCube has
stolen the tonkout! Tonk has been reset! They gained 0.014 tonk
points! plus 0.013 bonus points for consecutive hours! (Reduced to
50% because stealing) Current score: 1.05371481. Position #3 Need
0.02209758 more points to pass Forecaster!
L17[05:44:23] <CompanionCube> aw
yissss
L18[06:03:30] <fingercomp> @kristopher38
I've implemented ECDSA using secp384r1 and added
ecdsa_secp384r1_sha384 to the list of signature algorithms in
libtls13
L19[06:13:00]
<!
LittleTimmy52 !> ok ive tried opening the files i read and
write to in binary mode still does nothing, by the way i dont have
to do serialization anymore since im working with a string rather
than a table now, but data.inflste and deflate is still being buggy
and returning nil
L20[06:34:57]
<Ocawesome101> %tonk
L21[06:34:58] <MichiBot> Yeah!
Ocawesome101! You beat CompanionCube's previous record of <0
(By 50 minutes and 55 seconds)! I hope you're happy!
L22[06:34:59] <MichiBot> Ocawesome101's new
record is 50 minutes and 55 seconds! Ocawesome101 also gained
0.00085 tonk points for stealing the tonk. Position #13. Need
0.01776 more points to pass AR2000!
L23[06:51:32] <Amanda> @Forecaster
techtonica entered EA yesterday
L24[07:12:01]
<Forecaster> Oh yeah, I saw that on the
frontpage today
L25[07:12:16]
<Forecaster> I need to look at that now
that I'm home
L26[08:08:11]
<kristopher38> fingercomp: that's very
nice of you, thanks a lot
L27[10:11:53]
<!
LittleTimmy52 !> at this point i tried many things and I cant
find a solotion, if someone has a chance can someone look at my
code and tell me why i cant get any results from it on the
decompression part
http://pastie.org/p/2bdkzHPtcIRuNzcEbNEgvB
L28[10:32:11] <fingercomp> 1. why are you
compressing base64-encoded content?
L29[10:32:22] <fingercomp> 2. why are you
removing CR/LF bytes from the compressed data?
L30[10:32:48] <fingercomp> are you that
sure it's never going to contain those bytes? if so, the removal is
unnecessary
L31[10:33:09] <Amanda> %remindme 101m
*ding* tier is done
L32[10:33:09] <MichiBot> I'll tell you
"*ding* tier is done" in 101m at 07/19/2023 07:14:09
PM
L33[10:33:10] <fingercomp> and if it does,
how on earth the decoder is expected to know where those bytes
were?
L34[10:35:01] <fingercomp> if your goal was
to transform the *compressed* data into a printable form, you need
to encode64 *after* deflating, and decode64 before inflating
L35[10:39:07] <fingercomp> though you
aren't going to save much unless your input file is really
redundant, as base64 makes a file ~33% larger
L36[10:46:28] <fingercomp> if you want your
files to stay small, you'll need to store them in binary after
deflating
L37[11:10:06]
<Vaur>
%tonk
L38[11:10:07] <MichiBot> Geez! Vaur! You
beat Ocawesome101's previous record of 50 minutes and 55 seconds
(By 3 hours, 44 minutes and 12 seconds)! I hope you're happy!
L39[11:10:08] <MichiBot> Vaur's new record
is 4 hours, 35 minutes and 7 seconds! Vaur also gained 0.00374 tonk
points for stealing the tonk. Position #1.
L40[11:26:57]
<!
LittleTimmy52 !> >fingercomp: 1. why are you compressing
base64-encoded content?
L41[11:26:57]
<!
LittleTimmy52 !> that was a leftover from something, thats
probly why it did nothing on the decompress and the second thing
you said might be right too
L42[11:42:11]
<!
LittleTimmy52 !> my code needs the data from each file to be
saved on one line, i re did the compression but now since i removed
the part that removed the spaces and new lines from the comressed
data the data is now on multipal lines, how can I generate the
deflated data from data.deflate on one line?
L43[11:50:40] <fingercomp> the usual way to
store binary data is to prepend its length before the body and
somehow figure out now how many bytes you need to read to get the
encoded length back
L44[11:51:17] <fingercomp> so it'd first
say, for instance, `90\n`, and then you'd put the 90 bytes of the
compressed data right afterward
L45[11:52:07] <fingercomp> then, when
you're decoding, you first read the line that tells your the size
of the data, and after that you read 90 bytes without caring about
line breaks there or anything
L46[11:54:15] <fingercomp> well, it's one
way to do it, as your format is kind of text-based; you could
encode the length as 4 bytes (2^32 = 2147483648 should be enough):
you'll first read 4 bytes, decode as a 32-bit integer telling you
the body length, and then read as many bytes as it says and treat
it as the body
L47[11:55:43]
<!
LittleTimmy52 !> thanks, but i just encoded that data before
writing it to a file now it works as I needed, my point is data
compression, but more like just making a directory into a file
rather than ultimate compression of everything.
L48[12:14:10] <MichiBot> Amanda REMINDER:
*ding* tier is done
L49[12:17:59]
<!
LittleTimmy52 !> um say I have a big file and I am trying to
read it , but there is a too long without yeilding, what do I
do?
L50[12:20:34]
<Michiyo> I
swear, you asked this *exact* same question yesterday, and were
given an answer..
L51[12:20:48]
<!
LittleTimmy52 !> that was serialization
L52[12:20:53]
<!
LittleTimmy52 !> this is file reading
L53[12:21:21]
<Michiyo>
`I got a question, i have a program and it needs to read files for
part of its function, when I get to a particuarly large file a few
thousand lines long it gives me either a too long without yeild
error, or on occasion not enough memory`
L54[12:21:52]
<Michiyo>
Literally, exactly, the same situation. You have to read the file
in chunks, and you have to yield.
L55[12:22:04]
<!
LittleTimmy52 !> ok then
L56[12:22:05]
<redstoneparkour> well assuming your
decompress function has stayed mostly the same it first iterates
over every line, making an entry in some table and then iterates
over that table again
L58[12:24:44]
<redstoneparkour> yes but you can do
better
L59[12:25:30]
<redstoneparkour> you read in chunks and
save them for later, meaning you have to store every chunk of the
file in memory, meaning you store the entire file in memory
L60[12:27:59]
<!
LittleTimmy52 !> so what then read the line, do my
decompression write the line then move on to the next instead of
saving the whole thing to a table in the code?
L61[12:28:17]
<redstoneparkour> exactly
L62[12:28:32]
<!
LittleTimmy52 !> ok, thanks, ill do that instead
L63[12:38:19]
<Forecaster> %sip
L64[12:38:20] <MichiBot> You drink a silent
bavarium potion (New!). Forecaster hears a train whistle in the
distance.
L65[12:40:50]
<Vaur>
%sip
L66[12:40:51] <MichiBot> You drink an
endless red potion (New!). Vaur's favourite cup is now upside
down.
L67[12:46:31]
<!
LittleTimmy52 !> I re did it , but I ran into a new snag, the
files that I decompress are in memory as in the whole file as a
table because thats whats compressed, so the yeild error is less
prevelent, but, still there for denser files. for now Ill just slap
it in a pcall and have it print the file that is not going to be
saved.
L68[13:03:56]
<redstoneparkour> i don't think you can
work around that limitation
L69[13:04:08]
<redstoneparkour> except for just having
more memory
L70[14:08:56]
<!
LittleTimmy52 !> is there a way to just override the too long
without yeilding error?
L71[14:09:26]
<!
LittleTimmy52 !> is there a way to tell the system too ban wait
until im done
L72[14:10:00]
<ar2000>
Nop. It's hard coded as a safety to avoid using too much resources
on a server. You can change the delay in the config, but it's not a
good idea
L73[14:10:28]
<ar2000>
You could end up with a case of : "but it work on my
machine"
L74[14:16:37]
<Michiyo>
And if you're on a server that has to be changed on the config
there, as the code never even executes on your client.
L76[16:12:10] ⇨
Joins: Andrey
(~Andrey@135.180.199.178.dynamic.wline.res.cust.swisscom.ch)
L77[16:13:46] ⇦
Quits: Andrey
(~Andrey@135.180.199.178.dynamic.wline.res.cust.swisscom.ch)
(Client Quit)
L78[16:18:47]
<spokr>
%tonk
L79[16:18:48] <MichiBot> Willikers! spokr!
You beat Vaur's previous record of 4 hours, 35 minutes and 7
seconds (By 33 minutes and 33 seconds)! I hope you're happy!
L80[16:18:49] <MichiBot> spokr's new record
is 5 hours, 8 minutes and 41 seconds! spokr also gained 0.0028
(0.00056 x 5) tonk points for stealing the tonk. Position #16. Need
0.013059 more points to pass SquidDev!
L81[16:26:06] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef20b352af1cc7de32241c23.dip0.t-ipconnect.de)
(Quit: Insert quantum chemistry joke here)
L82[17:27:00] <Amanda> %choose waves or
factorycat
L83[17:27:01] <MichiBot> Amanda: Huh,
what? "waves" I guess, now leave me alone I'm playing
Tetris.
L84[17:27:32] *
Amanda lays on MichiBot's Gameboy, demanding attention
L85[18:54:16] ⇦
Quits: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1) (Ping
timeout: 183 seconds)
L86[18:55:10] ⇨
Joins: lunar_sam (c44a7f2987@jabberfr.org)
L87[19:10:32] *
Amanda wanders back over to elfi, headbutts her to show affection,
curls up around and passes out
L88[19:13:57] * Elfi
squeaks, petpets, curls up beside and zzz
L89[19:14:50] <Amanda> Night girls
L90[19:36:00] ⇦
Parts: lunar_sam (c44a7f2987@jabberfr.org) ())
L91[19:36:09] ⇨
Joins: lunar_sam
(c44a7f2987@2a00:c70:1:178:170:40:189:1)
L92[20:03:40] ⇦
Parts: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1)
())
L93[20:04:13] ⇨
Joins: lunar_sam (c44a7f2987@jabberfr.org)
L94[21:18:28]
<walksanator> !tonkout
L95[21:18:39]
<walksanator> %tonkout
L96[21:18:40] <MichiBot> I'm sorry
walksanator, you were not able to beat spokr's record of 5 hours,
8 minutes and 41 seconds this time. 4 hours, 59 minutes and 51
seconds were wasted! Missed by 8 minutes and 50 seconds!
L98[21:22:24]
<diamondcreeper_6> I have a Solar Panel of
Infinity that can generate enough RF to power as many machines as I
want to
L99[21:22:37]
<diamondcreeper_6> what happened
here?
L100[21:29:10]
<walksanator> check your power
cables
L101[21:29:14]
<walksanator> it may blip
L102[21:29:34]
<walksanator> or wait ... does that mod
exist industrial something (the one with a packet-based energy
system)
L103[21:30:54]
<diamondcreeper_6> >walksanator: or
wait ... does that mod exist industrial something (the one with a
packet-based e…
L104[21:30:55]
<diamondcreeper_6> Industrialcraft2?
L105[21:31:09]
<diamondcreeper_6> Industrial
Foregoing?
L106[21:31:16]
<walksanator> idk
L107[21:31:23]
<walksanator> some old tech mod didn't use
RF
L108[21:31:34]
<walksanator> and had it's own energy
system that was packet based
L109[21:31:52]
<diamondcreeper_6> >walksanator: check
your power cables
L110[21:31:52]
<diamondcreeper_6> what kind of power
cable are you trying to specify?
L111[21:32:34]
<diamondcreeper_6> because I mainly use
Heavy Aluminum Wires from Galacticraft to transmit power at a
extreme high rate
L112[21:32:56]
<walksanator> hmm
L113[21:33:01]
<walksanator> try watching the power
L114[21:33:06]
<walksanator> when you turn it on
L115[21:33:17]
<walksanator> because it *may* end up
consuming faster then you generate
L116[21:33:24]
<diamondcreeper_6> it aint
L117[21:33:43]
<diamondcreeper_6> my solar panel
generates 16 Million RF/t
L118[21:34:07]
<diamondcreeper_6> keeping millions of
machinery powered all day long
L119[21:34:09]
<walksanator> can your cables move 16
Mrf/t
L120[21:34:14]
<diamondcreeper_6> yes
L121[21:34:39]
<diamondcreeper_6> Heavy Aluminum Wires
were designed for that to each Tier 2 Machines from GC
L122[21:34:46]
<diamondcreeper_6> but can work with other
machines
L123[21:35:12]
<walksanator> eh just turn it on
again
L124[21:35:17]
<walksanator> and see if it happens
again
L125[21:35:25]
<diamondcreeper_6> its fixed
L126[21:35:53]
<diamondcreeper_6> I think its every time
I use time in a bottle on it then type shit in the PC it does
that
L127[21:36:13]
<diamondcreeper_6> thats the only thing I
can think of
L128[21:36:24]
<walksanator> bottle of ticking
L129[21:36:43]
<diamondcreeper_6> well its mainly called
"Time in a Bottle"
L130[21:37:11]
<diamondcreeper_6> its from
RandomThings
L131[22:47:20]
⇨ Joins: Hawk777
(~Hawk777@2607:c000:829b:6400:7baa:151a:b7ec:ee0f)
L132[23:39:31] ⇦
Quits: DBotThePony (~Thunderbi@31.220.170.28) (Ping timeout: 190
seconds)
L133[23:39:44]
⇨ Joins: DBotThePony (~Thunderbi@89.113.136.74)
L134[23:51:15]
⇨ Joins: DBotThePony1 (~Thunderbi@89.113.136.74)
L135[23:51:31] ⇦
Quits: DBotThePony (~Thunderbi@89.113.136.74) (Ping timeout: 190
seconds)
L136[23:51:32] ***
DBotThePony1 is now known as DBotThePony