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
| # -*- coding: utf-8 -*- | |
| # | |
| require 'rubygems' | |
| require 'xcodeproj' | |
| ADD_FRAMEWORKS = %w{ | |
| AddressBook | |
| AVFoundation | |
| GameKit | |
| libicucore.A.dylib |
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
| # -*- coding: utf-8 -*- | |
| # | |
| require 'rubygems' | |
| require 'xcodeproj' | |
| FRAMEWORKS = %w{ | |
| AudioToolbox | |
| CFNetwork | |
| CoreGraphics | |
| CoreLocation |
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
| string message = Time.realtimeSinceStartup.ToString() + " : [Elapsed]"; | |
| StackFrame CallStack = new StackFrame(1, true); | |
| string SourceFile = CallStack.GetFileName(); | |
| int SourceLine = CallStack.GetFileLineNumber(); | |
| message += "\n - File: " + SourceFile + " Line: " + SourceLine.ToString(); | |
| Debug.Debug(message); | |
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
| ;; This buffer is for notes you don't want to save, and for Lisp evaluation. | |
| ;; If you want to create a file, visit that file with C-x C-f, | |
| ;; then enter the text in that file's own buffer. | |
| /Applications/Unity/Unity.app/Contents/MacOS/Unity \ | |
| -batchmode \ | |
| -quit \ | |
| -projectPath $PROJECT_PATH \ | |
| -executeMethod CommandBuild.BuildiOS |
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
| using UnityEngine; | |
| using System.Collections; | |
| using System; | |
| using System.IO; | |
| using System.Text.RegularExpressions; | |
| using UnityEngineInternal; | |
| public static class Debug | |
| { | |
| public static bool isDebugBuild = 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
| (add-hook 'markdown-mode-hook | |
| '(lambda () | |
| (define-key markdown-mode-map "\C-c\C-h1" 'markdown-insert-header-1) | |
| (define-key markdown-mode-map "\C-c\C-h2" 'markdown-insert-header-2) | |
| (define-key markdown-mode-map "\C-c\C-h3" 'markdown-insert-header-3) | |
| (define-key markdown-mode-map "\C-c\C-h4" 'markdown-insert-header-4) | |
| (define-key markdown-mode-map "\C-c\C-h5" 'markdown-insert-header-5) | |
| (define-key markdown-mode-map "\C-c\C-h6" 'markdown-insert-header-6) | |
| (define-key markdown-mode-map "\C-c\C-hs" 'markdown-insert-section) | |
| (define-key markdown-mode-map "\C-c\C-ht" 'markdown-insert-title) |
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
| -- open_url: open with Google Chrome | |
| on run argv | |
| tell application "Google Chrome" | |
| tell window 1 | |
| set newTab to make new tab with properties {URL:item 1 of argv} | |
| end tell | |
| end tell | |
| end run |
NewerOlder