Skip to content

Instantly share code, notes, and snippets.

View marcozink's full-sized avatar

Marco Zink marcozink

View GitHub Profile
@marcozink
marcozink / nginx.conf
Created June 22, 2018 05:13 — forked from wsaribeiro/nginx.conf
NGINX Configuration for WordPress Multisite + Domain Mapping with HTTPS
server {
listen 80 default_server deferred;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl spdy deferred;
# Main site domain
server_name example.com *.example.com;
@marcozink
marcozink / AWS IAM Policy - ForceMFA.json
Created May 1, 2018 00:30 — forked from incyclum/AWS IAM Policy - ForceMFA.json
AWS IAM Policy - Force MFA - This policy allows users to manage their own passwords and MFA devices but nothing else unless they authenticate with MFA
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowAllUsersToListAccounts",
"Effect": "Allow",
"Action": [
"iam:ListAccountAliases",
"iam:ListUsers",
"iam:GetAccountPasswordPolicy",
@marcozink
marcozink / pushover
Created April 12, 2018 22:08 — forked from outadoc/pushover
Pushover Bash Script
#!/bin/bash
if [ $# -eq 0 ]; then
echo "Usage: ./pushover <message> [title]"
exit
fi
MESSAGE=$1
TITLE=$2
@marcozink
marcozink / ReceiptPrint.php
Created February 19, 2018 15:31 — forked from Stenerson/ReceiptPrint.php
Using escpos-php with Code Igniter (2x)
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
// IMPORTANT - Replace the following line with your path to the escpos-php autoload script
require_once __DIR__ . '\..\..\autoload.php';
use Mike42\Escpos\PrintConnectors\NetworkPrintConnector;
use Mike42\Escpos\PrintConnectors\FilePrintConnector;
use Mike42\Escpos\Printer;
class ReceiptPrint {
function urlencode(str)
if (str) then
str = string.gsub (str, "\n", "\r\n")
str = string.gsub (str, "([^%w ])",
function (c) return string.format ("%%%02X", string.byte(c)) end)
str = string.gsub (str, " ", "+")
end
return str
end