Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| # sample invocation: | |
| # pdftotext -f 5 /tmp/The_Complete_Works_of_H.P._Lovecraft.pdf - | python3 horror.py | uniq > lovecraft_word_pairs_sorted.txt | |
| import re | |
| import sys | |
| import nltk | |
| import wordfreq | |
| re_word = re.compile(r'[^\-\w]') |
| use std::thread; | |
| use std::sync::mpsc::{ channel, Sender }; | |
| enum Wrapped { | |
| A(f64), | |
| B(f64), | |
| } | |
| fn produce_a(sender: Sender<Wrapped>) { | |
| for i in 0 .. 5 { |
| import json | |
| from pprint import pprint as pp | |
| def jenks_matrices_init(data, n_classes): | |
| #fill the matrices with data+1 arrays of n_classes 0s | |
| lower_class_limits = [] | |
| variance_combinations = [] | |
| for i in xrange(0, len(data)+1): | |
| temp1 = [] | |
| temp2 = [] |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |