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 February 9, 2025 18:06
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:

@sanjujosh
sanjujosh / readme.md
Last active February 19, 2025 15:11
simple systemd service unit

Create the service unit

sudo touch /lib/systemd/system/sample.service
sudo chmod 664 /lib/systemd/system/sample.service

Reload the systemd

@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 April 20, 2025 18:30
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)