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
| #!/bin/sh | |
| out= # path goes here | |
| branch=$(git rev-parse --symbolic --abbrev-ref $1) | |
| export GIT_WORK_TREE=$out | |
| git checkout -f $branch | |
| git clean -fxd | |
| $out/post-sync |
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
| abraham | |
| absent | |
| absorb | |
| absurd | |
| academy | |
| accent | |
| acid | |
| acrobat | |
| action | |
| active |
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
| static void SDL_LoadWindowIcon(SDL_Window* window) | |
| { | |
| #if defined(_WIN32) | |
| const unsigned int mask_r = 0x00ff0000; | |
| const unsigned int mask_g = 0x0000ff00; | |
| const unsigned int mask_b = 0x000000ff; | |
| const unsigned int mask_a = 0xff000000; | |
| const int res_id = 101; | |
| const int size = 32; | |
| const int bpp = 32; |
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-option -g prefix C-a | |
| bind-key C-a last-window | |
| set -g base-index 1 | |
| set -s escape-time 0 | |
| set-window-option -g window-status-current-bg white |
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 autoindent | |
| set smarthome | |
| set smooth | |
| set softwrap | |
| set tabsize 4 |
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
| [user] | |
| name = unset | |
| email = [email protected] | |
| [core] | |
| autocrlf = false | |
| preloadindex = true | |
| [color] | |
| ui = auto | |
| [diff] | |
| pager = less -x4 |
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
| #!/bin/bash | |
| TOOLS_DIR=$ANDROID_HOME/tools | |
| cd $TOOLS_DIR | |
| ARCH=`java -jar lib/archquery.jar` | |
| lib/monitor-$ARCH/monitor & |
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
| #!/bin/bash | |
| # | |
| # Copyright (C) 2010 The Android Open Source Project | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.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
| #!/bin/bash | |
| TOOLS_DIR=$ANDROID_SDK_ROOT/tools | |
| WORK_DIR=`pwd` | |
| cd $TOOLS_DIR | |
| JAR_PATH="lib\sdkmanager.jar;lib\swtmenubar.jar" | |
| ARCH=`java -jar lib/archquery.jar` | |
| SWT_PATH=lib/$ARCH | |
| java -Dcom.android.sdkmanager.toolsdir="$TOOLS_DIR" -Dcom.android.sdkmanager.workdir=$WORK_DIR -classpath "$JAR_PATH;$SWT_PATH\swt.jar" com.android.sdkmanager.Main $@ |
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
| #!/bin/bash | |
| NDK_ROOT=$ANDROID_NDK_ROOT | |
| NDK_MAKE=$NDK_ROOT/prebuilt/windows/bin/make.exe | |
| $NDK_ROOT/prebuilt/windows/bin/make.exe -f $NDK_ROOT/build/core/build-local.mk SHELL=cmd $@ |