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 | |
$lyric = <<<EOT | |
Queima um fogo intenso no meu coração | |
Arde um desejo forte de pregar | |
De contar pra todo mundo o que eu descobri | |
A verdade que encontrei o Deus que eu conheci | |
A mensagem que eu tenho, recebi |
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 | |
/* PARA USAR COM WORDPRESS */ | |
class BeforeAfter { | |
public function __construct(){} | |
public function do_shortcode() | |
{ | |
add_action( 'wp_enqueue_scripts', array($this, 'add_scripts') ); |
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 | |
class VimeoBackground { | |
public function __construct(){} | |
public function do_shortcode() | |
{ | |
add_shortcode( 'vimeobackground', array($this, 'vimeo_wrapper')); | |
} |
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
/*contact form 7 like Divi theme */ | |
/* fields. Note "assunto" field, is explained in Select section of this file */ | |
.wpcf7-text, .wpcf7-textarea, .wpcf7-captchar, .assunto{ | |
background-color: #eee !important; | |
border: none !important; | |
width: 100% !important; | |
-moz-border-radius: 0 !important; | |
-webkit-border-radius: 0 !important; | |
border-radius: 0 !important; |
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
#!/usr/bin/env bash | |
V_DIR_SQL="/home/sysadmin/data" | |
V_DIR_BACKUP="/home/sysadmin/backup" | |
V_HOST="localhost" | |
V_DATABASE="database" | |
V_USER="root" | |
V_PASSWORD="root" |
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/bash | |
# | |
# Commented provisioning script for a flyimg server | |
# Created for Ubuntu 16 but works with 14 and possibly with other distributions | |
# This script is intended to be used as a root user | |
# This script should be ideally invoqued by a Cloud-init script | |
# Read more at: https://www.digitalocean.com/community/tutorials/an-introduction-to-cloud-config-scripting#run-arbitrary-commands-for-more-control | |
# | |
# Original Gist at: https://gist.github.com/baamenabar/2a825178318d27fc20abfe5a413b45eb | |
# Author B. Agustin Amenabar L. @iminabar |
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 | |
class addDepoimentosWithPhotosInFolder { | |
static $fullpath_dir; | |
static $files = []; | |
static $depoimento_section; | |
static $current_post_id; | |
static $current_attach_id; | |
static $current_filename; |
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
<div class="port-wrapper"> | |
<div class="lazy-image" data-src='/image1.jpg'></div> | |
<div class="lazy-image" data-src='/image2.jpg'></div> | |
<div class="lazy-image" data-src='/image3.jpg'></div> | |
</div> |
OlderNewer