- Pot
- Skillet
- Fork Set
- Knife
- Cutting Board
- Spatula
- Cup/Mug
- Bowls
This file contains hidden or 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
| { | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.DS_Store": true, | |
| "**/__pycache__": true, | |
| ".cache": true, | |
| "**/*.py[co]": true, | |
| "bin" : true, | |
| "lib" : true, |
This file contains hidden or 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
| import sys | |
| from datetime import date, datetime | |
| def when_should_we_go_home(toasty_birth_date): | |
| if toasty_birth_date <= date(2017, 10, 28): | |
| return (date(2017, 10, 29), date(2017, 10, 30)) |
This file contains hidden or 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
| Unregistered Domains on the Million Dollar Homepage (as of 1/7/2016) | |
| www.googabay.com: 100 | |
| www.lachicfantastique.com: 100 | |
| www.motopixelpage.com: 100 | |
| www.scamwatchglobal.com: 100 | |
| www.mdseigelart.com: 100 | |
| www.cr8ingdigitalart.com: 400 | |
| www.rakebackdeals.co.uk: 100 | |
| www.arleenllewellyn.com: 100 |
This file contains hidden or 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
| import sys | |
| import importlib | |
| class SettingsWrapper: | |
| def __init__(self, settings_module=None): | |
| settings_module = sys.environ['APP_SETTINGS_MODULE'] | |
| self.wrapped = importlib.__import__(settings_module) |
NewerOlder