Skip to content

Instantly share code, notes, and snippets.

View thomascys's full-sized avatar

Thomas Cys thomascys

View GitHub Profile
@thomascys
thomascys / merge-pdf-ghostscript.md
Created May 30, 2018 09:59 — forked from brenopolanski/merge-pdf-ghostscript.md
Merge multiple PDFs using Ghostscript

A simple Ghostscript command to merge two PDFs in a single file is shown below:

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combine.pdf -dBATCH 1.pdf 2.pdf

Install Ghostscript:

Type the command sudo apt-get install ghostscript to download and install the ghostscript package and all of the packages it depends on.

@thomascys
thomascys / embedded-file-viewer.md
Created January 24, 2018 10:03 — forked from tzmartin/embedded-file-viewer.md
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@thomascys
thomascys / xdebug-php.md
Created October 2, 2017 12:55 — forked from ankurk91/xdebug-mac.md
php xDebug on Ubuntu/Mac and phpStorm 2017

🪲 Install and Configure xDebug on Ubuntu/Mac and PhpStorm 🐘

  • Assuming that you have already installed php and apache
  • Install xDebug php extension
# Ubuntu 16.04, php 7.0
sudo apt-get install php-xdebug

# Ubuntu 14.04, php 5.6 
sudo apt-get install php5-xdebug
@thomascys
thomascys / wannacry_report.sh
Last active May 18, 2017 15:05
wannacry btc addr reporting
#!/bin/bash
# WannaCry BTC address report script
# 5/12/17 -- chris_commat_misentropic_commercial
sep() {
for a in {1..80}; do printf "=" ; done ; echo
}
filt() {
sed 's#<.*">##;s#<.*##' | awk '{print $1}'
}