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
Name | MIMEType | Extension | Description | |
---|---|---|---|---|
aac | audio/aac | .aac | AAC audio file | |
abw | application/x-abiword | .abw | AbiWord document | |
arc | application/octet-stream | .arc | Archive document (multiple files embedded) | |
avi | video/x-msvideo | .avi | AVI: Audio Video Interleave | |
azw | application/vnd.amazon.ebook | .azw | Amazon Kindle eBook format | |
bin | application/octet-stream | .bin | Any kind of binary data | |
bz | application/x-bzip | .bz | BZip archive | |
bz2 | application/x-bzip2 | .bz2 | BZip2 archive | |
csh | application/x-csh | .csh | C-Shell script |
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
"devDependencies": { | |
"prettier": "^1.19.1" | |
}, | |
... | |
"scripts": { | |
... | |
"format": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|html|css|md)\"" | |
} | |
... | |
"prettier": { |
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
// Extracted from http://www.geekwisdom.com/js/passwordmeter.js | |
// See also: http://www.passwordmeter.com | |
/* ************************************************************ | |
Created: 20060120 | |
Author: Steve Moitozo <god at zilla dot us> -- geekwisdom.com | |
Description: This is a quick and dirty password quality meter | |
written in JavaScript so that the password does | |
not pass over the network. | |
License: MIT License (see below) |
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> | |
<head> | |
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><title>Dead Centre</title> | |
<style type="text/css" media="screen"> | |
<!-- | |
body { | |
color: white; | |
background-color: #003; | |
margin: 0px | |
} |