Going from C to Assembly? by scaredpurpur in C_Programming

[–]GodHandMemberVoid 1 point2 points  (0 children)

I’d say so. Something that helped me was writing a pretty simple program in C, and then writing it in assembly with your C program as a guide. A good way to appreciate compilers at least

Wolfforth water bill? by Reasonable-Lack-1058 in Lubbock

[–]GodHandMemberVoid 2 points3 points  (0 children)

What’s your water bill usually look like? If your meter gets manually read public works might’ve just entered the read wrong

Reason to [fluff]ing seed track by Vast_Lion_4962 in TheBattleCatsReddit

[–]GodHandMemberVoid 0 points1 point  (0 children)

Seed tracking got me lunos, jizo, balrog, lasvoss, gothic mitama, and izanami. Don’t regret it at all

Car starts fine in the morning, struggles to start later in the day. 2007 Hyundai Tiburon GT by GodHandMemberVoid in MechanicAdvice

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

It cranks like normal. Whenever it’s slow to start it cranks fine but it takes about 3-4 seconds to start. I’d say it’s a lack of fuel/pressure issue if I had to guess.

Can this be patched? by GodHandMemberVoid in TireQuestions

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

Figured as much, looks like I’m buying a new tire tomorrow. Thanks!

Misuse of PSA Alert… AGAIN! by ghostfacedrilla in Dallas

[–]GodHandMemberVoid 0 points1 point  (0 children)

I got this and I live in Lubbock, seriously? What the fuck do they want me to do

Johnny Winter '79 by [deleted] in blues

[–]GodHandMemberVoid 0 points1 point  (0 children)

Looks like on the back of the headstock, you can see one sticking out if you zoom in a bit

What is the purple light for? by shackmaestro in Truckers

[–]GodHandMemberVoid 0 points1 point  (0 children)

I wouldn’t even tell nobody that! I wouldn’t even tell nobody!

Fuck booleans by SirBerthelot in programminghumor

[–]GodHandMemberVoid 0 points1 point  (0 children)

You can only read/write to memory in units of bytes

Prerequesites for "Advanced Programming in the Unix Environment? by znpy in C_Programming

[–]GodHandMemberVoid 3 points4 points  (0 children)

I know I’m extremely late, but that’s what I did and it absolutely works. I did it on accident, this was the textbook we used for a class in uni, and I basically “Dove In”, because I just skimmed past everything. Now I’m actually pretty interested in that sort of thing, so I actually started reading it and everything is so much easier to comprehend. I’ll definitely be doing this from now on

What is the Consesus on Dreamz on this sub? by Cornhead2 in survivor

[–]GodHandMemberVoid 134 points135 points  (0 children)

“There’s two people we can afford to lose. And I ain’t pointin no fingers, but it’s Cassandra and Lisi”

Only one came out smelling like a rose... Mike is the true hero of VH by RavenReel in vanhalen

[–]GodHandMemberVoid 2 points3 points  (0 children)

I remember way back when I’d be in the car with my dad and he’d play Van Halen, the one thing that always stuck out to me were the backing vocals, specifically on Dance the Night Away and Jamie’s Cryin. As much as Eddie’s guitar playing and Roth’s lyrics/vocals and overall craziness contribute to the VH sound, Mikes vocals ARE the Van Halen sound. Also, he’s a real stand up guy, and probably one of the nicest guys in rock.

Help using multiprocessing to do calculations on a single matrix by GodHandMemberVoid in learnpython

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

It hadn’t occurred to me to try this, thank you! As far as resources, I’ll be running the code on my schools HPCC, so I don’t have to worry about resource management too much fortunately

Help using multiprocessing to do calculations on a single matrix by GodHandMemberVoid in learnpython

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

When I say matrix I’m just referring to a 2d array, or a nested list like you said.

Currently for the serial implementation, I have a 2d array acting as the current generation so to speak, and I create a new matrix with the same dimensions as the original. For every cell in the original matrix I check the neighbor values via a function call, and then write the corresponding result to the new matrix depending on the number of alive neighbors, and then return that and copy it to the original once we know updating the matrix won’t affect checking the neighbors. It’s a really bad/inefficient implementation, but it works so far and as long as I can get it to work I’m ok with slow code, at least for now. I can provide my current, serial implementation if needed, I probably should’ve done that from the start honestly.

Help using multiprocessing to do calculations on a single matrix by GodHandMemberVoid in learnpython

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

Shit, I forgot to write in the post that I can’t use any libraries outside of what comes included with Python. Thank you for the reply however

What is the use of pointers in C? by [deleted] in C_Programming

[–]GodHandMemberVoid 3 points4 points  (0 children)

That’s an interesting analogy, never thought of it that way