OSI Model - https://youtu.be/rIZ61PyDkH8
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
#!/usr/bin/env python3 | |
# | |
# requirements: | |
# discord.py | |
# python-dotenv | |
# requests | |
# python-dateutil | |
# | |
# reference: https://realpython.com/how-to-make-a-discord-bot-python/ |
I hereby claim:
- I am spudfkc on github.
- I am wolfdix (https://keybase.io/wolfdix) on keybase.
- I have a public key ASALEg0bjqxGMsvIgXkr0oOeybC4p2zpsQAIY8ToTUtc6go
To claim this, I am signing this object:
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDMpYG8Ae3y0DP/aNvAS8HKfbLi22YeYPXHACuAnaT2i9CaaLhpL4e1W6RnK7H5yrwI20p3/+PK77fsJXHM/wOX8JMDdHrwj1x6wVB1ejpOmyIe+q7FLTLeWf5mp/s/a6Fvnh/ZIFIL/d/zEq7FytlkjZ1OCMJv1GyF3jGnqgOyUv0/1lg82uoiDWOBjm6DDV5varHgeFXHFp7nwB0OKh9wL99NQ9EVclMfcMZVkmMBxLrYeLM3W8eObVNhyD/b/5dSbWQGnDM0DZtct1O0uFWO2JFtLn7MDiIOEA8K0XT7IMeKdbs/UXpfgrrqRY8sf08leNfSDG1Bu1EvdHAGjCRL nick@WOLFDIX-PC |
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
https://github.com/mileszs/ack.vim.git | |
https://github.com/skywind3000/asyncrun.vim.git | |
https://github.com/baskerville/bubblegum.git | |
https://github.com/29decibel/codeschool-vim-theme.git | |
https://github.com/kien/ctrlp.vim.git | |
https://github.com/gregsexton/gitv.git | |
https://github.com/roman/golden-ratio.git | |
https://github.com/morhetz/gruvbox.git | |
https://github.com/Yggdroot/indentLine.git | |
https://github.com/nanotech/jellybeans.vim.git |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDmmR14PnrPerZ6Z4zXgkZuLfJGshUfb++4KMbi/RmN5gEKyy6AyV5EkJfGDeucsYVWypqRQ9ume2DSXNCyOgJPwPGbdNRWEf4nWVGrqsPy8/B7fQKa/hrZ+ShSU4xTZLeG4p41tTWIjuEuGRPMHDQrB7jjVB4lg5mJsMyU1Erylra9secnBxO7wVDXPdSuyaZt7j95LfSDDjmzmSj+tn0z1Q2p+cOP00gjiStQmq2vTb4TMwEwG0OZgoWFlu7qaWWR/skS2lzoX07g48TlnEN6fy1+z/0UH+fPcccBqn8MJ587hsQ2laQEkMCG7AM5IS88huZZN1Ui/4RIN3B5NYjkMD7qm29m4/l/pCVJWjS2E3mNe7iySaeaVTnM9M5UGsdDwuZmupTbnbDXExoj5Ut+dg75rpsaSqWptRmaeZ5uqPiAVYjglZkHqsDqd2bWpthO6EVD84uiHnzV9VZjOjBiJg7oO6lr6UHqd114cIlwkodoOOlW1sYNs6/SanBnzyrWc7aJeJNDnKrwQ/QmMW2zJNATbZiVEKcBS3PVIAdKc9PToqzjp1jIxu/sR7zq1ADBgy+IP4G0JjswxwtPHWjRq9i9J4G1RDpOe9ifRUc5jq0cE4BhpRBVm3lOaHbzJ+nVsS2ALnA4R0qx2xviOrT1d8mr3YK/JZm4eEP/oV32ow== [email protected] |
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 main | |
import ( | |
"golang.org/x/oauth2" | |
"golang.org/x/oauth2/clientcredentials" | |
"net/http" | |
) | |
/* Simple example of getting an HTTP Client that will authenticate via Oauth2. No need for 3-legged auth. */ | |
func OauthClient() *http.Client { |
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
''' | |
export TWITTER_CONSUMER_KEY='your-twitter-consumer-key' | |
export TWITTER_CONSUMER_SECRET='your-twitter-consumer-secret' | |
export TWITTER_ACCESS_TOKEN_KEY='your-twitter-access-key' | |
export TWITTER_ACCESS_TOKEN_SECRET='your-twitter-access-secret' | |
pip install python-twitter | |
''' | |
from __future__ import unicode_literals |
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
#!/usr/bin/env python | |
# pre-req: pip install gitpython | |
import os | |
from git import * | |
from multiprocessing import Pool | |
def git_remote_update(repodir): | |
print ''.join(['Creating Repo at ', repodir]) |
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
#!/bin/bash | |
# | |
# author: ncc | |
# | |
readonly PROGNAME=$(basename $0) | |
readonly PROGDIR=$(readlink -m $(dirname $0)) | |
readonly ARGS="$@" | |
VERSION=dev |
NewerOlder