Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
# 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> |
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 |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft
, elem.offsetTop
, elem.offsetWidth
, elem.offsetHeight
, elem.offsetParent
var scrollmation_parent = document.getElementById(parent_el).nextElementSibling; | |
var easing = { | |
linear: function (t) { return t; }, | |
easeInQuad: function (t) { return t*t; }, | |
easeOutQuad: function (t) { return t*(2-t); }, | |
easeInOutQuad: function (t) { return t < 0.5 ? 2*t*t : -1+(4-2*t)*t; }, | |
easeInCubic: function (t) { return t*t*t; }, | |
easeOutCubic: function (t) { return (--t)*t*t+1; }, | |
easeInOutCubic: function (t) { return t < 0.5 ? 4*t*t*t : (t-1)*(2*t-2)*(2*t-2)+1; }, |
<?php | |
// sorted array must be a 0 indexed | |
// left most index, right most index all inclusive | |
// finds all of the elements coming from the left to the right that is less or equal to the key | |
function bisect_right($sorted_array, $key, $left = null, $right = null){ | |
if(is_null($left)){ | |
reset($sorted_array); | |
$left = key($sorted_array); |
#!/bin/bash | |
# | |
# Scroll down for juicy configuration and code. | |
# | |
# This work is licensed under the MIT license, which allows for commercial re-use, | |
# does not require back-contributions, isn't viral, and requires attribution. | |
# That's the plain english version of the full license text, below. Additionally, | |
# the following std_disclaimer applies: | |
# | |
# I do not accept responsibility for any effects, adverse or otherwise, |