Skip to content

Instantly share code, notes, and snippets.

View thomascys's full-sized avatar

Thomas Cys thomascys

View GitHub Profile
<?php
// Encrypt data with PHP openssl_encrypt AES-128-CBC.
$data = 'The quick brown fox jumps over the lazy dog.';
$key = '2b7e151628aed2a6abf7158809cf4f3c';
$iv = '000102030405060708090a0b0c0d0e0f';
$encrypted_data = bin2hex(openssl_encrypt($data, 'AES-128-CBC', hex2bin($key), OPENSSL_RAW_DATA, hex2bin($iv)));
<?php
namespace Drupal\custom_module\Plugin\Block;
use Drupal\Core\Block\BlockBase;
/**
* Provides a 'LazyBlock' block.
*
* @Block(
@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}'
}
@thomascys
thomascys / install
Last active May 24, 2016 14:44
Drupal 7: programmatically create a content type with fields (+ migrate node title to a field title & enable entity translation)
// Does the content type already exits?
$type = node_type_load('book');
if (!$type) {
$type = array(
'type' => 'book',
'name' => t('Book'),
'base' => 'node_content',
'description' => t('Create a book.'),
'custom' => 1,