Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
## ------------------------------------------------------------------------------------------------ | |
# Schema published automatically on the website. This allows TOML language | |
# servers to autocomplete and show documentation for the entries below. | |
# | |
# I use the prerelease version as my builds on my machines are often from trunk. | |
"$schema" = "https://jj-vcs.github.io/jj/prerelease/config-schema.json" | |
## ------------------------------------------------------------------------------------------------ | |
## ---- Basic settings |
import UIKit | |
import Foundation | |
// NOTE: This playground shows how to use Swift's AttributedString with Markdown. | |
// | |
// This code was used to display Markdown content in the Tot iOS Widget <https://tot.rocks> | |
// MARK: - Helpful Links | |
// NOTE: The following links helped me figure this stuff out. |
DROP TABLE if exists d_date; | |
CREATE TABLE d_date | |
( | |
date_dim_id INT NOT NULL, | |
date_actual DATE NOT NULL, | |
epoch BIGINT NOT NULL, | |
day_suffix VARCHAR(4) NOT NULL, | |
day_name VARCHAR(9) NOT NULL, | |
day_of_week INT NOT NULL, |
""" | |
When run in cron, automatically adds compliant alias names to local DNS. | |
Use at your own risk. | |
Patrick Fuller, 25 June 17 | |
""" | |
import re | |
import paramiko | |
import pymongo |
Suppose you have weird taste and you absolutely want:
#!/bin/bash | |
# rubygem is required | |
# yard is required: gem install yard | |
# doc_to_dash is required: gem install doc_to_dash | |
GEM_NAME_PREFIX=$1 | |
DOCSET_DIR=$2 | |
TMP_DIR=$(mktemp -d) |
These are the Kickstarter Engineering and Data role definitions for both teams.
group :development do | |
# Replace the old aws gem with this one (or newer): | |
gem "aws-sdk-core", "2.0.0.rc15" | |
end |