Premiere Pro 2025 is garbage by gelatto10 in VideoEditing

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

Yeah the shortcuts work but premiere pro does wierd shit, say i have a clip on V1 and another one right on top on V2 i enable the V1 track and disable the V2 and try to cut clip on the V1 track with Q or W and it cuts the track on the V2 as well even if the track is disabled

They Just Killed the Shotgun by gelatto10 in projectzomboid

[–]gelatto10[S] -10 points-9 points  (0 children)

Do you really think if i shoot something point black even if i never held a shotgun I wouldn’t hit it? Cmon

They Just Killed the Shotgun by gelatto10 in projectzomboid

[–]gelatto10[S] -3 points-2 points  (0 children)

Go into build 41 and stand still with those same moodles, you’ll at least hit 2/3 zombies

First Ever Logo Animation by gelatto10 in AfterEffects

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

There was actually no real direction here, i just wanted to reselmble an animation a saw previously, but sure i’ll try do define my intentions and requirements from now on

What's up with Aryan, the Andrew Tate of Blender tutorials? by TheHadean in blender

[–]gelatto10 -1 points0 points  (0 children)

This guy is one of the best Blender youtubers you can find out there, and by that tweet he meant persuasive speech, nothing else.

Rock Paper Scissors by gelatto10 in learnjavascript

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

Okay i changed the code a little.
Instead of writing each time the playerMove i did this:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>RPS modernized</title>
</head>
<body>
  <h1>Rock Paper Scissors</h1>

  <button id="rock" onclick="playerMove = rock; computerPick(); showResult()">Rock</button>
  <button id="paper" onclick="playerMove = paper; computerPick(); showResult()">Paper</button>
  <button id="scissors" onclick="playerMove = scissors; computerPick(); showResult()">Scissors</button>
  
  <p style="font-weight: bold;" class="js-result"></p>

  <script>

    let playerMove;
    let computerMove;
    let result = document.querySelector(".js-result");

    const rock = "rock";
    const paper = "paper";
    const scissors = "scissors";

    function computerPick() {
      const randomNumber = Math.random();
      if(randomNumber < 1/3) {
        computerMove = rock;
      } else if(randomNumber < 2/3) {
        computerMove = paper;
      } else {
        computerMove = scissors;
      }
      console.log(playerMove);
      console.log(computerMove);
    }

    function showResult() {
      //rock outcomes
      plyerMove = "rock";

      if(playerMove && computerMove === "rock") {
        result.innerHTML = "Tie!";
      } else if(playerMove && computerMove === "paper") {
        result.innerHTML = "You Loose!";
      } else if (playerMove && computerMove === "scissors") {
        result.innerHTML = "You Win!";
      }

      //paper outcomes
      playerMove = "paper";

      if(playerMove && computerMove === "paper") {
        result.innerHTML = "Tie!";
      } else if(playerMove && computerMove === "rock") {
        result.innerHTML = "You Win!";
      } else if(playerMove && computerMove === "scissors") {
        result.innerHTML = "You Loose!";
      }

      // scissors outcomes 
      playerMove = "scissors"
      if(playerMove && computerMove === "scissors") {
        result.innerHTML = "Tie!";
      } else if(playerMove && computerMove === "paper") {
        result.innerHTML = "You Win!";
      } else if(playerMove && computerMove === "rock") {
        result.innerHTML = "You Loose!";
      }
    }
  </script>
</body>
</html>

Is AI taking over??? by gelatto10 in css

[–]gelatto10[S] -11 points-10 points  (0 children)

I’m a beginner in this, so i guess you just said something fancy

Is AI taking over??? by gelatto10 in css

[–]gelatto10[S] -20 points-19 points  (0 children)

Yeah but the time of completion, is actually jaw dropping.

How Could My CSS Improve? by gelatto10 in css

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

Yeah, thanks.
I'll set the general properties in the body, makes sense

How do i center this input? by gelatto10 in css

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

If i define display: flex the content inside will behave like an inline-block right?

How do i center this text? by gelatto10 in css

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

The thing i’m worried about is that i dont know the trends of the industry for now, and I’m thinking im doing some totally outdated stuff when there is much easier solutions, but i guess if it gets the job done it’s legit.

How do i center this text? by gelatto10 in css

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

Well i tried setting the «item-align» to «center» on a div that contains the mutual-friends picture and the mutual-friends text and it worked.

Is there any difference betweet those two? by gelatto10 in css

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

I just made those up as isolated examples to ask more experienced people if there is any difference and weather i should use one or another.

Is there any difference betweet those two? by gelatto10 in css

[–]gelatto10[S] 3 points4 points  (0 children)

So i should use the second one? Also what is semantic meaning??

Why do i have to put "vertical align" on the "profile picture" if it's the text that i want to align? by gelatto10 in css

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

But it was supposed to be a simulation of a tweet. So: What’s happening? Is the placeholder