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
# coding: utf8 | |
import logging | |
import unittest | |
import random | |
from py2neo import cypher, neo4j | |
logger = logging.getLogger(__name__) | |
logger.setLevel(logging.DEBUG) | |
logger.addHandler(logging.StreamHandler()) |
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
{ | |
"wasAttributedTo": { | |
"_:id4": { | |
"prov:entity": "alice:bundle2", | |
"prov:agent": "ex:Alice" | |
}, | |
"_:id2": { | |
"prov:entity": "bob:bundle1", | |
"prov:agent": "ex:Bob" |
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 | |
// app/config/local/queue.php | |
return array( | |
// 'default' => 'iron', | |
// 'default' => 'sync', // Use syncronous for testing without and internet connection... | |
'connections' => array( |
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 | |
namespace OAuth\Common\Storage; | |
use Predis\Client as Predis; | |
class LaravelRedisStorage extends Redis implements TokenStorageInterface { | |
public function __construct() | |
{ |
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
<style> | |
#chew-embed { | |
width: 100%; | |
display: inline-block; | |
position: relative; | |
} | |
#chew-embed:after{ | |
padding-top: 56.25%; | |
display: block; | |
content: ""; |