This is a (very) simple Flask application that shows how the built-in Python buildpack detection on Cloud Foundry works.
To push to Cloud Foundry, log in and then use
$ cf push myapp-name
| import datetime | |
| from operator import itemgetter | |
| def get_int_input(prompt, min_=0, max_=None): | |
| """Get a valid integer input.""" | |
| while True: | |
| try: | |
| i = int(input(prompt)) | |
| except ValueError: | |
| print("Please enter an integer.") |
| class Cached(object): | |
| """Cache classes with positional arguments.""" | |
| _cache = {} | |
| def __new__(cls, *args): | |
| if args not in cls._cache: | |
| cls._cache[args] = super(Cached, cls).__new__(cls) | |
| return cls._cache[args] | |
| """Functionality for validating user inputs.""" | |
| # pylint: disable=too-few-public-methods | |
| from __future__ import print_function | |
| import getpass | |
| import re | |
| import string | |
| import sys |
| class Switch(object): | |
| """A class for faking switch syntax with a context manager. | |
| Args: | |
| value (object): The stored value to compare any cases to. | |
| Example: | |
| >>> with Switch(1) as case: | |
| ... if case(1): |
| """Find the overlap of actors between multiple movies.""" | |
| from __future__ import print_function | |
| import argparse | |
| from operator import itemgetter | |
| from sys import argv, exit | |
| try: | |
| from imdb import IMDb |
| # JetBrains-style | |
| '.platform-darwin': | |
| 'cmd-1': 'tree-view:toggle' | |
| 'cmd-shift-a': 'command-palette:toggle' | |
| '.platform-darwin .tree-view': | |
| 'cmd-1': 'tree-view:toggle' | |
| '.platform-darwin atom-text-editor': | |
| 'cmd-b': 'symbols-view:go-to-declaration' | |
| 'cmd-d': 'editor:duplicate-lines' | |
| 'cmd-l': 'go-to-line:toggle' |
This is a (very) simple Flask application that shows how the built-in Python buildpack detection on Cloud Foundry works.
To push to Cloud Foundry, log in and then use
$ cf push myapp-name
| #!/usr/bin/env bash | |
| SCM_THEME_PROMPT_DIRTY=" ${red}✗" | |
| SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓" | |
| SCM_THEME_PROMPT_PREFIX=" |" | |
| SCM_THEME_PROMPT_SUFFIX="${green}|" | |
| GIT_THEME_PROMPT_DIRTY=" ${red}✗" | |
| GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓" | |
| GIT_THEME_PROMPT_PREFIX=" ${green}|" | |
| GIT_THEME_PROMPT_SUFFIX="${green}|" |
| VERB_QUIET = 0 | |
| class VerbosityLevel(object): | |
| def __init__(self, level): | |
| self.level = level | |
| def __get__(self, obj, _): | |
| return obj.level >= self.level |
| var cell = new Array(3); | |
| for (i = 0; i < 3; i++) { | |
| cell[i] = new Array(3); | |
| } | |
| var newCell = new Array(3); | |
| for (i = 0; i < 3; i++) { | |
| newCell[i] = new Array(3); | |
| } |