Skip to content

Instantly share code, notes, and snippets.

View miyaki's full-sized avatar

Takashi Miyaki miyaki

  • tokyo
View GitHub Profile
Pod::Spec.new do |s|
s.name = "VVOSC"
s.version = "0.1.0"
s.summary = "A short description of VVOSC."
s.description = <<-DESC
An optional longer description of VVOSC
* Markdown format.
* Don't worry about the indent, we strip it!
DESC
# coding: utf-8
Pod::Spec.new do |s|
s.name = "DoubleControlSDK"
s.version = "0.6"
s.summary = "A short description of DoubleControlSDK."
s.description = <<-DESC
DESC
s.homepage = "http://github.com/doublerobotics/Basic-Control-SDK-iOS"
@miyaki
miyaki / .latexmkrc
Last active February 20, 2016 21:13
~/.latexmkrc
# $Date:$
$pdf_mode = 1;
$pdflatex = 'pdflatex -interaction=nonstopmode -synctex=1 %O %S';
$bibtex = 'bibtex %O %B';
# for japanese platex2e
# $pdf_mode = 3;
# $latex = 'platex -kanji=utf8 -interaction=nonstopmode -synctex=1 %O %S';
# $bibtex = 'pbibtex -kanji=utf8 %O %B';
@miyaki
miyaki / configure_liblo_iphone.sh
Last active June 11, 2017 11:07 — forked from mikewoz/configure_liblo_iphone.sh
configure static liblo for armv7, armv7s, arm64 (iOS7)
./configure \
--host="arm-apple-darwin" \
--enable-static \
--disable-shared \
--disable-dependency-tracking \
CC=`xcrun -f --sdk iphoneos clang` \
CXX=`xcrun -f --sdk iphoneos clang++` \
AR=`xcrun -f --sdk iphoneos ar` \
RANLIB=`xcrun -f --sdk iphoneos ranlib` \
NM=`xcrun -f --sdk iphoneos nm` \