#
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
$ for w in `cat /usr/share/dict/words | egrep 'ate$'`; do echo "Don't hate: ${w}"; done | |
Don't hate: abacate | |
Don't hate: abacinate | |
Don't hate: abalienate | |
Don't hate: abate | |
Don't hate: abbreviate | |
Don't hate: abdicate | |
Don't hate: aberrate | |
Don't hate: abietate | |
Don't hate: abintestate |
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
echo '' | openssl s_client -connect www.okta.com:443 |
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
import os | |
import time | |
import okta | |
# Get your very own Okta organization at: http://developer.okta.com | |
client = okta.AuthClient("https://example.okta.com", | |
"your-api-token") | |
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
oktachloride | |
oktachord | |
oktachordal | |
oktachronous | |
Oktacnemus | |
oktacolic | |
oktactinal | |
oktactine | |
Oktactiniae | |
oktactinian |
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
#!/usr/bin/env python2 | |
# vim: set noexpandtab:ts=4 | |
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
# Contributors: [email protected] | |
import ConfigParser | |
import base64 |
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
# -*- coding: utf-8 -*- | |
import logging | |
import os | |
import uuid | |
from flask import Flask | |
from flask import redirect | |
from flask import request | |
from flask import url_for | |
from flask.ext.login import LoginManager |
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
import urllib3 | |
from urllib3 import HTTPSConnectionPool | |
import certifi | |
import base64 | |
import M2Crypto | |
import hashlib | |
class TestHTTPSConnectionPool(HTTPSConnectionPool): | |
def _validate_conn(self, conn): |
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
# * * * * * command to be executed | |
# - - - - - | |
# | | | | | | |
# | | | | +- - - - day of week (0 - 6) (Sunday=0) | |
# | | | +- - - - - month (1 - 12) | |
# | | +- - - - - - day of month (1 - 31) | |
# | +- - - - - - - hour (0 - 23) | |
# +- - - - - - - - minute (0 - 59) |