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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use utf8; | |
use Net::Twitter; | |
my $consumer_key = ''; | |
my $consumer_key_secret = ''; | |
my $access_token = ''; | |
my $access_token_secret = ''; |
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
コントローラ#アクション | |
Controller#action | |
・ひとつのページで完結するもの | |
ユーザのプロフィールを視る -> Users#show | |
ユーザがログインをする -> Users#login | |
ユーザがログアウトする -> Users#logout | |
・複数のページにまたぐもの | |
ユーザの情報を入力する -> Users#new |
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
watchr watchr.rb | |
watchr.rbでファイルを取得してrake spec hogehoge.rbとする | |
いめーじこんなかんじ。 | |
watch('(.*).rb') { |f| run("echo #{f[0]}") } |
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
過疎ってるけどある一定の数をいるところをまとめられる的なサムシング |
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
<?php | |
$yky_birthday = '1993-01-12'; | |
$hitday = date('Y-m-d', strtotime($yky_birthday.'- 280 day')); | |
echo $hitday."\n"; |
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
スライドにどんどん画像と文章を追加していく感じでブログをかく | |
日記 | |
高橋メソッド |
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
曲の投げて曲名とアーティスト名をスタックする。 | |
USTでDJをやってる人かつ、Webカメラでタンテまわしてるところうつしてうr人向け | |
演奏が一通りおわったあとに、スタッフロールな感じで流れていく。 | |
USTみてる人にもURL公開してその日流したセトリをみれる | |
最近の傾向としてWebカメラの映像綺麗なので | |
iPadとかでごろごろながせるとビジュアル的にはよさそう。 | |
・いいところ |
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
詳しくはclearに書いてる。読め。 |
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
常に情報のアンテナは常に張っておきたい人間なので、 | |
いつもソーシャルブックマークや有名所のブログや開発ブログとかベンチャーとかウェブサービスの動向とかを見なければならないし、 | |
ある程度のアウトプットもしなければならない。 | |
だがしかし受験生である。 | |
それ故に受験関連以外のインプット・アウトプットの時間は限られてくるわけで、 | |
RSSフィードに登録しているサイトを200個から20個までに絞ったり、 | |
アウトプットするものの文章を長文から箇条書きにしたりとしているわけですが、 | |
なにせインプット・アウトプットの量も少なければ、時間も少なく、受験勉強(超一過性)なこと以外で成長していないのです。 |
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
元の案 | |
http://twitter.com/#!/asonas/status/184319403368783873 | |
問題点 | |
1. 学生にgitを教えるのはかなり面倒である | |
2. でも、コードの管理は一元化するべきだ(複数人で編集するならなおさら) | |
3. かつHPの更新をもっと楽にして、同じサーバで歴代のHPのデータを蓄積する必要がある。 | |
解決案 | |
1.0 従来通り学生達はFTPを使ってファイルをアップロードする |
OlderNewer