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
/* Comment Class */ | |
.mtk3 { | |
font-family: 'Monaspace Radon', monospace; | |
} | |
.mtki.mtkb.mtku.mtks { | |
font-family: 'Monaspace Xenon', monospace; | |
font-weight: 300; | |
font-style: normal; | |
text-decoration: none; |
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 | |
# Author: Max Trewhitt <[email protected]> | |
# Template: https://natelandau.com/boilerplate-shell-script-template/ | |
# Description: A script for controlling a minecraft server | |
# Config | |
FILENAME=Paper-latest.jar | |
SERVER_PATH=/home/mc-server | |
SERVER_DOWNLOAD_URL=https://yivesmirror.com/files/paper/$FILENAME |
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
# | |
# Author: Max Trewhitt - Osolo | |
# Description: A safe deployment routine script | |
# | |
ROOT_FOLDER=example.com | |
THEME=example_theme | |
# Stop script on error signal | |
set -e |
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 | |
/** | |
* [list_searcheable_acf list all the custom fields we want to include in our search query] | |
* @return [array] [list of custom fields] | |
*/ | |
function list_searcheable_acf(){ | |
$list_searcheable_acf = array("title", "sub_title", "excerpt_short", "excerpt_long", "xyz", "myACF"); | |
return $list_searcheable_acf; | |
} |
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 | |
# This script was written for Ubuntu 14.04 and 16.04 | |
# Other operating systems may need a few changes | |
WORK_DIR=~/svn2git | |
AUTHORS_FILE=$WORK_DIR/authors.txt | |
GITDIR_DIRTY=$WORK_DIR/dirty | |
GITDIR_FINAL=$WORK_DIR/final |