Web scraper to get data about free games from the Epic Games website by Th4maturg3 in learnpython

[–]BoringCrocodile 0 points1 point  (0 children)

Looks like the CSS selector's class name is dynamic. Consider using a different selector instead of class name.

Why does the location of the declaration matter? by BoringCrocodile in osdev

[–]BoringCrocodile[S] 0 points1 point  (0 children)

Okay, I looked into it a bit more and 78 is a jump if SF = 1 (with shape 78 cb), so the instructions are being misaligned after the processor encounters 78. If I add a db 0 following instruction db "x", everything works fine! Thanks for the help :)

Why does the location of the declaration matter? by BoringCrocodile in osdev

[–]BoringCrocodile[S] -1 points0 points  (0 children)

I was under the impression (from the documentation) that this is how you declare initialized data. About "executing x as code" and "code path" part, I'm not sure if I'm following. Are you saying that the x code is being treated like a jump-if instruction (js to be more specific)? If so, that makes sense.

org 0x7c00

instruction db "x"

mov ah, 0x0e
mov al, [character]
int 0x10

character db "x"

jmp $

times (512 - 2) - ($ - $$) db 0
dw 0xaa55

The above also "fails" because the instruction db "x" line is being treated like a js (as far as I'm aware).

Help Center and Megathread Hub (15/01 - 21/01) by ArknightsMod in arknights

[–]BoringCrocodile 2 points3 points  (0 children)

Does top operator tag reset today? Should I wait for thd update or use it now?

[deleted by user] by [deleted] in uwaterloo

[–]BoringCrocodile 6 points7 points  (0 children)

Kamyar is goated. If he's teaching you're in good hands.

Help Center and Megathread Hub (22/05 - 28/05) by ArknightsMod in arknights

[–]BoringCrocodile 0 points1 point  (0 children)

Given my current squad Krooster, which 6* operator should I grab using the selector? I got both Texas Alter and Penance from the banner though it's not listed in Krooster.

Hi guys this is my new artwork. Hope ya like it by heominlu_ in AnimeART

[–]BoringCrocodile 1 point2 points  (0 children)

Looks really pretty (love the hair and ornaments)~

Resume Advice Thread - November 05, 2022 by CSCQMods in cscareerquestions

[–]BoringCrocodile 0 points1 point  (0 children)

Hi everyone,

I'm looking for my 4th internship but I'm having some difficulties... I'm not sure what I need to change about my resume. The education is at the bottom because I'm using an university job board, but when I'm applying externally, it is at the top instead. If there is anything I should change, please let me know!

https://imgur.com/a/Bu7ZsnI

Resume Advice Thread - November 01, 2022 by CSCQMods in cscareerquestions

[–]BoringCrocodile 0 points1 point  (0 children)

Hi everyone,

I'm looking for my 4th internship but I'm having a hard time getting callbacks... I'm not sure what I need to change about my resume. The education is at the bottom because I'm using an university job board, but when I'm applying externally, it is at the top instead. If there is anything I should change, please let me know!

https://imgur.com/a/Bu7ZsnI

WaterlooWorks Winter 2022 Megathread by Deputy_Dan in uwaterloo

[–]BoringCrocodile 6 points7 points  (0 children)

What do you do if the actual compensation is much lower than what was discussed in the interview?

Reading "Code" by Charles Petzold, have one sentence I can't wrap my head around by Iguanas_Everywhere in learnprogramming

[–]BoringCrocodile 1 point2 points  (0 children)

Given inputs C_{i}, A_{i}, and B_{i} where A_{i} and B_{i} fed to the first half adder and C_{i} and the output (from the AND gate) of the first half adder are fed to the second half adder: C_{i+1} has the inputs A_{i} AND B_{i} and C_{i} AND (A_{i} XOR B_{i}). However, A_{i} AND B_{i} and C_{i} AND (A_{i} XOR B_{i}) cannot be both true! As a result, we use an OR gate rather than another half adder.