This file contains 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
<html> | |
<p> | |
良い本、普通の本は他の人が挙げると思うので、他の人が挙げなさそうなものをできるだけ選んでみます。 | |
</p> | |
<hr><pre> | |
Bernhard Korte and Jens Vygen, | |
"Combinatorial Optimization, theory and algorithms", | |
Springer | |
</pre> | |
<p> |
This file contains 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
;;; punch.el --- punctuation switcher | |
;; Copyright (C) 2013 Yuto HAYAMIZU | |
;; Author: Yuto HAYAMIZU <[email protected]> | |
;; Keywords: input method | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
This file contains 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 ruby | |
require 'optparse' | |
def parse_args(argv) | |
opt = Hash.new | |
parser = OptionParser.new | |
parser.banner = "#{$0} [options] INPUT_PDF_FILE" |