This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zueira = True | |
while (zueira): | |
if(1 == 2): | |
zueira = False | |
print("Zueira!") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var zueira = true; | |
while (zueira){ | |
if (1 == 2) { | |
zueira = false; | |
} | |
alert("Zueira!"); | |
} | |
// the zueira never ends! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
title The zueira never ends! | |
:START | |
set zueira=true | |
if %zueira% == true goto ZUEIRA | |
else goto FIM | |
:ZUEIRA | |
echo Zueira! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
screen skipbutton: | |
#o nome da SCREEN é você que escolhe, mas lembre-se de chamar o nome certo depois# | |
modal True #previne a interação do mouse e outras teclas# | |
key "K_h" action Hide("nome_de_screen_inexistente") #previne que a SCREEN seja desativada# | |
key "K_f" action Hide("nome_de_screen_inexistente") #previne que seja ativado/desativado o modo fullscreen# | |
key "mouseup_2" action Hide("nome_de_screen_inexistente") #previne que a SCREEN seja desativada# | |
add ui.timer(movieTime, ui.jumps("skipmovie")) #alterar "movieTime" para o tempo em segundos (diretamente ou atribuindo um valor float na variável)# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Script de zeramento - ânder developemente | |
* Problema do fuso!! | |
* Hora atual: 02:56 dia 21 | |
* Hora weebly: 10:56pm dia 20 | |
*/ | |
/* Executar no seguinte url | |
* | |
* http://www.weebly.com/weebly/viewFormData.php?ucfid=823700487970626857&site_id=548916030600246248&user_id=13019989 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Duração do Ultimo Contador | |
// @namespace zerem_o_contador | |
// @description Obtem duração do último contador | |
// @version 1 | |
// @grant Aasdasdsaasd | |
// ==/UserScript== | |
/* Script de zeramento - ânder developemente */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* > MITHYBOARD SCRIPT | |
* > VERSION: 1.0 | |
* > BUILD: 0531-02 | |
* > ALTERAÇÕES: | |
> | |
> | |
* | |
* | |
>snippets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var body = qS('body'); | |
body.onmousedown = function(mouse){ | |
if (mouse.button === 2) { | |
alert("Você não pode fazer isso aqui, rapá!"); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// try simples | |
try{ | |
System.out.print(coisa); // essa variavel 'coisa' não foi criada, então vai dar erro | |
}catch(Exception errinho){ | |
System.out.print(errinho); // o argumento 'errinho' vai mostrar na tela o erro do 'try' | |
} | |
// continua o programa... | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// exemplo switch -> case | |
switch(mesNumero){ | |
case '1': var mes = 'Janeiro'; | |
break; | |
case '2': var mes = 'Fevereiro'; | |
break; | |
} |
OlderNewer