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
version: "3.3" | |
services: | |
################################################ | |
#### Traefik Proxy Setup ##### | |
############################################### | |
traefik: | |
image: traefik:v2.0 | |
restart: always |
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
function remove_dashboard_meta() { | |
remove_meta_box( 'dashboard_activity', 'dashboard', 'normal' ); // Activity | |
remove_meta_box( 'dashboard_primary', 'dashboard', 'normal' ); // WordPress News | |
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' ); // Quick Draft | |
remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' ); // At a Glance | |
} | |
add_action( 'admin_init', 'remove_dashboard_meta' ); |
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
hostname: centos-2gb-nbg1-1 | |
instance-id: 3449213 | |
local-ipv4: '' | |
network-config: | |
config: | |
- mac_address: 96:00:00:33:00:b1 | |
name: eth0 | |
subnets: | |
- dns_nameservers: | |
- 213.133.100.100 |
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 | |
// SOURCE: https://gist.github.com/seebz/c00a38d9520e035a6a8c | |
class iCal | |
{ | |
/** | |
* @var string | |
*/ | |
public $title; |
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 | |
### Bash Environment Setup | |
# http://redsymbol.net/articles/unofficial-bash-strict-mode/ | |
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html | |
# set -o xtrace | |
set -o errexit | |
set -o errtrace | |
set -o nounset | |
set -o pipefail |
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
package weakmap | |
import ( | |
"reflect" | |
"runtime" | |
"sync" | |
) | |
type Key = interface {} | |
type Value = interface {} |
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 | |
# This simple bash script is aimed at excluding some development specific directories. | |
# | |
# In this configuration it will instruct Time Machine to exclude directories named: | |
# - env | |
# - node_modules | |
# - vendor | |
# - venv | |
# |
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
range | id | name | country | status | tech | maintainer | admin | source | whois_domain | updated | org | rdns_domain | domain | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
185.238.190.244 | EU-BUEHL-20190505 | Network Europe | EU | ASSIGNED PA | RIPE-NCC-HM-MNT\nKBMT | KBAM-RIPE | ripe | buehl.biz | 2019-05-05 | ORG-UA346-RIPE | 4b42.com | |||
79.175.182.192/26 | Mehr-Rayaneh-Tahrir | Afranet | IR | ASSIGNED PA | RIPE-NCC-HM-MNT\nAFRA-MNT-NESH-1 | AFAR1000-RIPE | ripe | 2019-05-05 | ORG-AA32-RIPE | afranet.com | ||||
185.238.189.0/24 | DE-ALEXANDERKARL-20181010 | Alexander Karl | DE | SUB-ALLOCATED PA | akarl-mnt | AKA66-RIPE | ripe | 4b42.com | 2019-05-05 | ORG-AK100-RIPE | akarl.eu | |||
89.184.202.0/24 | ANL-SK-CABLE089184202 | AnsonNet Bratislava Cable | SK | ASSIGNED PA | RIPE-NCC-HM-MNT\nuk-anl-1-mnt | AR38119-RIPE | ripe | 2019-05-05 | ORG-ANL20-RIPE | ansonnet.com | ||||
12.157.26.64/28 | TELECOMP959-26-64 | TELECOMP COMPUTER SERVICES IN | US | REASSIGNMENT | OPSEB22440-ARIN | OPSEB22440-ARIN | arin | 2019-05-05 | TCSI-106 | att.com | ||||
12.230.121.32/27 | BOBCAT-O148-121-32 | BOBCAT OF ST LOUIS | US | REASSIGNMENT | SGO59-ARIN | SGO59-ARIN | arin | 2019-05-05 | BOBCA-2 | bobcatofstl.com | bobcato |
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 | |
namespace App\Traits; | |
trait LockColumns | |
{ | |
/** | |
* Cast locked_columns as a JSON column | |
* | |
* @return void |
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
details summary { | |
cursor: pointer; | |
outline: none !important; | |
display: inline-block; | |
padding: 8px 12px; | |
padding-top: 10px; | |
border-radius: 4px; | |
overflow: hidden; | |
background: #F09825; | |
color: white; |