Skip to content

Instantly share code, notes, and snippets.

View tnamao's full-sized avatar

Takeshi NAMAO tnamao

View GitHub Profile
@tnamao
tnamao / gist:cb204c01a2a6a93d8010
Last active August 29, 2015 14:25
php-env と php-build での PHP ビルド手順のメモ

=============================================== php-env と php-build での PHP ビルド手順のメモ

PHP の最新バージョンをビルドするには、php-build のリポジトリから最新のコードを取得し、インストールシェルスクリプト実行後にビルドオプションの設定などの手順を踏む。

このメモ作成時の環境

  • Mac OS X 10.9
@tnamao
tnamao / sample.sql
Created July 14, 2015 18:11
リレーション確認用のSQL
create table groups (
id integer not null auto_increment,
name varchar(32) not null,
created timestamp,
updated timestamp,
primary key (id)
);
create table sample_users (
id integer not null auto_increment,
public $validate = array(
'login' => array(
'アルファベットと数字だけです' => array(
'rule' => 'alphaNumeric',
),
)
);
---
- host: centos5
sudo: true
user: work-user
tasks:
- name: install remi rpm.
shell: if [ "`rpm -q --queryformat="%{NAME}" remi-release`" != "remi-release" ]; then rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm; fi
$ sudo apt-get update
$ sudo apt-get -yV upgrade
$ sudo shutdown -r now
@tnamao
tnamao / file0.txt
Created April 24, 2014 17:56
EeePC 901 に Lubuntu 14.04 LTS をインスコしてみた。 ref: http://qiita.com/tnamao/items/f20db31e481624cb7911
$ hdiutil convert -format UDRW -o ./lubuntu-14.04-desktop-i386.img ./lubuntu-14.04-desktop-i386.iso