Skip to content

Instantly share code, notes, and snippets.

View iyuuya's full-sized avatar
⚠️
REMOVED ALL MY REPOSITORIES

Yuya Ito iyuuya

⚠️
REMOVED ALL MY REPOSITORIES
View GitHub Profile
@iyuuya
iyuuya / gist:3231301
Created August 1, 2012 22:34
Objective-C における @Property@synthesize の簡単な説明
// ------------------------------------------------------------------------ //
#pragma mark - 定義ファイル側
@interface SomeClass : NSObject
{
// ここにメンバ変数を定義できるが、しなくてもよい
// (@synthesize 時に実体となる変数を定義できるため)
NSObject *_apple; // メンバ変数 _apple を定義しておく (後の例示の為)
}
@iyuuya
iyuuya / build-zsh.sh
Last active August 29, 2015 13:57 — forked from nicoulaj/build-zsh.sh
#!/bin/sh​
# Build Zsh from sources on Ubuntu.
# From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file.
# Some packages may be missing
sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo
cd /tmp
git clone git://zsh.git.sf.net/gitroot/zsh/zsh