This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
from sargs import * | |
# Pārbaude pēc ieslēgšanās: ieslēdzam visas gaismas diodes pēc kārtas | |
pins = [LED_ZALS, LED_DZELTENS, LED_SARKANS, LED_KREISA_ACS, LED_LABA_ACS] | |
for p in pins: | |
p.ieslegt() | |
pagaidit(0.5) | |
# Nedaudz uzgaidot, izslēdzam visas gaismas diodes apgrieztā kārtībā | |
pagaidit(1) |
https://wpengine.com/devkit/ | |
https://developer.wpengine.com/devkit/ | |
https://wpengine.github.io/wpe-cli/installation.html |
Service: 00001800-0000-1000-8000-00805f9b34fb | |
Characteristic: 00002a00-0000-1000-8000-00805f9b34fb | |
READ | |
b'LYWSD02' | |
Characteristic: 00002a01-0000-1000-8000-00805f9b34fb | |
READ | |
b'\x00\x00' | |
Service: 00001801-0000-1000-8000-00805f9b34fb | |
Characteristic: 00002a05-0000-1000-8000-00805f9b34fb | |
READ INDICATE |
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
We will explain how to configure a cubieboard running debian as a reverese proxy.
The modules that will be used are wvdial
and autossh
Credits goes to:
1. http://blog.rootshell.be/2015/02/19/my-little-pwnie-box/
2. https://wiki.archlinux.org/index.php/3G_and_GPRS_modems_with_pppd
#! /bin/bash | |
# | |
# Diffusion youtube avec ffmpeg | |
# Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée. | |
VBR="2500k" # Bitrate de la vidéo en sortie | |
FPS="30" # FPS de la vidéo en sortie | |
QUAL="medium" # Preset de qualité FFMPEG | |
YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube |
This content has been moved. Please see http://jeremypry.com/wordpress-plugin-development-with-github/
[submodule "chosen"] | |
path = chosen | |
url = [email protected]:harvesthq/chosen.git |
In your theme, you should be using the wp_enqueue_style()
function instead of calling your stylesheet directly in your header.php
file. Use something like this in your theme's functions.php
file:
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_stylesheet' );