2007-06-07から1日間の記事一覧

amazon:SNSマーケティング入門

顧客クラブ バイクメーカーが組織するバイク愛好家の顧客クラブ マラソン愛好家を組織するスポーツ店のファンクラブ 酒店が運営するワイン愛好家の社交クラブ 経験型マーケティング ショッピング前経験 ショッピングと消費経験 ショッピング後経験 SNSのマー…

バランスボール購入

お試してみる。

Rubyのお勉強(その3)

14) Array クラス Array.new Array.new #=> [] Array.new(5) #=> [nil, nil, nil, nil, nil] Array.new(5,0) #=> [0, 0, 0, 0, 0] Array.new(3){[0, 0, 0]} #=> [[0, 0, 0], [0, 0, 0], [0, 0, 0]] Array.new(5){|i| i+1} #=> [1, 2, 3, 4, 5] インデックス…