Skip to content

Instantly share code, notes, and snippets.

View ataraxies's full-sized avatar

ataraxies ataraxies

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ataraxies
ataraxies / 1_writing_goals_setup.md
Last active March 2, 2024 11:35 — forked from chetachiezikeuzor/1_writing_goals_setup.md
Creates a writing goals status board for an active Obsidian note using dataview.js.

Writing Goals Status Board

writing_goals_status_board.mp4

Getting Started

  • Install Dataview
@ataraxies
ataraxies / dontforget.bash
Last active March 2, 2024 11:35 — forked from ttscoff/dontforget.bash
Quick reminders from Terminal (bash)
#!/bin/bash
# dontforget
#
# A stupid script for short term reminders in bash
#
# Arguments just need to contain a number and a bunch of words.
#
# The number can be anywhere in the arguments, but there shouldn't
# be any other numeric digits.
#
@ataraxies
ataraxies / string-utils.js
Last active March 2, 2024 11:35 — forked from jonlabelle/string-utils.js
Useful collection of JavaScript string utilities.
// String utils
//
// resources:
// -- mout, https://github.com/mout/mout/tree/master/src/string
/**
* "Safer" String.toLowerCase()
*/
function lowerCase(str) {
return str.toLowerCase();