Skip to content

Instantly share code, notes, and snippets.

Pod::Spec.new do |spec|
spec.name = 'ABFBeacon'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/access-company/ABFBeacon'
spec.summary = 'ACCESS Beacon Framework Library is wrapper for iBeacon API.'
spec.source = { :git => 'https://github.com/access-company/ABFBeacon.git'}
spec.source_files = 'iOS/ABFBeacon/*.{h,m}'
spec.requires_arc = true
end
@keiso
keiso / makeIcon.sh
Last active December 22, 2015 19:59
generate iOS App icons.
#!/bin/sh
#sorce file icon(1024px x 1024px)
ICON1024="Icon1024.png"
sips -Z 512 ${ICON1024} --out icons/iTunesArtwork.png
#sips -Z 1024 ${ICON1024} --out icons/iTunesArtwork@2x.png
#sips -Z 1536 ${ICON1024} --out icons/iTunesArtwork@3x.png
@keiso
keiso / gist:3917475
Created October 19, 2012 10:40
Doxygen 関数説明用
/*! @brief 概要説明
詳細説明
@author 作者名
@bug バグですよ。
@warning 警告ですよ。
@todo やる事を記述
@param パラメータ
@return リターン
*/
@keiso
keiso / gist:3917468
Created October 19, 2012 10:38
Doxygen 変数説明用
/*!< 変数の概要 */
@keiso
keiso / gist:3917454
Created October 19, 2012 10:36
Doxygen メインページ用
/*! @mainpage タイトル
@section ほげほげ
*/
@keiso
keiso / gist:3917425
Created October 19, 2012 10:32
Doxygen クラス説明用
/*!
@class クラス名
@brief クラスの説明
@author 作者
@date 日付
*/
@keiso
keiso / Compile SCSS to CSS.tmCommand
Created October 10, 2012 03:00
TextMate Command "Compile SCSS to CSS"
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>beforeRunningCommand</key>
<string>saveActiveFile</string>
<key>command</key>
<string>#!/bin/sh
SASS_OPTS="-t expanded --scss"
@keiso
keiso / survey.pl
Created September 18, 2012 17:24
Googleドキュメントで集計したデータをIllustratorで読み込む為の加工用スクリプト
#!/usr/bin/perl
# 使い方
# 1)このスクリプトとGoogleドキュメントから書き出したcsvファイルを同一階層に置きます。
# (以下のスクリプトではフタッフアンケートの結果ファイル名を"stuff.csv"としています。)
# 2)Terminalでスクリプトを置いたディレクトリーに移動(cd)し、以下のコマンドを実行
# perl ./survey.pl > export.xml
# 補足)Terminalで指定のディレクトリーに移動する方法
# Terminalで"cd "とタイプしておき、