git clone git://source.winehq.org/git/wine.git
Or from the Github mirror
<!-- DuckDuckGo HTTPS search using Startpage suggestions. | |
- Url params: https://duckduckgo.com/params | |
- OSX location: Firefox.app/Contents/MacOS/browser/searchplugins | |
- In about:config, browser.search.defaultenginename = DuckDuckGo-Dark --> | |
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/"> | |
<ShortName>DuckDuckGo-Dark</ShortName> | |
<Description>DuckDuckGo-DarkTheme</Description> | |
<InputEncoding>UTF-8</InputEncoding> | |
<Image width="16" height="16" type="image/x-icon">data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%00%10%00%00%00%10%08%03%00%00%00%28-%0FS%00%00%00%04gAMA%00%00%B1%8F%0B%FCa%05%00%00%00%20cHRM%00%00z%26%00%00%80%84%00%00%FA%00%00%00%80%E8%00%00u0%00%00%EA%60%00%00%3A%98%00%00%17p%9C%BAQ%3C%00%00%01%F2PLTE%00%00%00%E4E%0C%E3%3F%03%E3A%05%E4E%0D%E2%3F%04%E2A%05%E0%3D%03%DEB%0A%DC%3B%03%D56%00%D55%00%D6%3A%06%D33%00%D12%00%D03%00%D23%00%D17%04%D0.%00%D1%26%00%D2%27%00%D2.%00%D27%04%E3%3A%00%E28%00%E39%00%E4%3C%00%E1%40%05%F3%B3%9B%FE%FD%FB%FF%FF%FF%F4%BC%A6%E2E%0 |
function BackgroundChanger (settings) { | |
// Author: Sebastian Schmidt | |
var settings = settings || {}; | |
// Set sane default options | |
this.nextImage = settings.firstImage || 1; // image to change to next | |
this.interval = settings.interval || 5000; // time until next image is shown (ms) | |
this.backgroundElement = settings.backgroundElement || document.getElementById('background-sideshow'); // element to change the background image on | |
this.backgroundImages = settings.backgroundImages || [ // a list of image url's | |
'http://lorempixel.com/1280/720/abstract/', |
I hereby claim:
To claim this, I am signing this object:
# | |
# nsd: https://www.nlnetlabs.nl/projects/nsd/ | |
# OpenNic: https://www.opennic.org/ | |
# | |
# this file can be placed inside the "/etc/nsd/conf.d folder" | |
# e.g. "/etc/nsd/conf.d/opennic.conf" for debian and redhat systems | |
# also make sure the "nsd.config" has the following line present: | |
# include: "/etc/nsd/conf.d/*.conf" | |
# | |
# you can use the "nsd-checkconf /etc/nsd/nsd.conf" to check for syntax errors |
pkg install git ragel libsodium re2 py27-virtualenv
git clone https://github.com/PowerDNS/pdns.git
cd pdns/pdns/dnsdistdist
virtualenv build
autoreconf -i
./configure --bindir=/usr/local/sbin --enable-dnscrypt --enable-libsodium --enable-re2
gmake
# Configuration file for runtime kernel parameters. | |
# See sysctl.conf(5) for more information. | |
# See also http://www.nateware.com/linux-network-tuning-for-2013.html for | |
# an explanation about some of these parameters, and instructions for | |
# a few other tweaks outside this file. | |
# Protection from SYN flood attack. | |
net.ipv4.tcp_syncookies = 1 |
#!/usr/bin/env bash | |
# | |
# Execute the file: | |
# bash <(curl -fsSL https://seby.io/myfish) | |
# | |
set -e | |
set -v | |
echo "If you don't know what this script does, hit CTRL-C NOW!" | |
read -p "Do you want to continue? [Y/y] " -n 1 -r |