Skip to content

Instantly share code, notes, and snippets.

View kmontenegro's full-sized avatar

Ken Montenegro kmontenegro

View GitHub Profile
@DmitryMiroshnichenko
DmitryMiroshnichenko / installOpenVbx.sh
Last active July 15, 2017 19:16 — forked from dwelch2344/installOpenVbx.sh
A simple install script to setup OpenVbx on an Debian for Google Compute Engine
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi
export DBNAME="openvbxexmpl"
export DBUSER="openvbx"
export DBPASS="openVbxSecretPass"
@grugq
grugq / gist:03167bed45e774551155
Last active April 6, 2024 10:12
operational pgp - draft

Operational PGP

This is a guide on how to email securely.

There are many guides on how to install and use PGP to encrypt email. This is not one of them. This is a guide on secure communication using email with PGP encryption. If you are not familiar with PGP, please read another guide first. If you are comfortable using PGP to encrypt and decrypt emails, this guide will raise your security to the next level.

@darktable
darktable / app.yaml
Created March 16, 2011 19:10
GAE: App.yaml designed for serving a static site on Google App Engine (Python). Copy your static html and files into a folder called "static" next to app.yaml. Contains a bunch of mimetype declarations from html5boilerplate's .htaccess. May not be neces
application: you-app-name-here
version: 1
runtime: python
api_version: 1
default_expiration: "30d"
handlers:
- url: /(.*\.(appcache|manifest))
mime_type: text/cache-manifest