This is an unofficial manual for the couchdb
Python module I wish I had had.
pip install couchdb
param( | |
[parameter(Mandatory=$true)] | |
[string]$Account, | |
[parameter(Mandatory=$true)] | |
[string]$SASToken, | |
[parameter(Mandatory=$true)] | |
[string]$OutputDir | |
) | |
$ErrorActionPreference = "Stop" |
import requests | |
from BeautifulSoup import BeautifulSoup as BS | |
import re | |
def get_dl_page(package_id): | |
get_request = requests.get('https://apkpure.com/search?q=' + package_id) | |
page = BS(get_request.text) | |
# it is assumed that the first search result is the thing we are looking for | |
link_ps = page.findAll('p', {'class': 'search-title'}) | |
page_link = link_ps[0].a.get('href') |
This is an unofficial manual for the couchdb
Python module I wish I had had.
pip install couchdb
import facebook | |
from collections import Counter | |
import requests | |
likes_counter = Counter() | |
# Get temp tokens at: https://developers.facebook.com/tools/explorer/ | |
USER_ACCESS_TOKEN = "" | |
client = facebook.GraphAPI(access_token=USER_ACCESS_TOKEN, version='2.5') |
[Unit] | |
Description=supervisord - Supervisor process control system for UNIX | |
Documentation=http://supervisord.org | |
After=network.target | |
[Service] | |
Type=forking | |
ExecStart=/bin/supervisord -c /etc/supervisord/supervisord.conf | |
ExecReload=/bin/supervisorctl reload | |
ExecStop=/bin/supervisorctl shutdown |
rabbitmqctl add_user test test | |
rabbitmqctl set_user_tags test administrator | |
rabbitmqctl set_permissions -p / test ".*" ".*" ".*" |
This guide will take you from zero webserver knowledge, to having your own free site hosted on GitHub. The only non-free bit is registering a domain name, which can be as cheap as $5/year.
This guide uses CrazyDomains as the Registrar, FreeDNS as the DNS, and GitHub as the Webserver.
#Laravel 5 Simple ACL manager
Protect your routes with user roles. Simply add a 'role_id' to the User model, install the roles table and seed if you need some example roles to get going.
If the user has a 'Root' role, then they can perform any actions.
Simply copy the files across into the appropriate directories, and register the middleware in App\Http\Kernel.php
from __future__ import division | |
import string | |
import math | |
tokenize = lambda doc: doc.lower().split(" ") | |
document_0 = "China has a strong economy that is growing at a rapid pace. However politically it differs greatly from the US Economy." | |
document_1 = "At last, China seems serious about confronting an endemic problem: domestic violence and corruption." | |
document_2 = "Japan's prime minister, Shinzo Abe, is working towards healing the economic turmoil in his own country for his view on the future of his people." | |
document_3 = "Vladimir Putin is working hard to fix the economy in Russia as the Ruble has tumbled." |