Skip to content

Instantly share code, notes, and snippets.

View moriC's full-sized avatar

Tomohiro Morishita moriC

View GitHub Profile
@moriC
moriC / gist:449d3262bc29dc5f09567147de7ef9c5
Created September 12, 2018 14:25
Golangインストールメモ
-(moric@moriC-MBA)-(0)-<2018/09/12 23:12>----------------------------------------------------------------------------------------------------------------------------------------[/Users/moric]-
-[1522]% brew install go
==> Downloading https://homebrew.bintray.com/bottles/go-1.11.mojave.bottle.tar.gz
Already downloaded: /Users/moric/Library/Caches/Homebrew/downloads/5ed4a2585f233134415ffca1fa44f2c56cd9ea11e9c336eb02c471a747d53580--go-1.11.mojave.bottle.tar.gz
==> Pouring go-1.11.mojave.bottle.tar.gz
==> Caveats
A valid GOPATH is required to use the `go get` command.
If $GOPATH is not specified, $HOME/go will be used by default:
https://golang.org/doc/code.html#GOPATH

## 目標

  • LPIC1取得
  • CCNA取得
  • 応用情報技術者試験に合格

勉強したいこと

  • Haskell(すごいH本使って)
  • Javaを復習(5月ぐらいまでに)
  • Emacsをもう一度挑戦してみたい
# coding: utf-8
require 'bundler/setup'
require 'thread'
require 'launchy'
require 'date'
task :preview do
sh 'bundle exec jekyll serve --watch'
end
if(Node* node = list->head; node != NULL; node = node->next)
Print(node->data);
% git branch -a
* 1.6/master
remotes/origin/1.0/master
remotes/origin/1.1/master
remotes/origin/1.2/develop
remotes/origin/1.2/master
remotes/origin/1.3/develop
remotes/origin/1.3/master
remotes/origin/1.4/develop
remotes/origin/1.4/master
@moriC
moriC / gist:4723737
Created February 6, 2013 16:23
rbenvのメモ
パスを通すときはrehashすること
@moriC
moriC / gist:4641197
Last active December 11, 2015 18:28
# language: ja
機能: 文字列の表示
シナリオ: hoge.rbを実行する
もし hoge.rbを実行した場合
ならば "広島Ruby勉強会#027"と表示している
moric = {
"name" => "森下智裕",
"university" => "広島工業大学 情報学部 知的情報システム学科",
"email" => "tomohiro.m0219@gmail.com",
"Github" => "moriC",
"Twitter" => "@CentBoss",
"Facebook" => "facebook.com/tomohiro.m0219"
}
はじめまして
広島工業大学 情報学部 知的情報システム学科 3年の学生です。
Blogを持っていないのですが、Githubにはアカウントがあるのでgistで書きたいと思います。
ちょうど今は就活が始まったばっかりです。
そんな学生が今年を(グダグダになりそうですが)少し振り返ってみたいと思います。
2012年は「刺激に満ち溢れた年」でした。
今年は、Web Touch Meetingをはじめ、Hiroshima.rb、CSS Nite in Hiroshima vol5に参加しました。
#coding:UTF-8
#配列オブジェクトhogeに数値を用意
@hoge = [1,2,3,4,5]
#配列オブジェクトの要素数分繰り返す
@hoge.each do |i|
puts i
end