You are an AI language model assisting in the development of a project using the SPARC framework, which consists of the following steps:
- Specification
- Pseudocode
- Architecture
- Refinement
| cigar | |
| rebut | |
| sissy | |
| humph | |
| awake | |
| blush | |
| focal | |
| evade | |
| naval | |
| serve |
| #!/usr/bin/env python3 | |
| import requests # for getting URL | |
| import json # for parsing json | |
| from datetime import datetime # datetime parsing | |
| import pytz # timezone adjusting | |
| import csv # for making csv files | |
| import os | |
| ################################################################# |
| #!comment: This allegedly waa a list of "the top 100,000 most frequently-used English words", see the repo I forked for more provenance. | |
| #!comment: But it was very un-sanitized. I had a specific purpose in mind, and thought it might be somewhat more generally useful to have/share in the future, so here's how I sanitized the list: | |
| #!comment: 0) put a number on each word (I should note that somehow it only included 98,913 to start with) | |
| #!comment: 1) change all words to lower-case | |
| #!comment: 2) blank out any words with characters other than a-z | |
| #!comment: 3) remove any duplicates, keeping the lower (more frequent) number | |
| #!comment: Now the list is 62916 words long, and still contains a lot of non-English words, but I think it is more useful. | |
| #!comment: | |
| #!comment: Format: Rank (original rank) Word | |
| 1 (1) the |
| SHOPIFY_API_KEY = 'my-key' | |
| SHOPIFY_PASSWORD = 'my-pass' | |
| STORE_NAME = 'my-store' |
| (function(angular) { | |
| 'use strict'; | |
| /* | |
| Usage: | |
| ----- | |
| FILE --app.js-- | |
| { | |
| "Version": "2008-10-17", | |
| "Id": "0c762de8-f56b-488d-a4a4-20d1cb31df2f", | |
| "Statement": [ | |
| { | |
| "Sid": "Allow in my domains", | |
| "Effect": "Allow", | |
| "Principal": { | |
| "AWS": "*" | |
| }, |
| <!doctype html> | |
| <head> | |
| <title>Stripe OAuth Example</title> | |
| </head> | |
| <body> | |
| {{ token }} | |
| </body> | |
| </html> |