type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
var url = // Webhook URL | |
var text = // Text to post | |
$.ajax({ | |
data: 'payload=' + JSON.stringify({ | |
"text": text | |
}), | |
dataType: 'json', | |
processData: false, | |
type: 'POST', | |
url: url |
var mediaJSON = { "categories" : [ { "name" : "Movies", | |
"videos" : [ | |
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
"subtitle" : "By Blender Foundation", | |
"thumb" : "images/BigBuckBunny.jpg", | |
"title" : "Big Buck Bunny" | |
}, | |
{ "description" : "The first Blender Open Movie from 2006", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
/* eslint-disable id-blacklist */ | |
/* eslint-disable id-length */ | |
/* eslint-disable no-param-reassign */ | |
/* eslint-disable no-implicit-coercion */ | |
/* eslint-disable no-undefined */ | |
/* eslint-disable no-empty-function */ | |
/* eslint-disable semi */ | |
/* eslint-disable quotes */ | |
/* eslint-disable no-eq-nullg */ |
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
/* Implementation of lodash.get function */ | |
function getProp( object, keys, defaultVal ){ | |
keys = Array.isArray( keys )? keys : keys.split('.'); | |
object = object[keys[0]]; | |
if( object && keys.length>1 ){ | |
return getProp( object, keys.slice(1) ); | |
} | |
return object === undefined? defaultVal : object; | |
} |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
<?php | |
// Add to your (child) theme's functions.php | |
add_filter( 'facetwp_render_params', function( $params ) { | |
foreach ( $params['facets'] as $key => $facet ) { | |
if ( 'keywords' == $facet['facet_name'] ) { // change "keywords" to your actual facet name | |
if ( empty( $facet['selected_values'] ) ) { | |
$params['facets'][ $key ]['selected_values'] = 'circ'; | |
} |
var cloudinary = require('cloudinary').v2; | |
cloudinary.config({ | |
cloud_name: "<CLOUD NAME>", | |
api_key: "<API KEY>", | |
api_secret: "<API SECRET>" | |
}); | |
var result = []; | |
var options = { type: "upload", max_results: 500, prefix: "<Name of the Folder>/" }; //Add you folder name + `/` |
<? | |
use Illuminate\Database\Eloquent\Model; | |
class User extends Model | |
{ | |
public function photos() | |
{ | |
return $this->hasMany('\App\Photo'); | |
} | |
public function posts() | |
{ |