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
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| ) | |
| // localhost:8080/ retrun exec folder | |
| // localhost:8088/.... return same name file | |
| // localhost:8080/handler return url path(from handler function) |
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 | |
| def get_cost(d, c1, x, c2, y) | |
| costs = [] | |
| if c1 == c2 | |
| # 同じ場合 | |
| costs << d[y-1][x-1] | |
| end | |
| if c1 != c2 |
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
| package main | |
| import "fmt" | |
| type Point struct { | |
| x float64 | |
| y float64 | |
| } | |
| func LeastSquaresMethod(points *[]Point) (a float64, b float64){ |
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
| package main | |
| import "fmt" | |
| type If interface{ // PrintDataメソッドを持つインターフェースを定義 | |
| PrintData() | |
| } | |
| type MyBase struct { | |
| Count int |
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
| type Name = String | |
| colorName :: NamedColor -> Name | |
| colorName c = case c of | |
| Red -> "赤" | |
| Green -> "緑" | |
| Blue -> "青" | |
| main = | |
| print 1 |
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
| package main | |
| import ( | |
| "fmt" | |
| "github.com/robfig/cron" | |
| "time" | |
| ) | |
| func main() { | |
| c := cron.New() |
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
| package main | |
| import ( | |
| "fmt" | |
| "github.com/ChimeraCoder/anaconda" | |
| "gopkg.in/mgo.v2" | |
| "gopkg.in/mgo.v2/bson" | |
| "net/url" | |
| ) |
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
| package main | |
| import ( | |
| "fmt" | |
| "github.com/ChimeraCoder/anaconda" | |
| "net/url" | |
| ) | |
| func showTimeLine(api *anaconda.TwitterApi, v url.Values) { | |
| tweets, err := api.GetUserTimeline(v) |
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.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 |
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/bash | |
| if [ $# -ne 1 ]; then | |
| echo "plese set folder" 1>&2 | |
| exit 1 | |
| fi | |
| dir=$1 | |
| main=${dir%/} | |
| today=`date "+%d.txt"` |