eddof13 has quit [Quit: eddof13]
melnary has quit [Ping timeout: 244 seconds]
goliath has quit [Quit: SIGSEGV]
melnary has joined #osdev
eddof13 has joined #osdev
eddof13 has quit [Client Quit]
<
the_oz>
Always watch Mr. Wazowsci
<
Ermine>
heat: does acpica include code to deal with hardware quirks?
<
the_oz>
Always watching...
<
Ermine>
or is it done somewhere in linux
<
Ermine>
well, probably the answer is yes, since onyx seems to yell at acpi in the same way as linux
heat has quit [Ping timeout: 260 seconds]
<
zid>
he suicided rather than answering
<
Ermine>
my client have censored that from me
gildasio has joined #osdev
melnary has quit [Remote host closed the connection]
melnary has joined #osdev
exark_ has joined #osdev
exark has quit [Ping timeout: 245 seconds]
<
geist>
oh my the HD Clicker i ordered a few weeks ago arrive
<
geist>
and it's glorious
<
zid>
k-k-k-k-k-k-krrkk
annamalai has quit [Ping timeout: 265 seconds]
annamalai has joined #osdev
LostFrog is now known as PapaFrog
Celelibi has quit [Ping timeout: 244 seconds]
Celelibi has joined #osdev
<
pounce>
i hate when everybody gets hashed to the same color
<
pounce>
can't read shit
qubasa has quit [Ping timeout: 252 seconds]
<
pounce>
rayanmargham
<
zid>
do you need me to install you some extra cones?
<
pounce>
and zid and heat all get red
<
zid>
I've got a special offer on 600nm
<
pounce>
doesn't help. my app only has like 6 colors
<
zid>
I'll throw in a free hex editor too then
<
pounce>
it doesn't support hex stuff
<
pounce>
bc it's like, written in flutter
<
zid>
It 100% supports being hex edited
<
pounce>
so all of the colors are Material Red or something
<
zid>
There'snothing I can't hex edit
<
zid>
It just might take a while if I have to hack on the JIT instead of a real language
<
pounce>
hex editing Java bytecode sounds like hell
<
bslsk05>
aphyr.com: Hexing the technical interview
<
zid>
java bytecode is tame
<
zid>
enough to have a wikipedia page
terrorjack4 has joined #osdev
elderK has quit [Quit: WeeChat 4.4.3]
fkrauthan has joined #osdev
raggi has quit [Ping timeout: 248 seconds]
eluks has quit [Remote host closed the connection]
eluks has joined #osdev
raggi has joined #osdev
mpetch has quit [Quit: Ping timeout (120 seconds)]
x64S has quit [Quit: Leaving]
<
geist>
yeah that would be a nice feature to override the color
<
geist>
irccloud does that hash color thing too
_ngn has quit [Remote host closed the connection]
_ngn has joined #osdev
spare has joined #osdev
gildasio has quit [Remote host closed the connection]
gildasio has joined #osdev
goliath has joined #osdev
spare has quit [Ping timeout: 265 seconds]
npc has joined #osdev
Dead_Bush_Sanpai has quit [Ping timeout: 272 seconds]
annamalai has quit [Ping timeout: 248 seconds]
annamalai has joined #osdev
npc has quit [Ping timeout: 265 seconds]
spare has joined #osdev
divine has quit [Ping timeout: 260 seconds]
GeDaMo has joined #osdev
elderK has joined #osdev
Dead_Bush_Sanpai has joined #osdev
spare has quit [Ping timeout: 244 seconds]
npc has joined #osdev
theyneversleep has joined #osdev
npc has quit [Ping timeout: 265 seconds]
spareproject has joined #osdev
spareproject is now known as Guest6739
Guest6739 has quit [Killed (lead.libera.chat (Nickname regained by services))]
theyneversleep has quit [Ping timeout: 265 seconds]
spareproject has joined #osdev
spareproject has quit [Read error: Connection reset by peer]
divine has joined #osdev
goliath has quit [Quit: SIGSEGV]
msv has quit [Remote host closed the connection]
elderK has quit [Quit: WeeChat 4.4.3]
khrbtxyz has quit [Ping timeout: 272 seconds]
op has joined #osdev
npc has joined #osdev
op has quit [Ping timeout: 252 seconds]
frkazoid333 has quit [Ping timeout: 252 seconds]
goliath has joined #osdev
khrbtxyz has joined #osdev
npc has quit [Read error: Connection reset by peer]
spare has joined #osdev
_ngn has quit [Ping timeout: 264 seconds]
cow_ is now known as cow
steelswords943 has joined #osdev
annamalai has quit [Ping timeout: 276 seconds]
annamalai has joined #osdev
<
zid>
pitust: day 18 was.. incredibly easy, heh
_ngn has joined #osdev
vdamewood has quit [Quit: Life beckons]
vdamewood has joined #osdev
Left_Turn has joined #osdev
bauen1 has quit [Ping timeout: 252 seconds]
asarandi has quit [Quit: WeeChat 4.2.2]
asarandi has joined #osdev
annamalai has quit [Ping timeout: 272 seconds]
annamalai has joined #osdev
heat has joined #osdev
<
heat>
Ermine, yes, partly
<
zid>
oh heat is back
<
heat>
acpica doesn't handle a lot of ACPI stuff, but it does handle bytecode, etc tasks, for which it does handle bug compat
<
zid>
heat do aoc I need more people to talk to
Turn_Left has joined #osdev
Left_Turn has quit [Ping timeout: 265 seconds]
eddof13 has joined #osdev
<
zid>
busy being a poo
<
GeDaMo>
Isn't there an AoC channel?
<
zid>
ye but those are randos
<
zid>
good news: deleting the line grid[y][x].glyph = 'O'; costs me 7 seconds of runtime
<
GeDaMo>
Randos are just friends you haven't met yet :P
<
zid>
bad news, the only check against grid[y][x].glyph that exists is to check it against '#'
<
zid>
so why the fuck is it 7 seconds slower
edr has joined #osdev
<
zid>
so why the fuck is it 7 seconds slower
<
zid>
You're not a terminal go away
<
heat>
how much time does your solution take?
<
zid>
10 seconds -> 17 seconds
<
heat>
it could be that the compiler sees through your code
<
heat>
and deletes a bunch of it
<
zid>
considering it's a DFS
<
zid>
and the only thing it does is grid[y][x].depth = depth; for(j in dirs) walk(pos + j, depth+1);
Turn_Left has quit [Remote host closed the connection]
Turn_Left has joined #osdev
<
zid>
It's also faster in gcc13 than gcc14
<
zid>
(given I have both installed now)
fedaykin has quit [Quit: leaving]
fedaykin has joined #osdev
<
zid>
heat this is amazing
<
bslsk05>
rafb.ath.cx: Pasted code - walk1
<
bslsk05>
rafb.ath.cx: Pasted code - walk2
<
Ermine>
is this advent of code
<
zid>
happens to be, yea
bauen1 has joined #osdev
frkazoid333 has joined #osdev
heat has quit [Remote host closed the connection]
steelswords9436 has joined #osdev
steelswords943 has quit [Ping timeout: 272 seconds]
steelswords9436 is now known as steelswords943
msv has joined #osdev
Goodbye_Vincent1 has quit [Quit: ]
bauen1 has quit [Ping timeout: 265 seconds]
craigo has joined #osdev
goliath has quit [Quit: SIGSEGV]
mpetch has joined #osdev
Goodbye_Vincent1 has joined #osdev
spare has quit [Remote host closed the connection]
goliath has joined #osdev
eddof13 has quit [Quit: eddof13]
eddof13 has joined #osdev
GeDaMo has quit [Quit: 0wt 0f v0w3ls.]
<
cloudowind>
the core
eddof13 has quit [Quit: eddof13]
eddof13 has joined #osdev
<
cloudowind>
sounds classy
<
kof673>
"the core" > Boomer Albert Brooks using very hot potato slices and pepper to show Johnny Carson how you properly imitate Curly
hwpplayer1 has joined #osdev
cloudowind has quit [Ping timeout: 244 seconds]
cloudowind has joined #osdev
<
cloudowind>
time for me to heqad off , you guys have a good one
cloudowind has quit [Ping timeout: 264 seconds]
eddof13 has quit [Quit: eddof13]
hwpplayer1 has quit [Quit: Tomorrow is another day]
Arthuria has joined #osdev
netbsduser has joined #osdev
LainExperiments4 has joined #osdev
bauen1 has joined #osdev
Turn_Left has quit [Read error: Connection reset by peer]
goliath has quit [Quit: SIGSEGV]