brew install redis
Set up launchctl to auto start redis
$ ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
/usr/local/opt/redis/
is a symlink to /usr/local/Cellar/redis/x.y.z
(e.g., 2.8.7
)
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
We're gauging interest in forming some kind of an informal group of lone data journalists to help us better connect and collaborate. If you're interested, please fill out our form and we'll go from there. Thanks!
{ | |
"env": { | |
"browser": true, | |
"node": true, | |
"es6": true | |
}, | |
"plugins": ["react"], | |
"ecmaFeatures": { |
#!/usr/bin/python | |
import os | |
import sys | |
import subprocess | |
import random | |
import re | |
from time import sleep | |
import shlex | |
from ipaddress import ip_address | |
from termcolor import colored,cprint |
// foam-obsidian-importer.js | |
// Import from obsidian to foam | |
// | |
// • Copy all files recursively from SRC_DIR to DST_DIR. | |
// • For each .md file: | |
// - rename to kebab-case.md | |
// - add header "# filename /n/n" | |
// - fix internal links and attachments links | |
// • Copy any other (non .md) file. | |
// |