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 |
| MIT License | |
| Copyright (c) 2017 Wellington Moraes | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| [global_config] | |
| window_state = maximise | |
| handle_size = 0 | |
| title_hide_sizetext = True | |
| title_transmit_fg_color = "#bd93f9" | |
| title_inactive_fg_color = "#f8f8f2" | |
| title_receive_bg_color = "#282a36" | |
| title_transmit_bg_color = "#282a36" | |
| title_receive_fg_color = "#8be9fd" |
| . | |
| .. | |
| ........ | |
| @ | |
| * | |
| *.* | |
| *.*.* | |
| 🎠|
| # 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 |