Skip to content

Instantly share code, notes, and snippets.

@libitte
libitte / gist:46a50a4aa25f5c63f10e5dbc6baa9913
Created July 10, 2016 18:38
「実践 ペルソナ・マーケティング」のメモ

実践 ペルソナ・マーケティング

アプリ開発におけるペルソナ

S.Ginsburg によるアプリ開発手順:

  1. ユーザーの調査を始める準備
  2. ユーザー調査と分析
  3. 競争相手の調査
@libitte
libitte / which-default-options-are-read-from-mysql-configuration-files.md
Created January 3, 2016 02:17
Which default options are read from the mysql configuration files
$ which mysqld
/usr/local/bin/mysqld
$ mysqld --verbose --help | grep -A 1 'Default options'
2016-01-03 11:12:54 4947 [Warning] Setting lower_case_table_names=2 because file system for /usr/local/var/mysql/ is case insensitive
2016-01-03 11:12:54 4947 [Note] Plugin 'FEDERATED' is disabled.
Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
2016-01-03 11:12:54 4947 [Note] Binlog end
@libitte
libitte / gist:fccd6fcc7acd39491d92
Last active January 24, 2017 08:07
gem install fails on OSX 10.9.5 (Mavericks)
# http://kakasi.namazu.org/index.html.ja
wget http://kakasi.namazu.org/stable/kakasi-2.3.6.tar.gz
gzip -dc kakasi-2.3.6.tar.gz | tar xvf -
cd kakasi-2.3.6
./configure
make
sudo make install
@libitte
libitte / file0.txt
Created December 9, 2014 16:46
screen -r で attach できないときの対処 ref: http://qiita.com/libitte/items/e048a0e52aa6266dcfdb
$ screen -ls
There are screens on:
11119.pts-8.ip-10-10-10-10 (Attached)
11520.pts-1.ip-10-10-10-20 (Detached)
2 Sockets in /var/run/screen/S-foobar-user.
$ screen -r 11119.pts-8.ip-10-10-10-10
There is a screen on:
11119.pts-8.ip-10-10-10-10 (Attached)
There is no screen to be resumed matching 11119.pts-1.ip-10-10-10-10.
@libitte
libitte / file0.rb
Last active August 29, 2015 14:11
パーフェクト Ruby on Rails 2章 まとめ ref: http://qiita.com/libitte/items/2be4c545d2fbc5c23002
scope :written_about, ->(theme) { where("name like ?", "%#{theme}%")}
#!/usr/bin/env ruby
require 'benchmark'
ary = []
1000.times {
ary << {:bar => rand(1000)}
}
n = 500
@libitte
libitte / file0.rb
Created November 8, 2014 09:01
binding.pry から脱出するコマンド ref: http://qiita.com/libitte@github/items/1023dffb870ef20dc4cd
exit!
git clone git://github.com/imathis/octopress.git octopress
cd octopress
@libitte
libitte / file0.txt
Last active August 29, 2015 14:08
OS X への Redis インストール ref: http://qiita.com/libitte@github/items/8f87791199f4002b12ca
$ brew search redis
hiredis redis redis1310 redis24
homebrew/nginx/redis2-nginx-module homebrew/php/php54-redis homebrew/php/php56-redis
homebrew/php/php53-redis homebrew/php/php55-redis
$ brew install redis
$ brew install hiredis