Implementing end-to-end HTTPS encryption with CloudFlare for Google App Engine applications.
Register the root domain with Google Cloud Platform at the following:
// ==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== |
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
#!/usr/bin/python | |
import json | |
import urllib2 | |
import os.path | |
import plistlib | |
url = 'http://omahaproxy.appspot.com/all.json' | |
resp = urllib2.urlopen(url) | |