Skip to content

Instantly share code, notes, and snippets.

@ky0on
ky0on / backup_skim.sh
Last active November 1, 2023 06:14
Backup pdf annotations edited with skim.app
#!/bin/bash
tmp='/tmp/tmp.skim'
find . -type f -regex ".*\.pdf" | while IFS= read -r org; do
dst=$(echo "$org" | sed 's/\.pdf$/.skim/')
if skimnotes test "${org}"; then
if [ -e "${dst}" ]; then
# If .skim already exists
dragonfly
scissors
sunflower
cannon
okapi
lamp
accordion
cougar_face
gramophone
saxophone
@ky0on
ky0on / compare_nonhierarchical_clustering.r
Last active August 29, 2015 14:12
機構セミナー@2015年1月15日 に載せるグラフを生成するRスクリプト
##
## Compare methods for nonhierarchical clustering
##
## Please install following libraries in advance
## * LICORS
## * apcluster
##
## @athor kyon
## @created Jan. 2 2015
##