jq 'map(.foo)'
[ { foo: 1 }, { foo: 2 } ]
[1, 2]
#!/bin/bash | |
# A stupid encrypted calculator | |
echo 'Creating private key' | |
openssl genrsa 1025 > /tmp/key.pem | |
echo 'Creating a request that a CA may sign' | |
openssl req -new -key /tmp/key.pem -config config > /tmp/cert-request | |
echo 'Acting as a CA and self-signing certifate' |
;; yas-edit.el -- Quickly edit yas snippets | |
;; Copyright Tal Wrii ([email protected]) | |
;; LICENSED UNDER GPLv3 | |
(require 'yasnippet) | |
(defvar yas-edit-callback nil) | |
(defvar yas-edit-last nil "The last snippet expanded") | |
(defun yas-edit (prefix) | |
(interactive "P") |
These notes are the noter-takers interpretations of the interesting information in the talks.
The order of the material is not maintained, and some content is omitted.
Additional interpretation of the material has been added and though some of this is marked as such, other interpretations likely are not.
I would like to thank the authors for their talks.
These notes are the noter-taker’s interpretation of the interesting information in the talks.
The order of the material is not maintained, and some content is omitted. These notes were taken quite quickly so their may be factual errors
Additional interpretation of the material has been added and though some of this is marked as such, other interpretations likely are not.
I would like to thank the authors for their talks.
;;; dump-keys.el -- Output emacs keybindings in a format suitable for grepping | |
;;; Maintained by Tal Wrii | |
;;; Copyright Tal Wrii 2017 | |
;;; Copyright Justin Burkett 2015 (redistributed under GPLv3) | |
;;; This is highly influenced by Justin Burkett's which-keys.el | |
;;; and used its code as starting point | |
;;; Justin Burkett therefore has copyright over some of this code (as does Tal Wrii) | |
;;; Tal Wrii is of course responsible for everything bad about this code |