Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| from marrow.mongo import Document, utcnow | |
| from marrow.mongo.field import Date, Link | |
| from ..asset import Depend | |
| class Address(Document): | |
| """An embedded document representing a verified e-mail address. | |
| Intended for use in an Array() embedding these sub-documents. |
| # Note: No __collection__ defined on most of these. | |
| # They're for "embedding" (nesting) within a real collection-level document. | |
| from argon2 import PasswordHasher | |
| from argon2.exceptions import VerifyMismatchError | |
| from marrow.mongo import Document, Field, Index | |
| from marrow.mongo.trait import Queryabe, Identified | |
| from marrow.mongo.field import Reference, Set, String, ObjectId, Date, Embed, |
| -_- 😑 | |
| ;^P 🤪 | |
| ;P 😜 | |
| :'( 😢 | |
| :( 🙁 | |
| :) 🙂 | |
| :/ 😕 | |
| :^P 🤪 | |
| :| 😐 | |
| :3 😽 |
| # Project root. Cloned into /Volumes/<org>/<project> and symlinked to `~/Projects/<workspace>/src` if isolated as a | |
| # distinct project, or `~/Projects/<workspace>/<project>` if part of a collective work or business space alongside | |
| # others. | |
| # Project Metadata | |
| .gitignore # From template. | |
| .pre-commit-config.yaml # https://pre-commit.com | |
| .travis.yml # Test runner configuration. | |
| MANIFEST.in # Redistributable package inclusions. | |
| Makefile # Automatically re-pip's when the metadata updates, runs tests, tests depend on up-to-date metadata, etc. |
| from marrow.mongo import utcnow | |
| from marrow.mongo.trait import Identified | |
| from marrow.mongo.field import Date, Markdown, Reference | |
| from ..asset import Depend | |
| __all__ = ('Note', ) | |
| <!DOCTYPE html><html lang=en> | |
| <title>Page Not Found</title> | |
| <meta charset=utf-8> | |
| <meta name=viewport content="width=device-width,initial-scale=1"> | |
| <h1>Page Not Found</h1> | |
| <p>Sorry, but the page you were trying to view does not exist.</p> |
| // ==UserScript== | |
| // @name Open Youtube links in IINA | |
| // @namespace https://palfun-foslup.urbit.org/ | |
| // @description Replaces Youtube links with a link to open them in IINA. Set a useful whitelist for yourself. | |
| // @include *youtube.com/* | |
| // @updateURL https://gist.githubusercontent.com/Fang-/7db1ac4e798a7128f006fa535f42cfb0/raw/25b60b08e55be87d2b0d5630d1f580b15ca2870d/iina-youtube.js | |
| // @downloadURL https://gist.githubusercontent.com/Fang-/7db1ac4e798a7128f006fa535f42cfb0/raw/25b60b08e55be87d2b0d5630d1f580b15ca2870d/iina-youtube.js | |
| // @run-at document-end | |
| // @version 1.0 | |
| // ==/UserScript== |
| import datetime | |
| import itertools | |
| import random | |
| import sys | |
| import timeit | |
| from collections import defaultdict | |
| from pymongo import version as pymongo_version | |
| from distutils.version import StrictVersion | |
| import mongoengine as db | |
| from pycallgraph.output.graphviz import GraphvizOutput |