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
| /bin/sh ../libtool --tag=CC --mode=link i686-w64-mingw32-gcc -fno-strict-aliasing -g -O2 -Wall -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-pointer-sign -Wno-missing-field-initializers -Wformat=2 -Wstrict-aliasing=2 -Wdisabled-optimization -Wfloat-equal -Wpointer-arith -Wdeclaration-after-statement -Wbad-function-cast -Wcast-align -Wredundant-decls -version-info 0:0:0 -no-undefined -mwindows -o libgroonga.la -rpath /c/users/ongaeshi/work/rroonga/vendor/local/lib io.lo str.lo nfkc.lo snip.lo query.lo store.lo com.lo ql.lo scm.lo ctx.lo hash.lo db.lo pat.lo ii.lo token.lo proc.lo expr.lo util.lo plugin.lo output.lo geo.lo -lm -ladvapi32 -lws2_32 | |
| libtool: link: rm -fr .libs/libgroonga.a .libs/libgroonga.dll.a .libs/libgroonga.la .libs/libgroonga.lai | |
| libtool: link: i686-w64-mingw32-gcc -shared .libs/io.o .libs/str.o .libs/nfkc.o .libs/snip.o .libs/query.o .libs/store.o .libs/com.o .libs/ql.o .libs/scm.o .libs/ctx.o .libs/hash.o .libs/db.o .libs/pat.o .libs/ii.o .libs/token.o .libs/proc.o .libs |
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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
| <html lang="en"><head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
| <meta name="robots" content="NONE,NOARCHIVE"> | |
| <title>Groonga::InvalidArgument at /</title> | |
| <style type="text/css"> | |
| html * { padding:0; margin:0; } | |
| body * { padding:10px 20px; } |
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
| #! ruby | |
| require 'win32ole' | |
| wsh = WIN32OLE.new('Wscript.Shell') | |
| wsh.Popup(ARGV[0], # メッセージ本体 | |
| 0, # 待機時間 | |
| 'Message Box', # タイトル | |
| 4096) # オプション(メッセージボックスに応答するまですべてのアプリケーションを中断) |
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
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ;;anything | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| (require 'anything-startup) | |
| ; anything-for-filesの内容をカスタマイズ、anything-c-source-locateを除外 | |
| (setq anything-for-files-prefered-list | |
| '(anything-c-source-ffap-line | |
| anything-c-source-ffap-guesser | |
| anything-c-source-buffers+ |
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
| def assert_diff_files(file1, file2) | |
| unless (IO.read(file1) == IO.read(file2)) | |
| puts `diff -c #{file1} #{file2}` | |
| assert_equal true, false | |
| else | |
| assert_equal true, true | |
| end | |
| end | |
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
| # -*- coding: utf-8 -*- | |
| # | |
| # @file | |
| # @brief ファイルテスト用ユーティリティ | |
| # @author ongaeshi | |
| # @date 2011/02/21 | |
| # | |
| # | |
| # 以下のことを自動でやってくれます | |
| # |
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
| ;;-------------------------------------------------------------------------- | |
| ;;JavaScript | |
| ;; | |
| ;; js2-20090723b.el (ダウンロード後、 js2.el に改名、要バイトコンパイル) | |
| ;; http://code.google.com/p/js2-mode/downloads/detail?name=js2-20090723b.el&can=2&q= | |
| ;; | |
| ;; espresso.el | |
| ;; http://download-mirror.savannah.gnu.org/releases/espresso/espresso.el | |
| ;;------------------------------------------------------------------------- | |
| (autoload 'js2-mode "js2" nil t) |
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
| # -*- coding: utf-8 -*- | |
| # | |
| # @file | |
| # @brief convert link, TiddlyWiki 2 Hatena | |
| # @author ongaeshi | |
| # @date 2011/03/03 | |
| def tw2hatena(line) | |
| # h1, h2, h3.. | |
| line = line.gsub(/^\!/, "*") |
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
| ;;-------------------------------------------------------------------------- | |
| ;; popwin.el | |
| ;;-------------------------------------------------------------------------- | |
| (require 'popwin) | |
| (setq display-buffer-function 'popwin:display-buffer) | |
| (setq special-display-function 'popwin:special-display-popup-window) | |
| (push '("*Shell Command Output*" :height 20) popwin:special-display-config) | |
| ;(push '("*Shell Command Output*" :height 20 :position top) popwin:special-display-config) |
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
| # -*- coding: utf-8 -*- | |
| # | |
| # @file | |
| # @brief | |
| # @author ongaeshi | |
| # @date 2011/03/09 | |
| class RubyWho | |
| module Adapter | |
| def who?(n = nil, filter = nil) |