Skip to content

Instantly share code, notes, and snippets.

View maxtheaxe's full-sized avatar

Max Perrello maxtheaxe

View GitHub Profile
@patmigliaccio
patmigliaccio / install-cf-gae-ssl.md
Last active November 4, 2024 13:51
Configuring Cloudflare SSL/TLS certificates on Google App Engine

Configuring Cloudflare SSL/TLS on Google App Engine

Implementing end-to-end HTTPS encryption with CloudFlare for Google App Engine applications.

Google App Engine - Custom Domains

Add Domains

Register the root domain with Google Cloud Platform at the following:

@exp111
exp111 / scdsc.user.js
Last active January 14, 2024 07:38
Steam Collection Download Size Calculator
// ==UserScript==
// @name Steam Collection Download Size Calculator
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Calculates the download size in mb
// @author Exp
// @match http://steamcommunity.com/sharedfiles/filedetails/?id=*
// @match https://steamcommunity.com/sharedfiles/filedetails/?id=*
// @grant none
// ==/UserScript==
@nicolasdao
nicolasdao / open_source_licenses.md
Last active December 18, 2024 18:46
What you need to know to choose an open source license.
@LewisLebentz
LewisLebentz / chrome-latest-ea.py
Last active December 12, 2021 05:52
Python script to get the latest version number of Chrome from Google and compare it to the version of Chrome installed on the local Mac. Then updates an Extension Attribute in Jamf Pro with either 'Latest' or 'Old'.
#!/usr/bin/python
import json
import urllib2
import os.path
import plistlib
url = 'http://omahaproxy.appspot.com/all.json'
resp = urllib2.urlopen(url)