This file contains hidden or 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
curl "http://localhost/jkstatus" | |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> | |
<html><head> | |
<title>403 Forbidden</title> | |
</head><body> | |
<h1>Forbidden</h1> | |
<p>You don't have permission to access /jkstatus | |
on this server.</p> | |
</body></html> |
This file contains hidden or 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
#!/usr/bin/env bash | |
echo """ | |
################################################## | |
Verificação de varias chamadas a mesma funcao | |
""" | |
loopado='Sou mais rápido!' | |
function echoLoop (){ | |
for a in `seq 1024` | |
do |
This file contains hidden or 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
cat << EOF | |
Texto aqui | |
EOF |
This file contains hidden or 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
#!/usr/bin/env bash | |
# declarando variavel | |
buffer="Teste@#$$2#$"; | |
loops=10000 | |
# sendo claro | |
echo "Teste de performance entre ECHO, PRINTF e CAT" | |
echo "Armazendo variáveis" |
This file contains hidden or 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
#!/usr/bin/env bash | |
# declarando variavel | |
buffer=""; | |
# sendo claro | |
echo "Teste de performance entre ECHO, PRINTF e CAT" | |
echo "Armazendo variáveis" | |
# fazendo o processador tremer |
This file contains hidden or 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
000000 Officially Xerox | |
000001 SuperLAN-2U | |
000002 BBN (was internal usage only, no longer used) | |
000003 XEROX CORPORATION | |
000004 XEROX CORPORATION | |
000005 XEROX CORPORATION | |
000006 XEROX CORPORATION | |
000007 XEROX CORPORATION | |
000008 XEROX CORPORATION | |
000009 powerpipes? |
This file contains hidden or 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
<?php | |
$mail = $_POST['email']; | |
$email = filter_var($mail,FILTER_VALIDATE_EMAIL); | |
$name = $_POST['name']; | |
$txt = $_POST['message']; | |
// Segurança ao emails e tals | |
mail($mail,"$name | Novo LEAD! |❤️️",$txt) | |
?> |
This file contains hidden or 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
fetch( `https://api.telegram.org/bot540137695:AAFO9tHLngrkve3mHN7QHdzmWyJs_O8-x3k/sendMessage?chat_id=469669662&text=Hello%20World` ) | |
.then(function(resposta) { | |
return resposta.text() // Transformando a resposta em texto | |
.then(function(text) { | |
let t = JSON.parse(text); | |
let uhul = t.ok === false | |
? `Oops, infelizmente houve um erro` | |
: 'Mensagem enviada ^^'; | |
console.log(`${uhul}`); |
This file contains hidden or 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
window.scroll({ | |
top: 1000, // Captura a distancia do topo onde deseja ser rolado | |
left: 0,// Faz o mesmo do top mas em um ambito horizontal | |
behavior: 'smooth' // Aqui eh onde vem toda a magica, ele suporta duas opcoes, o `smooth` e o `normal` | |
}) |
This file contains hidden or 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
<html> | |
<body> | |
<style> | |
h1{ | |
/* Acho que você já conhece o background image, n? */ | |
background-image: url(https://media.giphy.com/media/JGQe5mxayVF04/giphy.gif); | |
/* Aqui entra a mágica! Olha isso, DEUSUSS */ | |
-webkit-background-clip: text; | |
/* Ah, eu só quero parecer certinho, mas esse text-fill-color pode ser muito bem substituido por color */ | |
-webkit-text-fill-color: transparent /* Pronto fí, como nós NAO QUEREMOS cor de fundo então, faremos ele trasparente né?! */ |