- Cracking the Coding Interview
- iOS Development for Dummies
- Terraform Up and Running
- Access Database (O'Reilly)
- Effective STL
- Effective C++ by Scott Meyers
- Code Complete
- CLR via C#
- The Pragmatic Programmer: from journeyman to master.
- The Mythical Man Month by Frederick Brooks
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
if input volume of (get volume settings) = 0 then | |
set level to 100 | |
else | |
set level to 0 | |
end if | |
set volume input volume level |
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
" Basic Setup: | |
" From Thoughtbot Talk: https://www.youtube.com/watch?v=XA2WjJbmmoM&t=262s | |
set nocompatible | |
" Finding Files: | |
" Provide tab-completion for all file-related tasks | |
" ** == Search Recursively |
A CLI for Bunch.app by Brett Terpstra
Save the file below as bunch
in your path. Run bunch -h
for help.
CLI for Bunch.app
-h, --help Display this screen
-l, --list List available Bunches
-o, --open Open Bunch ignoring "Toggle Bunches" preference
-c, --close Close Bunch ignoring "Toggle Bunches" preference
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
from google.cloud import speech | |
from google.cloud.speech import enums | |
from google.cloud.speech import types | |
from google.cloud.storage import Blog | |
import sys | |
speech_client = speech.SpeechClient() | |
base_uri = sys.argv[1] |
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 tweepy | |
from secrets import consumer_key, consumer_secret, access_token, access_token_secret | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | |
auth.set_access_token(access_token, access_token_secret) | |
api = tweepy.API(auth) | |
search = api.search(q="#python lang:en filter:links min_retweets:10", count=10) | |
for tweet in search: |
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
from secrets import (CLIENT_ID, | |
CLIENT_SECRET, | |
USERNAME, | |
PASSWORD) | |
import requests | |
import requests.auth | |
from datetime import datetime, timedelta | |
# Get Authorization Token - Only Good for an Hour so May as Well Refresh with Each Use |
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
from PIL import Image, ImageDraw, ImageFont | |
from sys import argv | |
def watermark_with_transparency(base_image_path, | |
output_image_path, | |
watermark_image_path, | |
title, | |
position): | |
base_image = Image.open(base_image_path) | |
podcast_rez_image = base_image.resize((4000,4000)) |
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
[[source]] | |
name = "pypi" | |
url = "https://pypi.org/simple" | |
[[source]] | |
name = "pythonhosted" | |
url = "https://files.pythonhosted.org" | |
[dev-packages] |