This file contains hidden or 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
(require 'org-table) | |
(require 'org-clock) | |
(defun clocktable-by-tag/shift-cell (n) | |
(let ((str "")) | |
(dotimes (i n) | |
(setq str (concat str "| "))) | |
str)) | |
(defun clocktable-by-tag/insert-tag (params) |
This file contains hidden or 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
1 | |
00:00:08,0 --> 00:00:10,0 | |
あぁ!僕のテキストファイルが! | |
2 | |
00:00:18,300 --> 00:00:19,500 | |
ハーイ、ジョージィ! | |
3 | |
00:00:23,0 --> 00:00:25,0 |
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- coding:utf-8 -*- | |
""" | |
evnt2org | |
convert html text that is exported from Evernote to org-mode | |
""" | |
import urllib |
This file contains hidden or 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
#!/opt/local/bin/perl | |
# | |
# Modified by @takaxp | |
# Last Update: 2014-04-11@22:27 | |
# 2013-12-25: skip source blocks specified as ":exports no" | |
# 2012-01-09: support date([YYYY-MM-DD XX]) insertion | |
# 2012-01-09: support #+BEGIN_SRC | |
# 2011-11-16: use strict and warnings | |
# 2011-11-16: Add conversion from numeric items to ` - '. | |
# 2011-11-16: Skip headers, if #+TITLE: is, use it as the top headline. |