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
set nocompatible | |
syntax enable | |
set background=dark | |
"Commented out overlength redness | |
"highlight OverLength ctermbg=red ctermfg=white guibg=#592929 | |
"match OverLength /\%81v.\+/ | |
" |
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
{ | |
"folders": | |
[ | |
{ | |
"path": "../Scripts", | |
"file_exclude_patterns": ["*.meta"] | |
} | |
], | |
"settings": |
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
// | |
// AWTextureEffects.h | |
// | |
// Created by Manuel Martinez-Almeida Castañeda on 09/05/10. | |
// Copyright 2010 Abstraction Works. All rights reserved. | |
// http://www.abstractionworks.com | |
// | |
#import "CCMutableTexture2D.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
/** @class UIWebViewWithDebug UIWebView with additional js error on DEBUG. | |
* Tested on iPad with 4.3.5 & 5.0 | |
*/ | |
@interface UIWebViewWithDebug : UIWebView {} @end | |
#ifdef DEBUG | |
@class WebView; | |
@class WebScriptCallFrame; | |
@class WebFrame; |
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
/* | |
* DebugLog.h | |
* DebugLog | |
* | |
* Created by Karl Kraft on 3/22/09. | |
* Copyright 2009 Karl Kraft. All rights reserved. | |
* http://www.karlkraft.com/index.php/2009/03/23/114/ | |
* | |
*/ | |
#import "Foundation/Foundation.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
/* A program that extracts metadata from an XCF file | |
* | |
* This file was written by Henning Makholm <[email protected]> | |
* It is hereby in the public domain. | |
* | |
* In jurisdictions that do not recognise grants of copyright to the | |
* public domain: I, the author and (presumably, in those jurisdictions) | |
* copyright holder, hereby permit anyone to distribute and use this code, | |
* in source code or binary form, with or without modifications. This | |
* permission is world-wide and irrevocable. |