Ref: https://stackoverflow.com/questions/2507766/merge-convert-multiple-pdf-files-into-one-pdf
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -sOutputFile=merged.pdf mine1.pdf mine2.pdf
Ref: https://stackoverflow.com/questions/2507766/merge-convert-multiple-pdf-files-into-one-pdf
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -sOutputFile=merged.pdf mine1.pdf mine2.pdf
by Tatiana Mac
Last updated 14 April 2021
As speaking comes with immense privilege, I have crafted a speaker rider to set expectations and boundaries around my engagement. I am grateful to all the conference organisers who have brilliantly hosted me. I would love to continue to exercise this privilege to speak at conferences, and use this privilege to make the landscape more accessible and beneficial to tech's most historically excluded and marginalised communities.
😫 I provide a lot of explanations for those of you who never had to consider these things. Most thoughtful conferences I've attended check most of these boxes intrinsically, particularly when conference runners are experienced speakers. They get it.
If you're looking for a fix, see fork https://gist.github.com/p3g4asus/597050997e01f8fd1fcf473fe6545a4f
It works around this by using youtube-dl, since the lua http interface for VLC is not expressive enough to create a proper fix.
from pathlib import Path | |
import jinja2 | |
import yaml | |
from conda.models.match_spec import MatchSpec | |
import networkx as nx | |
# import matplotlib.pyplot as plt | |
import os, random, time, json | |
import workerpool | |
NO_BUILD_LOCAL_PKGS = True |
# See https://www.anaconda.com/understanding-and-improving-condas-performance/ for more info. | |
# help debug channel issues | |
show_channel_urls: true | |
# pip will always be installed with python | |
add_pip_as_python_dependency: true | |
# strict priority and conda-forge at the top will ensure | |
# that all of your packages will be from conda-forge unless they only exist on defaults |
# Go to https://developer.github.com/v4/explorer/ and enter the graphql query with the query veriable: | |
# {"queryString": "your-githubuser-name"} | |
cat results.json | | |
jq '.data.user.repositories.edges[] | { Count: .node.collaborators.totalCount, Repo: .node.name} | select(.Count > 2)' |