Updated index.html

This commit is contained in:
David Dworken 2022-04-07 21:45:41 -07:00
parent f2e6de2eb3
commit fccc238b18
2 changed files with 7 additions and 5 deletions

View File

@ -137,7 +137,7 @@ func Search(db *gorm.DB, query string, limit int) ([]*HistoryEntry, error) {
field := splitToken[0]
val := splitToken[1]
// tx = tx.Where()
panic("TODO(ddworken): Use " + field + val)
panic("TODO(ddworken): Implement better searching using " + field + val)
} else if strings.HasPrefix(token, "-") {
panic("TODO(ddworken): Implement -foo as filtering out foo")
} else {

View File

@ -142,11 +142,13 @@
<div class="card">
<div class="card-header" id="headingOne">
<h2 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne"> Can I use this without syncing my bash history to the internet? </button>
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne"> Is this secure? </button>
</h2>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body"> Yes! The default is to use it in the offline mode where your shell history stays 100% local and never leaves your machine. Only if you opt-in will it be synced to your other machines with hishtory installed. </div>
<div class="card-body">
This is up to you to judge, but in my opinion: Yes! All data is end-to-end encrypted with a key that never leaves your computer(s). The code is OSS, so you can verify this, and the pre-built binaries are reproducibly built with the commit hash embedded in them for easy verification.
</div>
</div>
</div>
<div class="card">
@ -176,12 +178,12 @@
</h2>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordionExample">
<div class="card-body"> Made with ❤️ by <a href="https://daviddworken.com">David Dworken</a>. I'm a Security Engineer working at Google. I built this to solve a problem for myself, and wanted to share it with others who may find it useful. </div>
<div class="card-body"> Made with ❤️ by <a href="https://daviddworken.com">David Dworken</a>. I'm a Security Engineer who also enjoys creating software. I built this to solve a problem for myself, and wanted to share it with others who may find it useful. </div>
</div>
</div>
</div>
<hr class="divider my-4">
<p class="text-muted mb-5"> Feedback, thoughts, ideas, or other questions? Let us know </p>
<p class="text-muted mb-5"> Feedback, thoughts, ideas, or other questions? Let me know! </p>
</div>
</div>
<div class="row justify-content-center">