I hereby claim:
- I am melroy89 on github.
- I am danger89 (https://keybase.io/danger89) on keybase.
- I have a public key ASBTbCIP-O7TO7CI9IEY_w27sbQN_NGi2wtFL7SxkVFkgAo
To claim this, I am signing this object:
| server { | |
| listen 80; | |
| server_name example.wiki; | |
| # this config assumes that MediaWiki is installed into /var/www/yourwiki/html, | |
| # so LocalSettings.php would be located at /var/www/yourwiki/html/LocalSettings.php | |
| root /var/www/yourwiki/html; | |
| index index.php; |
I hereby claim:
To claim this, I am signing this object:
| Code | Symbol | Name_plural | |
|---|---|---|---|
| USD | $ | US dollars | |
| CAD | CA$ | Canadian dollars | |
| EUR | β¬ | Euros | |
| AED | AED | UAE dirhams | |
| AFN | Af | Afghan Afghanis | |
| ALL | ALL | Albanian lekΓ« | |
| AMD | AMD | Armenian drams | |
| ARS | AR$ | Argentine pesos | |
| AUD | AU$ | Australian dollars |
| server: | |
| ########################################################################### | |
| # BASIC SETTINGS | |
| ########################################################################### | |
| # Time to live maximum for RRsets and messages in the cache. If the maximum | |
| # kicks in, responses to clients still get decrementing TTLs based on the | |
| # original (larger) values. When the internal TTL expires, the cache item | |
| # has expired. Can be set lower to force the resolver to query for data | |
| # often, and not trust (very large) TTL values. | |
| cache-max-ttl: 86400 |
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| Comment: E0C7 C029 005B 0CE6 A743 8BD5 71D1 1FF2 3454 B9D7 | |
| Comment: Melroy Antoine van den Berg <[email protected]> | |
| xsDNBGBs24cBDADT/fNSAWzvYhjz0lUvZc6ZjNVO69F2GzzN/q86dlVqciofP+F/ | |
| zWyw1Pd5QZfhWDxHlH91kb1emrdrnrWitD9DdAAlcrRtopDlqF8MSyn7jrXw1Bd1 | |
| D2QJFtnGM3LnWXmlgdiuykgwQRcteVpPy9xSKeMGs17+WFCLQAOvfErQ9OFRGdSy | |
| 8rN68L5rvx6YpDg003sNE3tukfhQIAtURZRai43WepJ3my39G+7Acp8VI3KgohlL | |
| ZDWKO09vrXaoArvW1psKU+abAPtE+N/r52KmrFCqLpyIBBubGlYqjVrEMXLG7mhg | |
| CBI42jzPBbPj3Xyj+3++RDzByvC5ErfXlnIBeEWIIOpBltDu9KwgW6Pt+8SqGvpo |
In this guide we will only focus on using the prebuilt images from Docker Hub.
Prerequisites: You have Git, Docker, Docker compose and Nginx pre-installed.
Clone Mastodon's repository.
| #!/usr/bin/env bash | |
| # Script that goes through all my git repos and update them. And report any untracked files. | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| ORANGE='\033[0;33m' | |
| NC='\033[0m' # No Color | |
| # Do not add automatically to staged area, but only pull & push all repos | |
| CURRENT="$(dirname "$(realpath "$0")")" | |
| for dir in */;do |
A zoomable candlestick chart.
Copyright Β© 2015, Anil Nair - MIT License
| #!/bin/bash | |
| # Control AMD GPU videocard fan speed based on real GPU temperature under GNU/Linux | |
| # Just using the open-source AMDGPU driver, part of the kernel | |
| # By: Melroy van den Berg <[email protected]> | |
| ############## Documentation ################# | |
| # Note 1: Temps are in Degrees Celcius | |
| # Note 2: Fan speeds are in PWM (0-255 range) - which is NOT the same as RPM! | |
| # | |
| # You should read it like such: Until 48 degrees (temp1) is reached, |
| CREATE TABLE IF NOT EXISTS `country` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `iso` char(2) NOT NULL, | |
| `name` varchar(80) NOT NULL, | |
| `nicename` varchar(80) NOT NULL, | |
| `iso3` char(3) DEFAULT NULL, | |
| `numcode` smallint(6) DEFAULT NULL, | |
| `phonecode` int(5) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |