Ref: https://gist.github.com/rnwolf/e09ae9ad6d3ac759767d129d52cab1f1
| Key Binding | Description |
|---|---|
| SPC | < space > |
| RET | < return > |
| C | < ctrl > |
| M | < alt >, M stands for Meta |
| ;; Needs terminal-notifier (brew install terminal-notifier) | |
| (defun notify-osx (title message) | |
| (call-process "terminal-notifier" | |
| nil 0 nil | |
| "-group" "Emacs" | |
| "-title" title | |
| "-sender" "org.gnu.Emacs" | |
| "-message" message)) | |
| ;; org-pomodoro mode hooks |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: {name: aidbox-ops} | |
| --- | |
| kind: Deployment | |
| apiVersion: apps/v1 | |
| metadata: {name: aidbox-ops, namespace: aidbox-ops} | |
| spec: | |
| replicas: 1 | |
| selector: |
| // 1. Open the browser developper console on the network tab | |
| // 2. Start the video | |
| // 3. In the dev tab, locate the load of the "master.json" file, copy its full URL | |
| // 4. Run: node vimeo-downloader.js "<URL>" | |
| // 5. Combine the m4v and m4a files with mkvmerge | |
| const fs = require('fs'); | |
| const url = require('url'); | |
| const https = require('https'); |
| SPC | |
| SPC: find file | |
| , switch buffer | |
| . browse files | |
| : MX | |
| ; EX | |
| < switch buffer | |
| ` eval | |
| u universal arg | |
| x pop up scratch |
Ref: https://gist.github.com/rnwolf/e09ae9ad6d3ac759767d129d52cab1f1
| Key Binding | Description |
|---|---|
| SPC | < space > |
| RET | < return > |
| C | < ctrl > |
| M | < alt >, M stands for Meta |
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required |