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/ruby | |
SHUNTSU_PATTERN = [ | |
[1,2,3],[2,3,4],[3,4,5],[4,5,6],[5,6,7],[6,7,8],[7,8,9], | |
[1,2,3],[2,3,4],[3,4,5],[4,5,6],[5,6,7],[6,7,8],[7,8,9], | |
[1,2,3],[2,3,4],[3,4,5],[4,5,6],[5,6,7],[6,7,8],[7,8,9], | |
[1,2,3],[2,3,4],[3,4,5],[4,5,6],[5,6,7],[6,7,8],[7,8,9] | |
] | |
KOUTSU_PATTERN = [[1,1,1],[2,2,2],[3,3,3],[4,4,4],[5,5,5],[6,6,6],[7,7,7],[8,8,8],[9,9,9]] | |
ATAMA_PATTERN = [[1,1],[2,2],[3,3],[4,4],[5,5],[6,6],[7,7],[8,8],[9,9]] |
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
(setq inhibit-startup-screen t) | |
(progn (set-language-environment "Japanese") | |
(set-default-coding-systems 'utf-8-unix) | |
(set-keyboard-coding-system 'utf-8-unix) | |
(if (not window-system) (set-terminal-coding-system 'utf-8-unix)) | |
) | |
(setq default-input-method "W32-IME") ;標準IMEの設定 | |
(setq w32-ime-buffer-switch-p nil) ;バッファ切り替え時にIME状態を引き継ぐ | |
(tool-bar-mode 0) | |
(scroll-bar-mode 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
# Created by newuser for 4.3.6 | |
# 文字コードの設定 | |
export EDITOR=vim | |
export LANG=ja_JP.UTF-8 | |
bindkey -e | |
# パスの設定 | |
export PATH=/usr/local/bin:$PATH:$HOME/bin:$HOME/bin/scala-2.8.1.final/bin:$HOME/bin/apache-ant-1.8.2/bin | |
export MANPATH=/usr/local/share/man:/usr/local/man:/usr/share/man |
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
import java.net.URI | |
import org.apache.http._ | |
import org.apache.http.client._ | |
import org.apache.http.impl.client._ | |
import org.apache.http.entity.InputStreamEntity | |
import org.apache.http.client.methods._ | |
import scala.util.parsing.json.JSON._ | |
import java.io.StringBufferInputStream | |
import org.apache.commons.codec.binary.Base64.encodeBase64 | |
import javax.crypto |
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
module Rack | |
class SignatureCheck | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
return [ 401,{ 'Content-Type' => 'text/plain','Content-Length' => '0'},[]] unless ::OauthSignature.valid?(env) | |
@app.call(env) | |
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
" You should execute pagent before you call those command. | |
function PutScp() | |
let s:nowDir = substitute(expand("%:p:h"),"[cC]:\\(.*\\)$","\\1","") | |
let s:nowFile = expand("%:t") | |
let s:fn = "c:\\tmp\\scpcmd.txt" | |
if filereadable(s:fn) | |
let s:ret = delete(s:fn) | |
endif | |
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
(defun post-ftp() | |
"Post current file to Server." | |
(interactive ) | |
(setq nowfile (buffer-file-name)) | |
(setq before_buffer (buffer-name)) | |
(setq dir_pos (string-match "/[^/]*$" nowfile)) | |
(setq dir_name (substring nowfile 0 dir_pos)) | |
(setq remote_dir_name (substring nowfile (length "c:/") dir_pos)) | |
(setq file_name (substring nowfile (+ 1 dir_pos) (length nowfile))) | |
(find-file "c:\\tmp\\scpcmd.txt") |
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
function GetCode(pos,str) | |
let s:pos = a:pos | |
let s:n_code = str2nr(strpart(a:str,s:pos,2),16) | |
let s:pos = s:pos + 2 | |
"in a certain sns | |
"if s:n_code == 37 | |
" let s:n_code = str2nr(strpart(s:line,s:pos,2),16) | |
" let s:pos = s:pos + 2 | |
"endif | |
return [s:pos,s:n_code] |
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 'nkf' | |
Dir.glob("c:/howm/2011/*/*.howm"){|g| | |
d = File.read(g) | |
File.open(g,"w"){|f| | |
f.write(d.force_encoding(NKF.guess(d)).encode("cp932")) | |
} | |
} |
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 'forwardable' | |
class HashWithValueIndifferentAccess | |
extend Forwardable | |
attr_accessor :hash | |
def_delegators(:@hash,*({}.public_methods - Object.new.public_methods - ["[]","[]=","values","==","to_s"])) | |
def initialize(hash={}) | |
@hash={} | |
hash.each do|k,v| | |
if v.is_a?(Symbol) |
OlderNewer