I hereby claim:
- I am mchlmicy on github.
- I am mchlmicy (https://keybase.io/mchlmicy) on keybase.
- I have a public key whose fingerprint is 0092 A479 833B 12BF 4925 135C 2B96 1068 57B4 9247
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| REPO_USER='' # ex. mchlmicy | |
| REPO_NAME='' # ex. launchpad | |
| MATCH_EMAIL='' # ex. mike@bitready.io | |
| MATCH_NAME='' # ex. Michael Young | |
| UPDATE_EMAIL='' # ex. mike@synapsepay.com | |
| UPDATE_NAME='' # ex. Mike Young |
| # data types | |
| import time | |
| # webdriver | |
| from selenium import webdriver | |
| def create(): | |
| client = webdriver.Firefox() | |
| specs = {'url': client.command_executor._url, 'session_id': client.session_id} | |
| print(specs) |
| #!/bin/bash | |
| input=$1 | |
| contract=$2 | |
| if [[ -n "$input" ]]; then | |
| # minify code | |
| code="" | |
| while IFS= read -r line | |
| do | |
| code+=$line | |
| done < "$input" |
| #!/bin/bash | |
| input=$1 | |
| output="" | |
| if [[ -n "$input" ]]; then | |
| # minify code | |
| code="" | |
| while IFS= read -r line | |
| do | |
| min='' | |
| consecutive_spaces=0 |
| # utils | |
| import os | |
| # go to directory | |
| os.chdir('//Volumes/NO NAME/Computer Files/iTunes Library/') | |
| # loop through directory | |
| primary_tracks, additional_tracks = {}, {} | |
| def main(): |