This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Wireguard auf Debian/Raspbian einrichten, | |
# nach c't 15/2019, S. 166 | |
# * läuft auf Raspbian oder Debian Netinst (Buster) | |
# * bitte nur auf frischen Installationen verwenden | |
# * Skript überschreibt Netzwerkkonfiguration | |
# * als pi (Raspbian) oder als root/passwortloses sudo (Debian) ausführen | |
# * schreibt Protokoll nach /var/log/wgstrap.log | |
# * zweistufiger Prozess, der einen Reboot erfordert |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! WARNING Selecting wrong /dev/sdX might wipe your main harddrive !!! | |
!!! These are only notes, not a step by step !!! | |
Download BIOS from HP's page, find your correct bios files via serialnumber | |
# sudo dmidecode |grep -A 4 "HP EliteBook" | |
Download the service pack spXXXXX.exe | |
# apt-get install wine-stable | |
# wine spXXXXX.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Copy lines below into functions.php of your Divi child theme. | |
*/ | |
add_filter( 'et_contact_page_headers', 'mycopytosender', 10, 4 ); | |
function mycopytosender( $headers, $contact_name, $contact_email ) { | |
$headers[] = "Cc: \"{$contact_name}\" <{$contact_email}>"; | |
return $headers; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// O2 Minipops rhythm box (c) DSP Synthesizers 2016 | |
// Free for non commercial use | |
// http://janostman.wordpress.com | |
#include <avr/interrupt.h> | |
#include <avr/io.h> | |
#include <avr/pgmspace.h> |