Open ssl.conf
in a text editor.
Edit the domain(s) listed under the [alt_names]
section so that they match the local domain name you want to use for your project, e.g.
DNS.1 = my-project.dev
Additional FQDNs can be added if required:
/* | |
Title: HVRescue_Shield | |
Description: Arduino sketch for use with the mightyohm.com AVR HV Rescue Shield | |
Author: Jeff Keyzer | |
Company: MightyOhm Engineering | |
Website: http://mightyohm.com | |
Contact: http://mightyohm.com/blog/contact/ | |
This sketch assumes that the Arduino is equipped with an AVR HV Rescue Shield. | |
Schematics and other details are available at http://mightyohm.com/rescue_shield/ |
/* | |
Title: HVRescue_Shield_Plus | |
Description: Arduino sketch for use with the HV Rescue Shield | |
Author: Originally Jeff Keyzer, Modified and extended by Dennis Tricker | |
Company: MightyOhm Engineering | |
Website: http://mightyohm.com | |
Contact: http://mightyohm.com/blog/contact/ | |
This sketch assumes that the Arduino is equipped with an AVR HV Rescue Shield. | |
Schematics and other details are available at http://mightyohm.com/hvrescue2 |
/* | |
Title: HVRescue_Shield | |
Description: Arduino sketch for use with the HV Rescue Shield | |
Author: Jeff Keyzer | |
Company: MightyOhm Engineering | |
Website: http://mightyohm.com | |
Contact: http://mightyohm.com/blog/contact/ | |
This sketch assumes that the Arduino is equipped with an AVR HV Rescue Shield. | |
Schematics and other details are available at http://mightyohm.com/hvrescue2 |
(() => { | |
const getScriptParams = () => { | |
const scripts = document.getElementsByTagName("script"); | |
const config = JSON.parse(scripts[scripts.length - 1].innerHTML); | |
return config; | |
}; | |
const lastLimePlayedLocalStorageKey = "__lastTimePlayed"; |
cd /tmp | |
apt-get install build-essential -y | |
apt-get install g++ | |
wget http://nginx.org/download/nginx-1.11.0.tar.gz && tar zxvf nginx-1.11.0.tar.gz | |
wget http://www.openssl.org/source/openssl-1.0.2.tar.gz && tar xzvf openssl-1.0.2.tar.gz |
/* alphanum.js (C) Brian Huisman | |
* Based on the Alphanum Algorithm by David Koelle | |
* The Alphanum Algorithm is discussed at http://www.DaveKoelle.com | |
* | |
* Distributed under same license as original | |
* | |
* This library is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Lesser General Public | |
* License as published by the Free Software Foundation; either | |
* version 2.1 of the License, or any later version. |
<script> | |
if (document.documentElement.nodeName == "transformiix:result") { | |
window.addEventListener("DOMContentLoaded", function () { | |
var outerHTML = document.getElementsByTagName("html")[0].outerHTML; | |
document.open(); | |
document.write(outerHTML); | |
document.close(); | |
}); | |
} |
#!/bin/sh | |
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done |
<?php | |
function safemode() { // jacked from Syrian Shell | |
$safe_mode = ini_get("safe_mode"); | |
if (!$safe_mode) { | |
$safe_mode = 'off'; | |
} | |
else { | |
$safe_mode = 'on'; // ...fuck | |
} | |
return $safe_mode; |