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
# uncomment if you get no picture on HDMI for a default "safe" mode | |
#hdmi_safe=1 | |
# uncomment this if your display has a black border of unused pixels visible | |
# and your display can output without overscan | |
#disable_overscan=1 | |
# uncomment the following to adjust overscan. Use positive numbers if console | |
# goes off screen, and negative if there is too much border | |
#overscan_left=16 |
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 python2.7 | |
""" | |
Extract records from multi-fasta | |
""" | |
__author__ = 'Yasunobu OKAMURA' | |
__copyright__ = 'Copyright (C) 2012 Yasunobu OKAMURA All Rights Reserved.' | |
import argparse |
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 | |
# -*- python -*- | |
__author__ = 'Yasunobu OKAMURA' | |
__copyright__ = 'Copyright (c) 2014 Y.Okamura' | |
__license__ = 'GPLv3+' | |
import HTMLParser | |
import urllib | |
import argparse |
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
__author__ = "Yasunobu OKAMURA" | |
__copyright__ = "Copyright (c) 2012 Y.Okamura" | |
__license__ = "GPL v3+" | |
import xml.parsers.expat | |
import networkx as nx | |
class XGMMLParserHelper(object): | |
""" | |
""" |
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
(global-set-key (kbd "<up>") 'suspend-frame) | |
(global-set-key (kbd "<down>") 'suspend-frame) | |
(global-set-key (kbd "<left>") 'suspend-frame) | |
(global-set-key (kbd "<right>") 'suspend-frame) |
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 | |
__author__ = "Y.Okamura <okamura=AT=informationsea.info>" | |
__copyright__ = "Copyright (C) 2013 Y.Okamura" | |
__license__ = "GPL3 or later" | |
import argparse | |
import csv | |
import sys | |
import itertools |
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 | |
__author__ = 'Y.OKAMURA <okamura=AT=informationsea.info>' | |
__copyright__ = 'Copyright (C) 2013 Y.OKAMURA' | |
__license__ = 'GPL3+' | |
import argparse | |
import re | |
import sys |
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
=== modified file 'configure.ac' | |
--- configure.ac 2013-01-16 08:08:34 +0000 | |
+++ configure.ac 2013-01-25 13:05:34 +0000 | |
@@ -4322,7 +4322,7 @@ | |
## 0x690 is the total size of 30 segment load commands (at 56 | |
## each); under Cocoa 31 commands are required. | |
if test "$HAVE_NS" = "yes"; then | |
- libs_nsgui="-framework AppKit" | |
+ libs_nsgui="-framework AppKit -framework Carbon" | |
headerpad_extra=6C8 |
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 | |
__author__ = "OKAMURA Yasunobu" | |
__license__ = "GPL3+" | |
import argparse | |
import csv | |
import sys | |
def _main(): |
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
(when (>= emacs-major-version 24) ;; for cocoa emacs | |
(if (eq window-system 'ns) | |
(progn | |
(setq mac-mouse-wheel-smooth-scroll t) | |
(dolist (dir (list | |
"/sbin" | |
"/usr/sbin" | |
"/bin" |