Revamp of https://gist.github.com/ebullient/41d2e9159e32e6a16510836c33d9df0f without Dataview
I'm using JS Engine with CustomJS to replace what Dataview used to do.
CustomJS files:
- _utils.js - general utility functions
Revamp of https://gist.github.com/ebullient/41d2e9159e32e6a16510836c33d9df0f without Dataview
I'm using JS Engine with CustomJS to replace what Dataview used to do.
CustomJS files:
Too much to explain. But here are some related scripts for managing / creating session notes.
| # Missing files with Custom JS | |
| There are two parts: missing.js and missing.md | |
| - `missing.js` is a CustomJS script (placed where you would store CustomJS scripts in your vault) | |
| - `missing.md` is the target file (contents between HTML comments are overwritten) | |
| The path to `missing.md` must be specified in `missing.js`. | |
I hereby claim:
To claim this, I am signing this object:
| # ZSH configuration without oh-my-zsh | |
| I stuff everything into a .zsh directory to keep the dir tree slimmer, which means I have a `.zshenv` file that contains: | |
| ``` | |
| ZDOTDIR=~/.zsh | |
| ``` | |
| All of the files and settings below then live in the `~/.zsh` directory | |
| The referenced git-prompt.sh file is from |
CustomJS files:
| #!/usr/bin/env bash | |
| # You must have sudo ability on your machine | |
| machine=$1 | |
| if [ -z $machine ]; then | |
| echo "usage $0 {machine_name}" | |
| exit | |
| fi | |
| docker-machine ls | grep ${machine} | |
| if [ $? == 1 ]; then | |
| echo "${machine} is not a docker-machine" |