Skip to content

Instantly share code, notes, and snippets.

@dyoo
dyoo / letsencrypt-GAE.md
Created July 16, 2017 22:48
Set up HTTPS for Google App Engine using Let's Encrypt

Copied from https://www.jeffgodwyll.com/posts/2016/letsencrypt

Let’s Encrypt is a free, automated, and open certificate authority (CA), run for the public’s benefit. Let’s Encrypt is a service provided by the Internet Security Research Group (ISRG)

About Let's Encrypt

This post won't go into details as to what Let's Encrypt is about. We should probably read the FAQs if we want to learn more.

Until the Google App Engine Team fully automate the process of using Let's Encrypt on Google App Engine or even provide some sort of API to handle certs, we'll probably have to find ways of either automating the process just a little bit or stick to some other easier cert authority.

@dyoo
dyoo / fizzbuzz.rkt
Last active December 12, 2015 02:08 — forked from bradclawsie/fizzbuzz.rkt
#lang typed/racket
(define-type T (U String Integer))
(: fizzbuzz/1 : (Integer -> T))
(define (fizzbuzz/1 x)
(define mod3 (zero? (modulo x 3)))
(define mod5 (zero? (modulo x 5)))
(cond [(and mod3 mod5) "fizzbuzz"]
[mod3 "fizz"]