Skip to content

Instantly share code, notes, and snippets.

View vmunich's full-sized avatar
✈️
I may be slow to respond.

Vini Münich vmunich

✈️
I may be slow to respond.
View GitHub Profile
#!/bin/bash
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
# #
# ARK Commander Script #
# by tharude a.k.a The Forging Penguin #
# thanks ViperTKD for the helping hand #
# 19/01/2017 ARK Team #
# #
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
#!/bin/bash
#set -x
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
# #
# Persona Commander Script #
# developed by tharude #
# a.k.a The Forging Penguin #
# thanks ViperTKD for the helping hand #
@vmunich
vmunich / GitCommitEmoji.md
Last active March 15, 2018 09:06 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
// transform cropper dataURI output to a Blob which Dropzone accepts
function dataURItoBlob(dataURI) {
var byteString = atob(dataURI.split(',')[1]);
var ab = new ArrayBuffer(byteString.length);
var ia = new Uint8Array(ab);
for (var i = 0; i < byteString.length; i++) {
ia[i] = byteString.charCodeAt(i);
}
return new Blob([ab], { type: 'image/jpeg' });
}