http://www.bookedscheduler.com/
Helpful Links
#!/usr/bin/python3 | |
from flask import Flask | |
from flask import request, jsonify | |
from flask.ext.cors import CORS | |
from suds.client import Client | |
import xmltodict | |
app = Flask(__name__) | |
cors = CORS(app) |
" MyConf | |
NeoBundle 'wakatime/vim-wakatime' | |
NeoBundle 'dkprice/vim-easygrep' | |
"NeoBundle 'scrooloose/nerdtree' | |
"NeoBundle 'jistr/vim-nerdtree-tabs' | |
"NeoBundle 'scrooloose/nerdcommenter' | |
"NeoBundle 'wincent/Command-T' | |
"NeoBundle 'kien/ctrlp.vim' |
[[local|localrc]] | |
#OFFLINE=True | |
RECLONE=True | |
HORIZON_BRANCH=stable/mitaka | |
KEYSTONE_BRANCH=stable/mitaka | |
NOVA_BRANCH=stable/mitaka | |
NEUTRON_BRANCH=stable/mitaka | |
GLANCE_BRANCH=stable/mitaka | |
CINDER_BRANCH=stable/mitaka |
. | |
.. | |
........ | |
@ | |
* | |
*.* | |
*.*.* | |
🎠|
# The definitive guide to setup my Python workspace with ubuntu and ZSH | |
# Author: Henrique Bastos <[email protected]> | |
# Modified by Wellington Moraes <[email protected]> | |
PY3=3.8.3 | |
PY2=2.7.18 | |
PY3TOOLS="youtube-dl pytest nornir stormssh flake8 pylint requests virtualenvwrapper" | |
PY2TOOLS="rename" | |
VENVS=~/.ve |
#!/bin/bash | |
# Initiate new BBRF programs from your public and private HackerOne programs | |
h1name="<your-hackerone-username>" | |
apitoken="<your-hackerone-api-token>" | |
next='https://api.hackerone.com/v1/hackers/programs?page%5Bsize%5D=100' | |
while [ "$next" ]; do |
#!/bin/bash | |
# Update the scope of your HackerOne programs | |
h1name="<your-hackerone-username>" | |
apitoken="<your-hackerone-api-token>" | |
next='https://api.hackerone.com/v1/hackers/programs?page%5Bsize%5D=100' | |
for p in $(bbrf programs where platform is hackerone --show-empty-scope); do | |
h1id=$(bbrf show $p | jq -r .tags.h1id) |