Skip to content

Instantly share code, notes, and snippets.

@yuu-ito
yuu-ito / R_mvpart_package.md
Last active December 26, 2015 20:39
mvpart package サンプル

mvpart package サンプル

  • iris(あやめ)の大きな3枚のはなびらは,「Sepal がく片」
  • 小さな3枚のはなびらが,「Petal 花びら」である.
  • Sepal「がく片」の長さと幅・Petal「花びら」の長さと幅
  • Species「あやめ3品種 [setosa・versicolor・virginica]」
data(iris)
@berzniz
berzniz / NSObject+Debounce.h
Created January 25, 2014 16:18
Debounce method for Objective C
@interface NSObject (Debounce)
- (void)debounce:(SEL)action delay:(NSTimeInterval)delay;
@end
@aodag
aodag / instoru-paison
Created May 3, 2014 13:57
veriy simple python installer
#!/bin/sh
# -*- mode:sh -*-
version=$1
if [ "x$1" = "x" ] ; then
exit 1
fi
major=$(echo $version | awk -F "." '{print $1}')
minor=$(echo $version | awk -F "." '{print $2}')
micro=$(echo $version | awk -F "." '{print $3}')