mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-21 08:26:29 -05:00
Added support for air-gapped operation. #11
This commit is contained in:
parent
cb8d301c7e
commit
80c2f90e38
5 changed files with 26 additions and 4 deletions
5
dist/bootstrap.min.css
vendored
Normal file
5
dist/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
7
dist/bootstrap.min.js
vendored
Normal file
7
dist/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4
dist/jquery.min.js
vendored
Normal file
4
dist/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
fonts/glyphicons-halflings-regular.woff2
Normal file
BIN
fonts/glyphicons-halflings-regular.woff2
Normal file
Binary file not shown.
14
index.html
14
index.html
|
@ -8,7 +8,7 @@
|
||||||
<title>Diceware: Create Secure Passwords You Can Actually Remember!</title>
|
<title>Diceware: Create Secure Passwords You Can Actually Remember!</title>
|
||||||
|
|
||||||
<!-- Bootstrap -->
|
<!-- Bootstrap -->
|
||||||
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
|
<link href="./dist/bootstrap.min.css" rel="stylesheet">
|
||||||
<link href="./starter-template.css" rel="stylesheet">
|
<link href="./starter-template.css" rel="stylesheet">
|
||||||
|
|
||||||
<!-- Our different dice faces. -->
|
<!-- Our different dice faces. -->
|
||||||
|
@ -265,8 +265,14 @@ used become more obscure, which makes them more difficult to remember, so I'm no
|
||||||
But for now, the functionality is there, if there is a desire for it.
|
But for now, the functionality is there, if there is a desire for it.
|
||||||
|
|
||||||
|
|
||||||
<h3>FAQ: Why did you change the wordlist?</h3>
|
<h3>FAQ: Is Air-gapped Operation Supported?</h3>
|
||||||
|
|
||||||
|
It is now! The entire project can be downloaded and executed on a machine that is not connected to the Internet.
|
||||||
|
I was able to pull this off due in part to uploading the code to an AWS S3 Bucket and then making that
|
||||||
|
content available via <a href="https://aws.amazon.com/cloudfront/">CloudFront</a>.
|
||||||
|
|
||||||
|
|
||||||
|
<h3>FAQ: Why did you change the wordlist?</h3>
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -299,9 +305,9 @@ Feel free to reach out to me if you have any comments, suggestions, or bug repor
|
||||||
|
|
||||||
|
|
||||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
<script src="./dist/jquery.min.js"></script>
|
||||||
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
<!-- Include all compiled plugins (below), or include individual files as needed -->
|
||||||
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
<script src="./dist/bootstrap.min.js"></script>
|
||||||
|
|
||||||
<script src="./dist/bundle.js"></script>
|
<script src="./dist/bundle.js"></script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue