This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
rc=0 | |
pdf2swf -qq -s transparent "$1" -o /tmp/temp.swf | |
cat < /tmp/temp.swf || rc=1 | |
rm -f /tmp/temp.swf | |
exit $rc |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import os | |
import re | |
from glob import glob | |
import logging | |
from lxml import etree |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(reshape2) | |
library(plyr) | |
library(dplyr) | |
library(RCurl) | |
library(RJSONIO) | |
library(stringr) | |
library(pander) | |
library(RColorBrewer) | |
library(rMaps) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import sys | |
import argparse | |
import logging | |
from urllib.parse import urlencode | |
from urllib.request import urlopen, Request | |
from lxml import etree |
NewerOlder