Open-source text corpora from the Perseus Project.
English translations of Plato (from above).
Download page for AntConc.
Quickstart guide for the Topic Modeling Tool.
Open-source text corpora from the Perseus Project.
English translations of Plato (from above).
Download page for AntConc.
Quickstart guide for the Topic Modeling Tool.
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), |
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 |
album albums | |
application applications | |
area areas | |
car cars | |
college colleges | |
council councils | |
customer customers | |
day days | |
death deaths | |
department departments |
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.