Skip to content

Instantly share code, notes, and snippets.

@oxtopus
oxtopus / README.md
Last active August 29, 2015 14:21
issue #2115
$ pip install --upgrade pip --user
You are using pip version 6.1.1, however version 7.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
/Users/amarshall/Library/Python/2.7/lib/python/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Collecting pip
Downloading pip-7.0.1-py2.py3-none-any.whl (1.1MB)
100% |████████████████████████████████| 1.1MB 160kB/s
Installing collected packages: pip
Found existing installation: pip 6.1.1
core@core-01 ~ $ docker run \
> --name nupic-mysql \
> -e MYSQL_ROOT_PASSWORD=nupic \
> -p 3306:3306 \
> -d \
> mysql:5.6
Unable to find image 'mysql:5.6' locally
5.6: Pulling from mysql
9d3ceacde91b: Pull complete
.
├── setup.py
├── some_python_project
│   └── __init__.py
└── some_python_project.egg-info
├── PKG-INFO
├── SOURCES.txt
├── dependency_links.txt
└── top_level.txt
@oxtopus
oxtopus / README.md
Last active June 10, 2017 19:02 — forked from bcavagnolo/asset-store-spec.md
asset store spec

Asset Store

webapp.py comprises a simple web application to host assets such that:

  • Every asset that we store has an "asset name". There are some rules about asset names:
    • They must be globally unique across all assets
    • They can only contain alphanumeric ascii characters, underscores, and dashes
    • They cannot start with an underscore or dash
    • They must be between 4 and 64 characters long