This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%* | |
const format = 'blub'; // default format | |
// let metadataType = await tp.system.prompt('Enter the type of metadata (Priority, Repeat, Start, Scheduled, Due, Created, Completion)'); | |
const metadataTypes = ['priority', 'repeat', 'start', 'scheduled', 'due', 'created', 'completion']; | |
const priorityTypes = ['highest', 'high', 'medium', 'low', 'due', 'lowest']; | |
const metadataType = await tp.system.suggester(metadataTypes, metadataTypes, true, 'Select the type of metadata'); | |
let metadata; | |
I hereby claim:
- I am heroheman on github.
- I am florenzhelderman (https://keybase.io/florenzhelderman) on keybase.
- I have a public key ASBsb9CVUZgjNv-6qYcFqdaIyo2RYVbuuBdqP6ivdYdTywo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Logging stuff. | |
function e_header() { echo -e "\n\033[1m$@\033[0m"; } | |
function e_success() { echo -e " \033[1;32m✔\033[0m $@"; } | |
function e_error() { echo -e " \033[1;31m✖\033[0m $@"; } | |
function e_arrow() { echo -e " \033[1;34m➜\033[0m $@"; } | |
e_header 'Update System' | |
e_arrow 'sudo apt update' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Function: RELATIVENUMBER"{{{ | |
set relativenumber | |
" toggle line numbering mode | |
if exists("+relativenumber") | |
if v:version >= 400 | |
set number | |
endif | |
set relativenumber " show relative line numbers | |
set numberwidth=3 " narrow number column | |
" cycles between relative / absolute / no numbering |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="teaser"> | |
<div class=teaser__img> | |
<img src=http://placehold.it/350x100 | |
</div> | |
<p class=teaser__text> | |
lorem ipsum | |
</p> | |
</div> | |
<div class="teaser--small no-js"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="teaser"> | |
<div class=teaser__img> | |
<img src=http://placehold.it/350x100 | |
</div> | |
<p class=teaser__text> | |
lorem ipsum | |
</p> | |
</div> | |
<div class="teaser--small no-js"> |
NewerOlder