Skip to content

Instantly share code, notes, and snippets.

View adam-p's full-sized avatar

Adam Pritchard adam-p

View GitHub Profile
@adam-p
adam-p / Flat Adverbs List.md
Last active December 17, 2015 01:00
Flat Adverbs List: Not having been able to find a comprehensive list of flat adverbs, I decided to build my own
@adam-p
adam-p / app.yaml
Last active May 5, 2023 17:40 — forked from darktable/app.yaml
GAE: App.yaml designed for serving a static site on Google App Engine (Python). Copy your static html and files into a folder called "static" next to app.yaml. Contains a bunch of mimetype declarations from html5boilerplate's .htaccess. May not be neces
application: you-app-name-here
version: 1
runtime: python
api_version: 1
default_expiration: "30d"
handlers:
- url: /(.*\.(appcache|manifest))
mime_type: text/cache-manifest
@adam-p
adam-p / keybase.md
Created September 22, 2015 16:28
keybase.md

Keybase proof

I hereby claim:

  • I am adam-p on github.
  • I am adampritchard (https://keybase.io/adampritchard) on keybase.
  • I have a public key whose fingerprint is 9D4F A4F9 CD4A 4174 4178 F271 9B6E 13E8 B083 9B79

To claim this, I am signing this object:

@adam-p
adam-p / Tor-testssl.sh.md
Last active August 29, 2015 14:23
./testssl.sh --mx torproject.org

Output of ./testssl.sh --mx torproject.org, in text format and HTML format.

Output of checktls.com sender test.

2015-06-19

MS Office prefixed style properties

mso-ansi-font-size

Note: Office only

mso-ansi-font-size: large | larger | <length> | medium | <percentage> | small | smaller | x-large | x-small | xx-large | xx-small
@adam-p
adam-p / Local PR test and merge.md
Last active February 5, 2024 19:39
Testing a pull request, then merging locally; and avoiding TOCTOU

It's not immediately obvious how to pull down the code for a PR and test it locally. But it's pretty easy. (This assumes you have a remote for the main repo named upstream.)

Getting the PR code

  1. Make note of the PR number. For example, Rod's latest is PR #37: Psiphon-Labs/psiphon-tunnel-core#37

  2. Fetch the PR's pseudo-branch (or bookmark or rev pointer whatever the word is), and give it a local branch name. Here we'll name it pr37:

$ git fetch upstream pull/37/head:pr37
@adam-p
adam-p / README.md
Created October 1, 2014 13:50
Patching Python code at runtime

A rather dirty way to patch module code at runtime.

@adam-p
adam-p / github_issues_exporter.py
Last active June 15, 2017 18:17
Export open Github issues for offline use
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
pip install --upgrade PyGithub
TODO:
- Configurable output directory
- Output more issue info
- Better rendering
@adam-p
adam-p / Memory Leak Test Chrome Extension
Last active June 14, 2020 06:22
memory-leak-extension
Test extension to demonstrate possible memory leak in Chrome extension API.
Install it, open a bunch of tabs, open Chrome's task manager, let it run, watch memory usage increase.