This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
| def _uppercase_for_dict_keys(lower_dict): | |
| upper_dict = {} | |
| for k, v in lower_dict.items(): | |
| if isinstance(v, dict): | |
| v = _uppercase_for_dict_keys(v) | |
| upper_dict[k.upper()] = v | |
| return upper_dict |
| #!/usr/bin/env python | |
| # Inspired by https://gist.github.com/jtangelder/e445e9a7f5e31c220be6 | |
| # Python3 http.server for Single Page Application | |
| import urllib.parse | |
| import http.server | |
| import socketserver | |
| import re | |
| from pathlib import Path |
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |
#User Stories - Overview
Authentication: User can signup/login/logout
Items for sale: User can view lists of items for sale and search by name, filter by price.
Shopping Cart: User can add items to shopping cart and the app remembers it next time you login. User can view all the items in their shopping cart. User can delete items in the shopping cart. Shopping cart uses an integer column to store "state".
Checkout: User can fill in form and submit billing info. After submitting billing info, items in the shopping cart will move to a different "state".
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| [ | |
| { | |
| "code": "AAA", | |
| "lat": "-17.3595", | |
| "lon": "-145.494", | |
| "name": "Anaa Airport", | |
| "city": "Anaa", | |
| "state": "Tuamotu-Gambier", | |
| "country": "French Polynesia", |
| #!/bin/sh | |
| # Usage: git-branch-backup.sh <remote> | |
| # Originally from jlecour but I can't find his version anymore | |
| if [ -z "$1" ] | |
| then | |
| remote='origin' | |
| else | |
| remote=$1 | |
| fi |