Skip to content

Instantly share code, notes, and snippets.

View senderle's full-sized avatar

Jonathan Scott Enderle senderle

View GitHub Profile
@senderle
senderle / textanalysis.md
Last active October 31, 2017 16:08
Links to text analysis materials.
@senderle
senderle / simplex-projection.py
Created July 28, 2018 12:12
Projecting the 3-simplex onto the sphere.
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure(figsize=(21, 18))
ax = fig.add_subplot(111, projection='3d')
u_c = np.linspace(0, np.pi / 2, 100)
v_c = np.linspace(0, np.pi / 2, 100)
x_c = 1 * np.outer(np.cos(u_c),
@senderle
senderle / simplex-projection-2.py
Created July 28, 2018 19:32
Projecting the 3-simplex onto the sphere, with planes of projection.
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure(figsize=(21, 18))
ax = fig.add_subplot(111, projection='3d')
u_c = np.linspace(0, np.pi / 2, 100)
v_c = np.linspace(0, np.pi / 2, 100)
x_c = 1 * np.outer(np.cos(u_c),
{"nodes":[{"name":"Python"},
{"name":"JavaScript"},
{"name":"PHP"},
{"name":"Django"},
{"name":"Omeka"},
{"name":"Dev 1"},
{"name":"Dev 2"}],
"links":[{"source":3,"target":0,"value":60},
{"source":3,"target":1,"value":40},
{"source":4,"target":2,"value":80},
FROM senderle/pystgis:django-base
# Requirements are installed here to ensure they will be cached.
COPY ./requirements /requirements
RUN pip install -r /requirements/local.txt
COPY ./compose/production/django/entrypoint /entrypoint
RUN sed -i 's/\r$//g' /entrypoint
RUN chmod +x /entrypoint
@senderle
senderle / sample-test.txt
Created January 16, 2020 14:59
A demo implementation of a faster 3CosAdd test
album albums
application applications
area areas
car cars
college colleges
council councils
customer customers
day days
death deaths
department departments
@senderle
senderle / hand-modify-pdf.md
Created September 23, 2020 15:03
So you want to modify the text of a PDF by hand

So you want to modify the text of a PDF by hand...

If you, like me, resent every dollar spent on commercial PDF tools, you might want to know how to change the text content of a PDF without having to pay for Adobe Acrobat or another PDF tool. I didn't see an obvious open-source tool that lets you dig into PDF internals, but I did discover a few useful facts about how PDFs are structured that I think may prove useful to others (or myself) in the future. They are recorded here. They are surely not universally applicable --
the PDF standard is truly Byzantine -- but they worked for my case.