Skip to content

Instantly share code, notes, and snippets.

View sebastiansterk's full-sized avatar
🌥️

Sebastian Sterk sebastiansterk

🌥️
View GitHub Profile
@sebastiansterk
sebastiansterk / extract.js
Created June 27, 2021 21:02 — forked from leobossmann/extract.js
Extract and rename images from Pixieset
var imgs = new Array;
// replace all images by the xxl version
$('li > img').each(function(i, item){
var new_src = $(item).prop('src').replace('large', 'xxlarge');
$(item).prop('src', new_src);
imgs.push($(item));
});
// kill everything on page
$('body').empty();
@sebastiansterk
sebastiansterk / self-signed-certificate-with-custom-ca.md
Created February 12, 2021 15:38 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096