2014-01-01から1年間の記事一覧

Ruby文法入門まとめ

hello world printf "hello world!" # 末尾改行なし => hello world! print "hello world!" # 末尾改行なし => hello world! puts "hello world!" # 末尾改行あり => hello world!¥n p "hello world!" # 形式がわかる => "hello world!"¥n 変数 lang = "Ruby…

jquery-ajaxでGitHub API v3のaccess token取得でAccess-Control-Allow-Originエラー発生

GitHub API v3でaccess tokenをとりたい! GitHubAPIのOAuthのドキュメント(https://developer.github.com/v3/oauth/)によると、 GitHub APIで認証、access_token取得までの手順を簡単にまとめると GitHubでアプリケーション登録をする(https://github.com/s…