This file contains hidden or 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
[package] | |
name = "postgres-replication-poc" | |
version = "0.1.0" | |
authors = ["Petros Angelatos <[email protected]>"] | |
edition = "2018" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
tokio-postgres = { path = "../rust-postgres/tokio-postgres" } |
This file contains hidden or 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
<script> | |
/* | |
Replace the 'pub-xxxxxxxxxxxxxxxx' with your own Google Adsense publisher-id. | |
Update the 'positions' with the data from your Google Adsense account page. | |
Usage: | |
<div class="tagmanager_ad" data-name="rectangle"></div> | |
*/ | |
var publisherId = "pub-xxxxxxxxxxxxxxxx", |
This file contains hidden or 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: utf-8 -*- | |
from flask.ext.admin import datastore | |
from flask.ext.admin import util | |
from flask.ext.wtf import Form | |
from pymongo.objectid import ObjectId | |
from pymongo.errors import OperationFailure | |
class Any(object): |