I hereby claim:
- I am msp5382 on github.
- I am msp5382 (https://keybase.io/msp5382) on keybase.
- I have a public key ASABDxwiq0Z__j5pLGzbXkdOF0utzyBwgS2gU8IoIyKRrQo
To claim this, I am signing this object:
void setup(){ | |
pinMode(13,OUTPUT); | |
} | |
void loop(){ | |
digitalWrite(13,HIGH); | |
delay(250); | |
digitalWrite(13,LOW); | |
delay(500); | |
} |
<?php | |
header('Content-Type: text/html; charset=utf-8'); | |
?> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="shortcut icon" type="image/png" href="/logo.png"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
I hereby claim:
To claim this, I am signing this object:
import base64 | |
import uuid | |
import string | |
from random import randrange | |
import random | |
def random_char(y): | |
return ''.join(random.choice(string.ascii_letters) for x in range(y)) | |
code=input('Python code to be encrypt : ') |