- Copy the
tumblr.py
file into~/.config/variety/plugins/quotes
. - Restart variety.
- Activate the plugin under
Effects -> Quotes -> Sources and filtering
. - Under
authors
, enter the blog names you want to get quotes from (.tumblr.com
will be added automatically). - That's it!
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
# This script copies alerts from one project to another in MongoDB opsManager | |
# To install dependencies | |
# run pip install requests | |
# then python copyAlerts.py | |
import json | |
import requests | |
from requests.auth import HTTPDigestAuth | |
sourcePublicKey = "sourcePublicKey" |
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 { MongoClient } = require("mongodb"); | |
// Replace the uri string with your MongoDB deployment's connection string. | |
const uri = "mongodb+srv://U:P@cD?writeConcern=majority"; | |
const client = new MongoClient(uri); | |
let changeStream; | |
async function run() { | |
try { | |
await client.connect(); | |
const database = client.db("sample_mflix"); |
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
#!/bin/bash | |
### VARIABLES ### \ | |
EMAIL="" | |
SERVER=$(hostname) | |
MYSQL_CHECK=$(mysql -e "SHOW VARIABLES LIKE '%version%';" || echo 1) | |
LAST_ERRNO=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Last_Errno" | awk '{ print $2 }') | |
SECONDS_BEHIND_MASTER=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G"| grep "Seconds_Behind_Master" | awk '{ print $2 }') | |
IO_IS_RUNNING=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Slave_IO_Running" | awk '{ print $2 }') | |
SQL_IS_RUNNING=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Slave_SQL_Running" | awk '{ print $2 }') |