Skip to content

Instantly share code, notes, and snippets.

View takaxp's full-sized avatar
🦄
Emacs Org Mode

Takaaki ISHIKAWA takaxp

🦄
Emacs Org Mode
View GitHub Profile
(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)
@takaxp
takaxp / pennywize.srt
Last active October 3, 2018 18:27 — forked from mattn/pennywize.srt
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
@takaxp
takaxp / evnt2org.py
Created December 17, 2011 07:09 — forked from yono/evnt2org.py
Evernote から Export した HTML を Org-mode 形式に変換するスクリプト
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
evnt2org
convert html text that is exported from Evernote to org-mode
"""
import urllib
@takaxp
takaxp / org2doku
Last active October 14, 2019 06:26 — forked from takumikinjo/org2doku
Convert Emacs org-mode formatted text to Dokuwiki formatted one.
#!/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.