Skip to content

Instantly share code, notes, and snippets.

@jagregory
jagregory / kapacitor.conf.toml
Created February 17, 2017 00:46
Kapacitor chart generated config
View kapacitor.conf.toml
data_dir = "/var/lib/kapacitor"
default-retention-policy = ""
hostname = "localhost"
skip-config-overrides = false
[[influx]]
default = true
disable-subscriptions = false
enabled = true
http-port = 0
View gist:9c482074644f194456b2be5e5d441a1c
### Keybase proof
I hereby claim:
* I am jagregory on github.
* I am jagregory (https://keybase.io/jagregory) on keybase.
* I have a public key ASCT_URSYIVBOt_t39fImDTV5QPP4NK0A2HNp2iLpJ8fLQo
To claim this, I am signing this object:
@jagregory
jagregory / hook-dns-01-lets-encrypt-route53.py
Created August 8, 2016 01:58
Python 3 script to use as a hook for the letsencrypt.sh client
View hook-dns-01-lets-encrypt-route53.py
#!/usr/bin/env python3
# How to use:
#
# LE_HOSTED_ZONE=XXXXXX LE_AWS_PROFILE=dns-access ./letsencrypt.sh --cron --domain example.org --challenge dns-01 --hook /tmp/hook-dns-01-lets-encrypt-route53.py
#
# More info about letsencrypt.sh: https://github.com/lukas2511/letsencrypt.sh/wiki/Examples-for-DNS-01-hooks
# Using AWS Profiles: http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html#cli-multiple-profiles
# Obtaining your Hosted Zone ID from Route 53: http://docs.aws.amazon.com/cli/latest/reference/route53/list-hosted-zones-by-name.html
View gist:34bbacb51234b2bd3537
newtype Degree = Degree Float
newtype Radian = Radian Float
toRad :: Degree -> Radian
toRad (Degree deg) = Radian (deg * pi / 180)
-- this works
new1 = toRad (Degree 90.0)
-- this doesn't work
View parser.go
package parser
import "database/sql"
type Row struct {
MenuId int
Menu sql.NullString
Submenu sql.NullString
Item sql.NullString
Parent int
View gist:7034826
var projections = Object.keys(serverData)
.map(function(k) {
return serverData[k].totals.map(function(t, i) {
var row = { y: i + 1 }
row[serverData[k].commissionStructure] = t.total.value
return row
})
})
var result = projections[0]
@jagregory
jagregory / gist:6605911
Last active December 23, 2015 08:09
Linux vs. OSX Dir["*.rb"] implicit ordering.
View gist:6605911

Linux

  • links.rb
  • update_error.rb
  • response.rb
  • parse.rb
  • http.rb
  • currency.rb
  • version.rb
View gist:6575657
<!-- Begin MailChimp Signup Form -->
<link href="//cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<div id="mc_embed_signup">
<form action="http://blahblah" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
@jagregory
jagregory / wikibands.go
Last active December 19, 2015 10:49
Parsing wikipedia dumps in Go
View wikibands.go
package main
import (
"compress/bzip2"
"encoding/xml"
"fmt"
"io"
"log"
"os"
"strings"
@jagregory
jagregory / UIView+Corners.h
Created January 22, 2013 10:54
Category to add CSS border-radius style corner radii, where you can specify which corners to round.
View UIView+Corners.h
@interface UIView(Corners)
- (void)cornerRadius:(float)radius forCorners:(UIRectCorner)corners;
@end