Skip to content

Instantly share code, notes, and snippets.

View icedwater's full-sized avatar
😅
I may be slow to respond.

icedwater icedwater

😅
I may be slow to respond.
View GitHub Profile
@icedwater
icedwater / cli-start-dendron.md
Created November 20, 2021 06:31
Notes on getting started with command-line dendron

Getting Started

So you want to write notes in dendron without installing [[Visual Studio Code]]? Me too! I love [[vim]], so I wanted to be able to use dendron from there. Here's how I did it with [[node]] from the [[command line]].

Prerequisites

  • patience
@icedwater
icedwater / keybase.md
Created December 26, 2018 04:03
Verifying...

Keybase proof

I hereby claim:

  • I am icedwater on github.
  • I am icedwater (https://keybase.io/icedwater) on keybase.
  • I have a public key whose fingerprint is 66B2 E601 A773 4A40 0CE6 627B B79A F267 BD81 D3D8

To claim this, I am signing this object:

@icedwater
icedwater / each_cell_on_its_own_line
Last active March 2, 2021 18:57 — forked from nmz787/each_cell_on_its_own_line
git-xlsx-textconv-python
import xlrd
import sys
if __name__ == '__main__':
if len(sys.argv) != 2:
print "Usage: git-xlsx-textconv file.xlsx"
excelFileName = sys.argv[1]
xlFile = xlrd.open_workbook(excelFileName)
#!/usr/bin/env python
# Copyright (c) 2008 Carnegie Mellon University.
#
# You may modify and redistribute this file under the same terms as
# the CMU Sphinx system. See
# http://cmusphinx.sourceforge.net/html/LICENSE for more information.
import pygtk
pygtk.require('2.0')
@icedwater
icedwater / jmp4less
Created November 27, 2014 08:30
.lessfilter to handle mp4 and json files - depends on aeson-pretty and mplayer
#!/bin/sh
case "$1" in
*.extension)
extension-handler "$1"
;;
*.json)
cat "$1" | aeson-pretty
;;