How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/
// ==UserScript== | |
// @name Enhanced-PDF Extension for Roam Research | |
// @author hungriesthippo <https://github.com/hungriesthippo> & CCC <https://github.com/c3founder> | |
// @require - | |
// @version 0.9 | |
// @match https://*.roamresearch.com | |
// @description Handle PDF Highlights. | |
// MAIN OUTPUT MODES: | |
// 1) cousin | |
// Highlights are added as the cousin block. |
Sample from The Man Who Was Thursday | |
G. K. Chesterton | |
Ngày 19 tháng 11 năm 2020 Content | |
The suburb of Saffron Park lay on the sunset side of London | |
Ngày 19 tháng 11 năm 2020 Content | |
was built of a bright brick throughout; its sky-line was fantastic, and even its ground plan was wild. It | |
Ngày 19 tháng 11 năm 2020 Content | |
the outburst of a speculative builder, faintly tinged with art, who called its architecture sometimes Elizabethan and sometimes Queen Anne, apparently under the impression that the two sovereigns were identical. It |
#lang racket | |
;; Code for the little schemer | |
(define (atom? x) | |
(and (not (pair? x)) | |
(not (null? x)))) | |
(define (lat? l) | |
(cond ((null? l) #t) |
{ | |
"aigoals": { | |
"versions": [ | |
{ | |
"description": "Enables | Disables Drawing AI Goals", | |
"permission": "any", | |
"overloads": { | |
"default": { | |
"input": { |
{ | |
"closewebsocket": { | |
"versions": [ | |
{ | |
"description": "commands.closewebsocket.description", | |
"permission": "any", | |
"is_hidden": true, | |
"overloads": { | |
"default": { |
For advanced users, a syntax highlighter for sublime text and | |
textmate which makes reading the list easier can be found here: | |
https://gist.github.com/jocopa3/e4a35921e4f978572e7f45360d231f37 | |
============ Blocks ============ | |
All blocks as found in the 1.1.0.0 Block::initBlocks function. | |
Block names are the same names used in the /give command. | |
Name Id Data |
{ | |
"body": { | |
"input": { | |
"message": "Hello World" | |
}, | |
"origin": { | |
"type": "player" | |
}, | |
"name": "say", | |
"version": 1, |
// To subscribe to an event, pass this JSON text to the client through the WebSocket: | |
{ | |
"body": { | |
"eventName": "NameOfEvent" // Replace with an event name listed below | |
}, | |
"header": { | |
"requestId": "xxxxxxxx-xxxx-xxxx-xxxxxxxxxxxxxxxxx", // UUID | |
"messagePurpose": "subscribe", | |
"version": 1, // Protocol version (currently 1 as-of 1.0.2) |
// For more information about available commands, look at the commands/standard.json file in the game's assets. | |
{ | |
"body": { | |
"input": {}, // Command inputs go here | |
"origin": { | |
"type": "player" // Where the command originates from | |
}, | |
"name": "name-of-command", // Command name goes here (i.e. for /say, enter "say") | |
"version": 1, |
Thanks to this article by Christoph Berg
Directories and files
~/