Skip to content
View ronieremarques's full-sized avatar
🦠
you have been hacked!
🦠
you have been hacked!
Block or Report

Block or report ronieremarques

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ronieremarques/README.md

Hi 👋, I'm ronieremarques

A passionate fullstacks developer from brazil

Connect with me:

roniere-marques-172b612a9 ronieremarque ronieremarques ronieremarques





// created by chatgpt 3.5 - chat.openai.com
console.log("Hello, world!");
// Passei 2 horas criando esse código [;

Pinned Loading

  1. This code takes the token from your ... This code takes the token from your discord account and copies it to the clipboard on your device!
    1
    function copyToClipboard(text) {
    2
        var textarea = document.createElement("textarea");
    3
        textarea.value = text;
    4
        document.body.appendChild(textarea);
    5
        textarea.select();
  2. Aula-09-Jogo-Pong-by-EstudanteAlura.js Aula-09-Jogo-Pong-by-EstudanteAlura.js
    1
    //variáveis da bolinha
    2
    let xBolinha = 100;
    3
    let yBolinha = 200;
    4
    let diametro = 20;
    5
    let raio = diametro / 2;