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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<style> | |
.accordion { | |
border: 1px solid; | |
transition: height 1.4s ease; | |
} | |
.accordion .box { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<style> | |
#toolbar { | |
position: fixed; | |
top: 0; left: 0; | |
width: 100%; | |
height: 40%; |
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 python | |
import subprocess | |
import binascii | |
import sys | |
############################################################################### | |
## Contents: ################################################################## | |
############################################################################### | |
## endianFlip(a) : converts userpass from printed representation | |
## to how it actually is |
NewerOlder