I hereby claim:
- I am jQwotos on github.
- I am jqwotos (https://keybase.io/jqwotos) on keybase.
- I have a public key whose fingerprint is 32A7 2E6B A338 5170 B3E4 1683 47B4 C6FC 1F1C B004
To claim this, I am signing this object:
| i = 'AUG|UUU|GUA|CAU|UUG|UGU|GGG|AGU|CAC|CUG|GUU|GAG|GCG|UUG|UAU|UUG|GUU|UGU|GGC|GAG|CCC|GGC|UUU|UAC|CAG|UUA|GAG|AAU|UAC|UGA' | |
| x = '' | |
| convert = { | |
| 'A' : 'U', | |
| 'G' : 'C' | |
| } | |
| for letter in i: | |
| y += i | |
| if letter == "|": |
I hereby claim:
To claim this, I am signing this object:
| import requests | |
| BASE_URL = 'https://flipp.com' | |
| BACKEND_URL = 'https://backflipp.wishabi.com/flipp' | |
| SEARCH_URL = '%s/items/search' % BACKEND_URL | |
| ITEM_URL = '%s/items/' % BACKEND_URL | |
| def scrape_item(item_id): | |
| return requests.get( | |
| "%s/%s" % (ITEM_URL, item_id,) |
| # Usage Instructions | |
| # 1. Download the emails from Zoho | |
| # 2. Extract them into the proper folder name, default is Emails | |
| # 3. Run the script (in python3) and done! | |
| from os import chdir | |
| from glob import glob | |
| import re | |
| import csv |
| local obj = {} | |
| obj.__index = obj | |
| -- Heavily inspired by suggestion on stack overflow by Karsten S. (2019) | |
| -- https://stackoverflow.com/questions/54151343/how-to-move-an-application-between-monitors-in-hammerspoon | |
| obj.name = "MoveScreens" | |
| obj.version = "1.0" | |
| obj.author = "Jason L." | |
| obj.license = "" |