Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
This can reduce files to ~15% of their size (2.3M to 345K, in one case) with no obvious degradation of quality.
ghostscript -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/printer -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf
Other options for PDFSETTINGS:
Download, unzip and drag to your Applications directory.
https://www.iterm2.com/downloads.html
| server { | |
| listen 80 default_server; | |
| server_name domain.tld; | |
| access_log /srv/www/domain.tld/logs/access.log; | |
| error_log /srv/www/domain.tld/logs/error.log; | |
| root /srv/www/domain.tld/public; | |
| index index.php index.html index.htm; | |
| client_max_body_size 20M; |
| # How to echobot with XMPP, BOSH, and Strophe | |
| 1. Setup ejabberd(http://www.ejabberd.im/) server and setup account [email protected] | |
| NOTE: localhost should be enough. If you setup something else, make sure you add it at /etc/hosts like this | |
| #/etc/hosts | |
| 127.0.0.1 localhost.local | |
| NOTE: Also download Psi(http://psi-im.org/), and make sure you can connect to your ejabberd server. | |
| 2. Download strophe(http://code.stanziq.com/strophe/) and place it (eg: /Users/makoto/work/sample/strophejs-1.0) |
| #! bin bash | |
| #This script installs a ejabberd on centos7 | |
| echo 'Updating packages...' | |
| sudo yum update -y | |
| echo 'Install wget' | |
| sudo yum install wget -y | |
| echo 'Download EPEL' |
| { | |
| "name": "file-upload", | |
| "version": "1.0.0", | |
| "description": "File Upload test case", | |
| "main": "server.js", | |
| "dependencies": { | |
| "hapi": "^8.0.0-rc8", | |
| "joi": "^5.0.2" | |
| }, | |
| "devDependencies": { |