Skip to content

Instantly share code, notes, and snippets.

@kopertop
kopertop / hover-export.js
Last active October 3, 2017 14:46
DNS zone file
// Hover.com "Zone file import/export" has been *Planned* since 2011
// https://help.hover.com/entries/471066-Zone-file-import-export
// Here's a brittle approximation of export.
//
// This is a modified version of the original hover-export.js to allow it to be used by a normal person (non-developer)
//
// 1. Add the following Bookmarklet to Chrome
// 2. login to your account: https://www.hover.com/domains
// 3. Go to the domain you want to export
// 4. Click on the HoverDump JS Bookmark
@kopertop
kopertop / add_users.py
Created April 18, 2012 16:01 — forked from imlucas/add_users.py
Using Amazon Cloudsearch with Python and Boto
from cloudsearch import connect_cloudsearch, get_document_service
endpoint = 'paste your doc service endpoint here'
service = get_document_service(endpoint=endpoint) # Get a new instance of cloudsearch.DocumentServiceConnection
# Presumably get some users from your db of choice.
users = [
{
'id': 1,