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
<html> | |
<body> | |
<h1>header</h1> | |
<p>normal text</p> | |
<form> | |
<input value="input field"> | |
<select><option>select option</select> | |
<input type=button value="button"> | |
<input type=submit value="submit"> |
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
Feeding and Excretion | |
Whether you have 5 or 6 players, an unmutated amoeba always eats 4 | |
foodstuff cubes in 4 different colors, not its own, per round. Thus, with 6 | |
players, an amoeba can ignore one color. Excretion is still two cubes of | |
the amoeba’s own color. | |
Designed by Doris Matthäus and Frank Nestel | |
A game expansion for 5 to 6 players of 12 years or older. | |
Duration: 2 hours. |
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
nodes='cat alfred.json'; | |
files=logs/nodes; | |
mkdir -p $files; | |
$nodes|jq '.[].network.mac'|while read i; do | |
$nodes |jq '.['$i']' > $files/$($nodes |jq '.['$i'].hostname'); | |
done |
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
Host example.org | |
IdentityFile ~/.ssh/id_rsa | |
Host * | |
ForwardAgent no | |
IdentitiesOnly yes |
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 | |
# mounts all needed mount points to change into another system from within a live-CD | |
#-------------- Author: -------------# | |
# by Ruben Barkow (Rubo77) | |
if [ "$(whoami &2>/dev/null)" != "root" ] && [ "$(id -un &2>/dev/null)" != "root" ] ; then | |
echo "You must be root to run this script!"; echo "use 'sudo !!'"; exit 1 | |
fi |
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/env bash | |
result=$(mktemp) | |
IFS= | |
eval dialog --menu \"Please choose a filesystem:\" 50 50 10 $(lsblk -f | sed -r 's/^/"/;s/$/" " "/' | tr $'\n' ' ') 2>$result | |
D="$(cat $result|sed 's/\s.*//g'|sed 's/\W//g')" | |
echo $D |
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
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
The following packages were automatically installed and are no longer required: | |
libgcj-bc libbcmail-java libbcprov-java-gcj libbcmail-java-gcj libgcj13 libbcprov-java libitext-java libgnumail-java libgnuinet-java libitext-java-gcj gcj-4.7-base | |
libgnujaf-java | |
Use 'apt-get autoremove' to remove them. | |
The following extra packages will be installed: | |
binutils cpp cpp-4.4 cpp-4.7 g++-4.4 gcc-4.4 gcc-4.4-base gcc-4.7 gcc-4.7-base gcj-4.6-base gcj-4.7-base libc-bin libc-dev-bin libc6 libc6-dev libc6-i686 libdb5.1 libgcc1 |
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
# rsync-homedir-excludes | |
# | |
# A list of files to exclude when backing up *nix home directories using rsync. | |
# | |
# Author: Ruben Barkow <https://gist.github.com/rubo77> (original) | |
# Version: 2015-08-30 | |
# Website: https://gist.github.com/rubo77/8ffaadbc58ab099d2bc3 | |
# the repository has moved to github |
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
aircrack-ng | |
apache2 | |
apache2-mpm-worker | |
apache2-utils | |
apache2.2-bin | |
apache2.2-common | |
arpalert | |
arptables | |
autoconf | |
automake |
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
diff --git a/includes/auth/auth_db.php b/includes/auth/auth_db.php | |
index 73c4f92..e50bdab 100755 | |
--- a/includes/auth/auth_db.php | |
+++ b/includes/auth/auth_db.php | |
@@ -75,7 +75,7 @@ function login_db(&$username, &$password) | |
include ($phpbb_root_path . 'includes/captcha/captcha_factory.' . $phpEx); | |
} | |
- $captcha =& phpbb_captcha_factory::get_instance($config['captcha_plugin']); | |
+ $captcha = @phpbb_captcha_factory::get_instance($config['captcha_plugin']); |