Skip to content

Instantly share code, notes, and snippets.

View alexcroox's full-sized avatar
🙈
code is my own and does not reflect the quality my employer expects

Alex alexcroox

🙈
code is my own and does not reflect the quality my employer expects
View GitHub Profile
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-3.429666677, 58.58262203],
export let Capacitor
export let Plugins
export let CameraResultType
export let CameraSource
export let StatusBarStyle
export let HapticsImpactStyle
export let platform = 'web'
export let isNativeApp = false
// This is an abstraction for IE11 / iOS 9 which do not support Proxy which
@alexcroox
alexcroox / Glacier DB backups
Last active July 23, 2017 18:05
Automated DB Backups to AWS Glacier
#!/usr/bin/env python
import sys
from datetime import datetime
import subprocess
DB_LOGIN = 'root'
DB_PASSWD = ''
VAULT_NAME = 'r3-backup'
HOSTNAME = 'Titanmods'