Skip to content

Instantly share code, notes, and snippets.

View aquatix's full-sized avatar

Michiel Scholten aquatix

View GitHub Profile
@aquatix
aquatix / tarball2git.sh
Last active August 29, 2015 13:58
Convert a directory with backup tarballs to a Git repository
#!/bin/bash
if [ -z "$1" ]; then
echo "Missing source directory (dir with the tarballs)"
echo "usage:"
echo " tarball2git.sh <backupdir> <gitrepo>"
elif [ -z "$2" ]; then
echo "Missing git repository directory"
echo "usage:"
echo " tarball2git.sh <backupdir> <gitrepo>"
else
@aquatix
aquatix / kontent.yml
Created January 7, 2015 16:07
kontent.yml
# ~/.tmuxinator/kontent.yml
name: kontent
root: ~/workspace/projects/github/kontent/kontent
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start

Keybase proof

I hereby claim:

  • I am aquatix on github.
  • I am aquatix (https://keybase.io/aquatix) on keybase.
  • I have a public key ASA6DymyULWGgvTad9N0ttO76YqD1X303B6XbflvHnccJwo

To claim this, I am signing this object:

@aquatix
aquatix / frontmatter-highlighting-mocha.css
Last active October 17, 2022 14:59
Obsidian Prism frontmatter highlighting
/* color YAML value text */
span.cm-meta.cm-hmd-frontmatter + span.cm-hmd-frontmatter {
/* color: blue; */
color: var(--orange200);
}
/* color YAML value - if it's a number */
span.cm-number.cm-hmd-frontmatter {
/* color: pink !important; */
color: var(--pink300) !important;