This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
etst |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ListViewController.m | |
// TableVIewPrac5 | |
// | |
// Created by 山田 慶 on 2012/11/12. | |
// Copyright (c) 2012年 山田 慶. All rights reserved. | |
// | |
#import "ListViewController.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// to be binded..... | |
var fnTouchStart = function(e) { console.log("hello i am touch start"); }; | |
var fnTouchMove = function(e) { console.log("hello i am touch move"); }; | |
var fnTouchEnd = function(e) { console.log("hello i am touch end"); }; | |
var fnMouseDown = function(e) { console.log("hello i am mouse down"); }; | |
var fnMouseMove = function(e) { console.log("hello i am mouse move"); }; | |
var fnMouseUp = function(e) { console.log("hello i am mouse up"); }; | |
// register..... | |
(function() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"patcher" : { | |
"fileversion" : 1, | |
"appversion" : { | |
"major" : 6, | |
"minor" : 1, | |
"revision" : 0, | |
"architecture" : "x86" | |
} | |
, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------ | |
# Xcode | |
# ------------------------ | |
.DS_Store | |
*/build/* | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.shuffle = function() | |
{ | |
var i = this.length; | |
while (i) | |
{ | |
var j = Math.floor(Math.random() * i); | |
var t = this[--i]; | |
this[i] = this[j]; | |
this[j] = t; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'find' | |
your_name = "My Name" | |
project_name = "My Project Name" | |
license_txt = <<EOF | |
// | |
// Copyright 2013 #{your_name} | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
basedir = os.path.abspath('.') | |
def check(path): | |
print path | |
os.chdir(path) | |
cmd = 'xcodebuild' | |
subprocess.check_call(cmd, shell=True) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'fileutils' | |
require 'find' | |
release_files_path = | |
"My_Project_Name" | |
sources = [ | |
"../addons", | |
"../apps", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git-ls-files --others --exclude-from=.git/info/exclude | |
# Lines that start with '#' are comments. | |
# For a project mostly in C, the following would be a good set of | |
# exclude patterns (uncomment them if you want to use them): | |
# *.[oa] | |
# *~ | |
.DS_Store | |
*.o | |
*.lo | |
*.Plo |
OlderNewer