View gist:2157290c41774f231dc635c5b17a8669
This file contains 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
ftp://c14ftp:h%40wzuk67@546ec084-c875-4330-864e-e03e6bed4ada.buffer.c14.io:42856/w10.iso |
View genesis_public_key
This file contains 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
04876696e9073edc813505e4ebe820ec464a9347d3dc40d3c225317ca892e14f45f1582b91ca5ae71253d0db744dd6f0357fc0fb4b41d75844ea3afb9f9f6f0d8a;DontLookAtMe |
View php7-fpm
This file contains 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/sh | |
### BEGIN INIT INFO | |
# Provides: php-fpm | |
# Required-Start: $remote_fs $network | |
# Required-Stop: $remote_fs $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: starts php-fpm | |
# Description: starts the PHP FastCGI Process Manager daemon |
View functions.php
This file contains 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 related_posts($title = 'Related Posts', $count = 5) { | |
global $post; | |
$tag_ids = array(); | |
$current_cat = get_the_category($post->ID); | |
$current_cat = $current_cat[0]->cat_ID; | |
$this_cat = ''; | |
$tags = get_the_tags($post->ID); | |
if ( $tags ) { | |
foreach($tags as $tag) { | |
$tag_ids[] = $tag->term_id; |
View sshinfo.sh
This file contains 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
SystemMountPoint="/"; | |
LinesPrefix=" "; | |
b=$(tput bold); n=$(tput sgr0); | |
SystemLoad=$(cat /proc/loadavg | cut -d" " -f1); | |
ProcessesCount=$(cat /proc/loadavg | cut -d"/" -f2 | cut -d" " -f1); | |
MountPointInfo=$(/bin/df -Th $SystemMountPoint 2>/dev/null | tail -n 1); | |
MountPointFreeSpace=( \ | |
$(echo $MountPointInfo | awk '{ print $6 }') \ |
View domain.conf
This file contains 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
server { | |
ssl_certificate /etc/nginx/ssl/domain.pem; | |
ssl_certificate_key /etc/nginx/ssl/domain.key; | |
ssl_dhparam /etc/nginx/ssl/dhparam.pem; | |
ssl_session_cache shared:SSL:10m; | |
ssl_session_timeout 5m; | |
keepalive_timeout 70; |
View nginx-gzip.txt
This file contains 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
# ----------------------------------------------------------------- | |
# worker_processes 2; gzip on; gzip_static off; gzip_comp_level 1; | |
# ----------------------------------------------------------------- | |
Server Software: nginx/1.9.3 | |
Server Hostname: 127.0.0.1 | |
Server Port: 80 | |
Document Path: /static.html | |
Document Length: 14860 bytes |
View functions.php
This file contains 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 | |
function theme_name_wp_title( $title, $sep ) { | |
global $page, $paged; | |
if ( is_home() || is_front_page() ) { | |
$title = get_bloginfo( 'name', 'display' ) . ' - ' . get_bloginfo( 'description', 'display' ); | |
} | |
if ( is_page() ) { | |
$title = get_the_title(); | |
} |
View example.html
This file contains 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
<head> | |
... | |
<script> | |
(function(){ | |
function addFont() { | |
var style = document.createElement('style'); | |
style.rel = 'stylesheet'; | |
document.head.appendChild(style); | |
style.textContent = localStorage.sourceSansPro; | |
} |
View transliteraturl.php
This file contains 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 | |
/* | |
Plugin Name: Transliteration URL | |
Plugin URI: https://gist.github.com/mrzlodey/d7165cd4f054a5763946 | |
Description: Convert cyrillic characters in WordPress permalinks and loaded files to latin characters. | |
Author: SK | |
Version: 1.0.0 | |
Author URI: http://codebeer.ru/ | |
*/ | |
function transliterate_url( $text ) { |