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
<?php | |
// from excel sheet, use sublime of vs code with multicursors | |
$data = array( | |
'blender' => 'https://www.amazon.com/Professional-Countertop-1000-Watt-Technology-BL610/dp/B00NGV4506?psc=1&SubscriptionId=AKIAIFTUAUMTXK6MO5UA&tag=orgafact20-20&linkCode=xm2&camp=2025&creative=165953&creativeASIN=B00NGV4506', | |
'refrigerator' => 'https://www.amazon.com/Kenmore-Freezer-Refrigerator-Shelves-delivery/dp/B073RLP9B7?psc=1&SubscriptionId=AKIAIFTUAUMTXK6MO5UA&tag=orgafact20-20&linkCode=xm2&camp=2025&creative=165953&creativeASIN=B073RLP9B7', | |
'freezer' => 'https://www.amazon.com/Magic-Chef-MCUF3S2-Upright-Stainless/dp/B01GVLWZT0?psc=1&SubscriptionId=AKIAIFTUAUMTXK6MO5UA&tag=orgafact20-20&linkCode=xm2&camp=2025&creative=165953&creativeASIN=B01GVLWZT0', | |
'remoska' => 'https://www.amazon.com/Total-Chef-TCCZ02SN-3-Liter-Temperature/dp/B00472MEH4?psc=1&SubscriptionId=AKIAIFTUAUMTXK6MO5UA&tag=orgafact20-20&linkCode=xm2&camp=2025&creative=165953&creativeASIN=B00472MEH4', | |
'kettle' => 'https://www.amazon.com/AmazonBasics-Stainles |
var cleanUp = function() { | |
$.ajax({method: "GET", url: "https://prerender.io/api/cached-pages?page=0&pageSize=1000000"}).success(function(response) { | |
var total = response, | |
lastChecked = 1; | |
console.log("total: " + response.length); | |
for(var i = 0; i < total.length; i++) { | |
$.ajax({ | |
method: "DELETE", |
private PacketContainer modify(PacketContainer psign, String playerName) { | |
Packet82UpdateSign incoming = new Packet82UpdateSign(psign); | |
Packet82UpdateSign outgoing = new Packet82UpdateSign(); | |
String[] lines = incoming.getLines(); | |
String[] newLines = { lines[0], lines[1], lines[2], lines[3] }; | |
String value; | |
String key; | |
for (Changer c : changerList) { | |
Boolean check = false; | |
for(int i = 0; i < 4; i++) { |