tail -f /dev/null

If you haven't had any obstacles lately, you're not challenging. be the worst.

V2.0 Facebookアプリのpermission申請

v2.0 Facebookアプリのpermission申請を行った為、メモしておきます。 申請不要 email (Eメール) Provides access to the person's primary email address. This permission is approved by default. public_profile (公開プロフィール) Provides access to …

MySQL データ型一覧

データ型一覧 TINYINT -128から127 SMALLINT -32768から32767 MEDIUMINT -8388608から8388607 INT -2147483648から2147483647 BIGINT -9223372036854775808から9223372036854775807 FLOAT -3.402823466E+38 から -1.175494351E-38 1.175494351E-38 から 3.40…

MacPortsからHomebrewへの移行&環境構築(Ruby&Apache&MySQL)

環境 MacOSX 10.11 MacPorts 2.3.4 Homebrew 0.9.5 (git revision 9942; last commit 2015-11-07) Ruby 2.2.3 bundler 1.10.6 Apache/2.4.17 (Unix) MySQL 5.7.9 なぜHomebrewにしたか 参考にしたサイトがほとんどと言っていいほどHomebrewを事前にインスト…

bootstrapで基本的な固定サイドメニューを作成する

bootstrap2系 <html lang="ja"> <head> <meta charset="utf-8"> <title>test</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="/css/bootstrap.min.css" /> <link rel="stylesheet" href="/css/general.css" /> </link></link></meta></meta></head></html>

Bootstrapでのformの基本的な書き方と注意点

<div class="form-horizontal"> <form method="post" action=""> <div class="form-group"> <label for="lastname" class="col-xs-3 control-label">姓</label> <div class="col-md-3 col-xs-7"> <input type="text" class="form-control input-sm" name="lastname" id="lastname" placeholder="姓"> </div> </div> </form></div>

= nullと is null

nullを指定する際、イコールで指定しても更新されません。 カラム = null mysql> update details set title = "aaa" where deleted_at = null; Query OK, 0 rows affected (0.00 sec) Rows matched: 0 Changed: 0 Warnings: 0 //実行はできるが、アップデー…

MySQL Workbench で DB から ER 図を起こし、mwb ファイルを作成する

既存のDBからER図(Entity Relationship Diagram)をMySQLWorkbenchで作成する。 (新規ER図はMySQL Model > Add Diagramから作成できる。) 前提:すでにローカルのDBとMySQLWorkbenchが接続されていること メニュー メニュー > Databese > Reverse Enginee…

YosemiteでMacportsが動かない & cmakeがインストールできない

$ sudo port selfupdate WARNING: Improper use of the sudo command could lead to data loss or the deletion of important system files. Please double-check your typing when using sudo. Type "man sudo" for more information. To proceed, enter yo…

MacのiMovieで作成した動画を、WindowsでDVDに焼く

使用するソフトウェア mac iMovie Windows Free video converter windows DVD メーカー → DVDメーカー ダウンロードする方法(Windows 10も含む) 今はダウンロード先が変更されている模様。 まずiMovieで作成したmp4動画を、共有からファイルへ出力します。 …

MULとは

PRI:PRIMARY MUL:MULTIPLE mysql> desc test_table; +-------------+-------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------------+-------------+------+-----+---------+----------------+ …

MacPortsで環境構築を行う

MacPortsとは コマンドプロンプトからプログラムをパッケージ単位で簡単にインストールすることができるパッケージ管理システムです。 Current environment Macports 2.3.3 MySQL5.6 PHP5.4 Apache2.2.26 MacPortsでインストールしたものは全て/opt/local/以…