I hereby claim:
- I am emallson on github.
- I am emallson (https://keybase.io/emallson) on keybase.
- I have a public key whose fingerprint is D39B 20B2 44CD 4B28 CBDA FCDB 5B5F B935 6A03 AA98
To claim this, I am signing this object:
| ;; woah! you actually came here! As a reward, I'll let you in on a secret: | |
| ;; I'm just making fun of the proliferation of `C-u`'s in the linked post. | |
| ;; however, at least the 4th and 6th order de-duplicates are actually feasible. | |
| ;; The 4th order one would be some implementation of unit-level code analysis, while | |
| ;; the 6th is trivial. You can write that one yourself! | |
| ;; for those of you that have no idea what the hell I'm talking about, see here: | |
| ;; http://atlanis.net/blog/de-duplicate-el.html |
| ;;; nodejs-repl-eval.el --- Summary | |
| ;;; Commentary: | |
| ;;; | |
| ;;; Evaluation functions for the `nodejs-repl' package. Written on a stormy | |
| ;;; night between days of node hacking. | |
| ;;; | |
| ;;; Code: | |
| (require 'js2-mode) | |
| (require 'nodejs-repl) |
| #!/usr/bin/env python3 | |
| import json | |
| import argparse | |
| import subprocess | |
| import os | |
| import pip | |
| def find_package_root(): | |
| path = os.path.abspath('.') | |
| files = [f for f in os.listdir(path) if os.path.isfile(os.path.join(path, f))] |
I hereby claim:
To claim this, I am signing this object:
| ;;; narrow-reindent.el | |
| ;;; | |
| ;;; Summary: | |
| ;;; | |
| ;;; Defines a minor mode `narrow-reindent-mode' that reindents the region | |
| ;;; narrowed to. The region is then indented again after widening the buffer. | |
| ;;; | |
| ;;; Code: | |
| (defvar-local narrow-reindent--point-min 0) |
| ;;; -*- lexical-binding: t; -*- | |
| ;;; auto-commit-msg.el --- Fetch and insert commit messages. | |
| ;;; Commentary: | |
| ;; "Generates" commit messages automatically by making a request to `whatthecommit.com'. | |
| ;;; Code: | |
| ; note: (el-get-install 'request) or (package-install 'request) |
| from twython import Twython, TwythonRateLimitError, TwythonError | |
| from glob import glob | |
| from util import sleep_until | |
| from csv import DictReader, DictWriter | |
| import os | |
| APP_KEY = '' | |
| ACCESS_TOKEN = '' | |
| tw = Twython(APP_KEY, access_token=ACCESS_TOKEN) |
| (require 'ov) | |
| (defcustom symbol-overlay-alist nil | |
| "Alist used to overlay symbols in `symbol-overlay-mode'. Each | |
| key should be a regexp, and each value should be the string to | |
| be displayed in the overlay." | |
| :type 'alist | |
| :group 'symbol-overlay) | |
| (defun symbol-overlay-modification-hook (overlay afterp _beg _end &optional len) |