setfacl -R -b
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
CREATE USER 'blog'@'localhost' IDENTIFIED BY 'password'; | |
# SHOW CHARACTER SET; | |
CREATE DATABASE blog CHARACTER SET utf8; | |
GRANT ALL PRIVILEGES ON blog.* TO 'blog'@'localhost'; | |
FLUSH PRIVILEGES; |
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
{ | |
"success": true, | |
"data": [ | |
{ | |
"id": 1, | |
"title": "Foo" | |
}, | |
{ | |
"id": 2, | |
"title": "Bar" |
- Supports all embed parameters, API methods and events
- Requires Froogaloop
http://serverfault.com/q/610322/227777
tasks:
- stat: path=/etc/somefile.conf
register: st
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
const gulpPostcss = require('gulp-postcss'); | |
const postcssPartialImport = require('postcss-partial-import'); | |
const postcssCssnext = require('postcss-cssnext'); | |
const gulpRename = require('gulp-rename'); | |
const gulpLivereload = require('gulp-livereload'); | |
const gulpCssnano = require('gulp-cssnano'); | |
const gulpif = require('gulp-if'); | |
const sourcemaps = require('gulp-sourcemaps'); // <======================================== |
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
{# | |
Defined "Confirm" one-click action. | |
@param {string} title | |
@param {string} url | |
@param {string} [description] | |
#} | |
<div itemscope itemtype="http://schema.org/EmailMessage"> | |
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ConfirmAction"> | |
<meta itemprop="name" content="{{ title }}"/> |
1). Add the following snippet to the cover_init
function (before $isMobile
is first used):
var minWidthForVideo = parseInt(el.attr('data-min-width-for-video')) || null;
var imageMode = $isMobile;
var windowWidth = $(window).width();
if (minWidthForVideo && windowWidth < minWidthForVideo) {
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 | |
set -o errexit | |
set -o pipefail | |
shopt -s nullglob | |
INSTALL_PATH="$HOME/Telegram" | |
TEMP_PATH="$HOME/.tmp" | |
sudo apt-get install xz-utils |
OlderNewer