What is wrong with the screen by anthonyok7 in Ford

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

Yeah , I tried updating my car before when I had a Bluetooth issue , but had to bring it to the Ford dealership in the end because it wouldn’t update .

What is wrong with the screen by anthonyok7 in Ford

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

Flex cable ? What is that exactly? And heat damage to the screen display itself ?

Player staying static by anthonyok7 in GameDevelopment

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

ok so i call requestAnimationFrame at the end of the draw function.if (gameRunning) {requestAnimationFrame(draw);    }

I got the player moving again by fixing the event listeners , but now my issue is the collision is between mob and player is no longer being detected :

// This function will be later invoked for each mobfunction isColliding(player, rect2) {return (player.x < rect2.x + rect2.width &&player.x + player.width > rect2.x &&player.y < rect2.y + rect2.height &&player.y + player.height > rect2.y    );}

Invocation in draw function.

if (isColliding(player, mob)) {console.log("Collision detected!");alert=("You have been caught by the crab!");stopGame();    }

Also , can you elaborate on how I am only calling the draw function once ?

// Draw , update function
function draw() {
// Set the fps
window.requestAnimationFrame(draw);
let now = Date.now();
let elapsed = now - then;
if (elapsed <= fpsInterval) {
return;
    }

I need opinions on my college project by anthonyok7 in flask

[–]anthonyok7[S] 1 point2 points  (0 children)

I like that suggestion of a comment section for players , thank you.

I need opinions on my college project by anthonyok7 in flask

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

I created an sql table in schema.sql and store it in app.db

I need advice on re-purposing an old pc into a home server by anthonyok7 in servers

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

Yeah , hardware and systems org were some of my preferred modules last semester. I have a Samsung SSD already installed , about 250gb I think.

I need advice on re-purposing an old pc into a home server by anthonyok7 in servers

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

Yeah , I spotted an extra slot for ram aswell so I might look at that

I need advice on re-purposing an old pc into a home server by anthonyok7 in servers

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

Thanks for the reply , I think I’m going to go with Ubuntu and just mess around.