View file0.txt
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
# mongodb用 | |
gem install mongo bson_ext | |
# twitter用 | |
gem install tweetstream |
View evernote_send.rb
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
require 'yaml' | |
# これをやらないと警告が沢山出る | |
# http://stackoverflow.com/questions/8783400/warning-already-initialized-constant-after-installing-tlsmail-gem | |
require 'net/smtp' | |
Net.instance_eval {remove_const :SMTPSession} if defined?(Net::SMTPSession) | |
require 'net/pop' | |
Net::POP.instance_eval {remove_const :Revision} if defined?(Net::POP::Revision) | |
Net.instance_eval {remove_const :POP} if defined?(Net::POP) |
View file0.txt
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
#!/bin/bash | |
if [ $# -ne 1 ]; then | |
echo "plese set folder" 1>&2 | |
exit 1 | |
fi | |
dir=$1 | |
main=${dir%/} | |
today=`date "+%d.txt"` |
View http_post_server.coffee
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
module.exports = (robot) -> | |
robot.router.post "/hubot/send_message", (req, res) -> | |
if not req.body | |
res.end "" | |
return | |
room_name = req.body.room | |
message = req.body.message |
View go_twitter.go
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
package main | |
import ( | |
"fmt" | |
"github.com/ChimeraCoder/anaconda" | |
"net/url" | |
) | |
func showTimeLine(api *anaconda.TwitterApi, v url.Values) { | |
tweets, err := api.GetUserTimeline(v) |
View go_mongodb.go
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
package main | |
import ( | |
"fmt" | |
"github.com/ChimeraCoder/anaconda" | |
"gopkg.in/mgo.v2" | |
"gopkg.in/mgo.v2/bson" | |
"net/url" | |
) |
View go_cron.go
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
package main | |
import ( | |
"fmt" | |
"github.com/robfig/cron" | |
"time" | |
) | |
func main() { | |
c := cron.New() |
View tesh.hs
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
type Name = String | |
colorName :: NamedColor -> Name | |
colorName c = case c of | |
Red -> "赤" | |
Green -> "緑" | |
Blue -> "青" | |
main = | |
print 1 |
View test.go
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
package main | |
import "fmt" | |
type If interface{ // PrintDataメソッドを持つインターフェースを定義 | |
PrintData() | |
} | |
type MyBase struct { | |
Count int |
View levenshtein_distance.rb
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
# coding: utf-8 | |
def get_cost(d, c1, x, c2, y) | |
costs = [] | |
if c1 == c2 | |
# 同じ場合 | |
costs << d[y-1][x-1] | |
end | |
if c1 != c2 |
OlderNewer