This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
sudo apt-get update && sudo apt-get upgrade && sudo apt-get install apt-transport-https -y && wget -O - https://dev2day.de/pms/dev2day-pms.gpg.key | sudo apt-key add - && echo "deb https://dev2day.de/pms/ jessie main" | sudo tee /etc/apt/sources.list.d/pms.list && sudo apt-get update && sudo apt-get install -t jessie plexmediaserver && sudo rm -rf /etc/default/plexmediaserver && echo | |
# default script for Plex Media Server | |
# the number of plugins that can run at the same time | |
PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS=6 | |
# ulimit -s $PLEX_MEDIA_SERVER_MAX_STACK_SIZE | |
PLEX_MEDIA_SERVER_MAX_STACK_SIZE=3000 | |
# where the mediaserver should store the transcodes |
@Component({ | |
selector: 'app-root', | |
template: ` | |
<ng-template> | |
<button class="tab-button" | |
(click)="login()">{{loginText}}</button> | |
<button class="tab-button" | |
(click)="signUp()">{{signUpText}}</button> | |
</ng-template> |
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
#!/bin/bash | |
mkdir wordpress-site && cd wordpress-site | |
touch docker-compose.yml | |
cat > docker-compose.yml <<EOL | |
version: "2" | |
services: | |
my-wpdb: |
-- Find the file ~/.kodi/userdata/MyVideosXX.db | |
-- Open with sqlite3 | |
-- Run the following statement: | |
SELECT | |
m.c00, -- Movie name | |
p.strPath, -- Path | |
f.strFilename -- File name | |
FROM movie m |
#!/usr/bin/env bash | |
# As root | |
# Make config and data dirs | |
mkdir /etc/composer -p || exit 1 | |
mkdir /var/lib/composer -p | |
# Set composer home dir to global location | |
cat << EOF > /etc/profile.d/composer.sh | |
#!/usr/bin/env bash |
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
There are two types of markup in Liquid: Output and Tag.
{{ matched pairs of curly brackets (ie, braces) }}
##Windows users:
cmder will be refered as console
##Mac Os, Ubuntu and windows users continue here:
homestead
utf8_general_ci<?php | |
class My_Custom_Field extends \GF_Field | |
{ | |
public $type = 'my_custom_field'; | |
public function get_form_editor_button() | |
{ | |
return array( | |
'group' => 'advanced_fields', | |
'text' => __('My Custom Field', 'gravityforms') |