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
# -----------------$HOME/.abcde.conf----------------- # | |
# | |
# A sample configuration file to convert music cds to | |
# FLAC using abcde version 2.7.2 | |
# | |
# http://andrews-corner.org/linux/abcde/index.html | |
# -------------------------------------------------- # | |
# Encode tracks immediately after reading. Saves disk space, gives | |
# better reading of 'scratchy' disks and better troubleshooting of |
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
[Unit] | |
Description=rsnapshot daily backup | |
[Timer] | |
OnCalendar=*-*-* 00:00:30 | |
Persistent=true | |
[email protected] | |
[Install] | |
WantedBy=timers.target |
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
{ | |
"Guid" : "3B588533-BFA8-4069-84E8-30FF9D510436", | |
"Tags" : [ | |
], | |
"Ansi 12 Color" : { | |
"Green Component" : "0.6235294", | |
"Blue Component" : "0.8117647", | |
"Red Component" : "0.4470588" | |
}, |
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
{ | |
"Guid" : "B08493A5-64BB-48D9-B30D-67CAFD86A9E5", | |
"Tags" : [ | |
], | |
"Ansi 12 Color" : { | |
"Green Component" : "0.6235294", | |
"Red Component" : "0.4470588", | |
"Blue Component" : "0.8117647" | |
}, |
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
#!/usr/bin/bash | |
DOMAIN= | |
PASSWORD= | |
IPADDR=`wget -qO- tnx.nl/ip` | |
LASTIP=`nslookup bitmono.dtdns.net ns1.darktech.org | grep -A1 bitmono | grep Address | awk '{ print $2 }'` | |
echo -n "`date` - " | |
if [ "$IPADDR" != "$LASTIP" ]; then |
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
# Install ARCH Linux with encrypted file-system and UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/ | |
# Copy to a usb-drive | |
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
# Set swedish keymap |
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
$ wget https://raw.githubusercontent.com/thestinger/termite/master/termite.terminfo | |
$ tic termite.terminfo |
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
Session::put('cart', array_add($cart = Session::get('cart'), $product, $quantity)); |
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
$this->get('/users/2/routes', ['HTTP_X-Requested-With' => 'XMLHttpRequest']) | |
->seeJsonStructure([ | |
'*' => ['id', 'name'], | |
]); |
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
<?xml version="1.0" encoding="utf-8"?> | |
<phpunit> | |
<filter> | |
<whitelist> | |
<directory suffix=".php">../</directory> | |
<exclude> | |
<file>../ext_emconf.php</file> | |
<directory suffix=".php">../tests</directory> | |
</exclude> | |
</whitelist> |