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
''' usage: python folderize.py /path/to_process/ ''' | |
import os | |
import shutil | |
import sys | |
def generate_dir(files: str, dir: str): | |
for file in files: | |
old_path = os.path.join(dir, file) |
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
const stateHash: Record<string, string> = { | |
AL: "Alabama", | |
AK: "Alaska", | |
AZ: "Arizona", | |
AR: "Arkansas", | |
CA: "California", | |
CO: "Colorado", | |
CT: "Connecticut", | |
DE: "Delaware", | |
FL: "Florida", |
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
<form id="contactform" action-xhr="//formspree.io/[email protected]" method="POST"> | |
<label class="www-example-label bold mb3">Send a message</label> | |
<input type="hidden" name="_next" value="//resume/thanks/"> | |
<div class="flex flex-column items-center"> | |
<div class="ampstart-input inline-block relative m0 p0 mb3 "> | |
<input type="email" name="email" id="ip1" class="block border-none p0 m0 user-valid valid" placeholder="Your email"> | |
<label for="ip1" class="absolute top-0 right-0 bottom-0 left-0" aria-hidden="true">Your email</label> | |
</div> | |
</div> | |
<div class="ampstart-input inline-block relative m0 p0 mb3 "> |