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
| package com.example.debug; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.List; | |
| import android.os.Bundle; | |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.graphics.Bitmap; |
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
| use strict; | |
| use warnings; | |
| use File::Find; | |
| use IO::All; | |
| use Data::Dumper; | |
| use XML::Parser; | |
| use utf8; | |
| use Scalar::Util qw(looks_like_number); | |
| my $root_dir = "../.."; |
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
| *.o | |
| github-search |
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
| #include <stdio.h> | |
| #include <string.h> | |
| #include <android/log.h> | |
| #define LOGV(...) __android_log_print(ANDROID_LOG_VERBOSE,LOG_TAG,__VA_ARGS__) | |
| void test(void) { | |
| char log_line[256]; | |
| char buff[8]; | |
| int i = 0; |
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
| package com.kayac.test.generics; | |
| import java.lang.reflect.*; | |
| import java.util.List; | |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| public class GenericParameterTypesTestActivity extends Activity |
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
| Deleting obsolete path /media/extra/Android/repo/device/moto/common | |
| Deleting obsolete path /media/extra/Android/repo/device/moto/stingray | |
| Deleting obsolete path /media/extra/Android/repo/device/moto/wingray | |
| Deleting obsolete path /media/extra/Android/repo/device/samsung/crespo | |
| Deleting obsolete path /media/extra/Android/repo/device/samsung/crespo4g | |
| Deleting obsolete path /media/extra/Android/repo/device/samsung/torospr | |
| Deleting obsolete path /media/extra/Android/repo/device/sony/lt26 | |
| Deleting obsolete path /media/extra/Android/repo/external/bluetooth/bluez | |
| Deleting obsolete path /media/extra/Android/repo/external/bluetooth/glib | |
| Deleting obsolete path /media/extra/Android/repo/external/bluetooth/hcidump |
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
| -- overide lua print with CCLuaLog | |
| print = CCLuaLog | |
| -- for CCLuaEngine traceback | |
| function __G__TRACKBACK__(msg) | |
| print("----------------------------------------") | |
| print("LUA ERROR: " .. tostring(msg) .. "\n") | |
| print(debug.traceback()) | |
| print("----------------------------------------") | |
| CCDirector:sharedDirector():endToLua() |
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
| #include "AppDelegate.h" | |
| #include "CCLuaEngine.h" | |
| #include <platform/CCFileUtils.h> | |
| #include "cocos2d.h" | |
| #include <string.h> | |
| #include <errno.h> | |
| USING_NS_CC; |
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
| mysql> select 'token?test' regexp '[[:alnum:]]+[[.?.]]'; | |
| +-------------------------------------------+ | |
| | 'token?test' regexp '[[:alnum:]]+[[.?.]]' | | |
| +-------------------------------------------+ | |
| | 1 | | |
| +-------------------------------------------+ | |
| 1 row in set (0.00 sec) | |
| mysql> select 'token?test' regexp '[[:alnum:]]+[^[.?.]]'; | |
| +--------------------------------------------+ |
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
| {-# LANGUAGE TypeSynonymInstances, FlexibleInstances, OverlappingInstances #-} | |
| import Data.Char (isUpper,isLower,toLower) | |
| import Data.List (groupBy,concat,intersperse) | |
| data Column | |
| = Column | |
| { column_name :: String | |
| , column_type :: String | |
| } deriving Show |