This file contains 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 | |
### VARIABLES ### \ | |
EMAIL="" | |
SERVER=$(hostname) | |
MYSQL_CHECK=$(mysql -e "SHOW VARIABLES LIKE '%version%';" || echo 1) | |
LAST_ERRNO=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Last_Errno" | awk '{ print $2 }') | |
SECONDS_BEHIND_MASTER=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G"| grep "Seconds_Behind_Master" | awk '{ print $2 }') | |
IO_IS_RUNNING=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Slave_IO_Running" | awk '{ print $2 }') | |
SQL_IS_RUNNING=$(/usr/bin/mysql -e "SHOW SLAVE STATUS\G" | grep "Slave_SQL_Running" | awk '{ print $2 }') |
This file contains 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
#!/usr/bin/env python | |
import os | |
import sys | |
import shlex | |
import subprocess | |
import argparse | |
parser = argparse.ArgumentParser() | |
parser.add_argument("orig_dir") | |
parser.add_argument("baked_dir") | |
args = parser.parse_args() |
This file contains 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 ThreadedLogcat { | |
private boolean mClear; | |
private String mOutputFile; | |
private Thread mLoggingThread; | |
private Process mP; | |
private void stopLogging() { | |
if(mLoggingThread == null) | |
return; | |
try { |
This file contains 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
// http://stackoverflow.com/questions/26722040/replacement-for-system-property-get-in-android-l-ndk | |
#include <string> | |
#include <cstdio> | |
#include <cstdlib> | |
#include <errno.h> | |
int property_get(const char* key, char* out, char* def) | |
{ | |
std::string cmd = "getprop "; | |
cmd += key; |
This file contains 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
#ifndef BACKTRACE_UTILS_h | |
#define BACKTRACE_UTILS_h | |
// ref: http://stackoverflow.com/questions/8115192/android-ndk-getting-the-backtrace | |
#include <cstdio> | |
#include <ostream> | |
#include <sstream> | |
size_t captureBacktrace(void** buffer, size_t max); |
This file contains 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
// http://stackoverflow.com/questions/7142987/media-mounted-broadcast-not-being-received | |
// 静态 BroadcastReceiver | |
<receiver | |
android:name=".MediaMountedReceiver" | |
android:enabled="true"> | |
<intent-filter> | |
<action android:name="android.intent.action.MEDIA_MOUNTED" /> | |
<data android:scheme="file" /> | |
</intent-filter> |
This file contains 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
// prepare | |
// AndroidManifest.xml add permission | |
// <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> | |
// see http://stackoverflow.com/questions/7569937/unable-to-add-window-android-view-viewrootw44da9bc0-permission-denied-for-t | |
WindowManager mWm = (WindowManager) getSystemService(WINDOW_SERVICE); | |
mTextView = new TextView(this); | |
mLayoutParam = new WindowManager.LayoutParams( | |
WindowManager.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.WRAP_CONTENT, | |
WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY, | |
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE, |
This file contains 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
@echo off | |
echo. | |
echo Refreshing PATH from registry | |
setlocal EnableDelayedExpansion | |
:: Get System PATH | |
for /f "tokens=3*" %%A in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v Path') do set syspath=%%A%%B | |
:: Get User Path | |
for /f "tokens=3*" %%A in ('reg query "HKCU\Environment" /v Path') do set userpath=%%A%%B |
This file contains 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
@echo off | |
rem Copyright (C): 2010 Voyagerfan5761 | |
rem http://technobabbl.es/ | |
rem Put in your git-for-windows root dir | |
set USER=wangmuy | |
set HOMEDRIVE=%~d0 | |
set HOMEPATH=%~dp0home\%USER%\ | |
set HOME=%~dp0home\%USER%\ | |
set USERPROFILE=%HOMEPATH% |
This file contains 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 | |
source /etc/profile | |
[ -z "$DIR" ] && DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
SRC=http://192.168.1.100/svn | |
cd $DIR | |
repo=$1 | |
rev=$2 | |
echo repo=$repo | |
FILE=file://$DIR/$repo |
NewerOlder