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
find . -type f -name *.java | wc |
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
;.inputrc | |
set completion-ignore-case on | |
;.screenrc | |
startup_message off | |
hardstatus on | |
hardstatus alwayslastline | |
hardstatus string "%{.bW}%-w%{.rY}%n %t%{-}%+w %=%{..G} %H(%l) %{..Y} %Y/%m/%d %c:%s " |
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
[ -f "$1.class" ] && rm $1.class | |
for file in $1.java | |
do | |
echo "Compiling $file........" | |
javac $file | |
done | |
if [ -f "$1.class" ] | |
then | |
echo "-----------OUTPUT-----------" | |
java $1 |
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
Show hidden characters
//Java.sublime-build | |
{ | |
"cmd": ["javac", "$file"], | |
"selector": "source.java", | |
"encoding": "cp936", | |
"variants": | |
[{ | |
"name": "Run", | |
"cmd": ["java", "$file_base_name"] | |
}] |
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
#!/usr/bin/python | |
from distutils.sysconfig import get_python_lib | |
print get_python_lib() |
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
cd adt-X/sdk/platform-tools/ | |
./adb shell | |
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system | |
cd /system/bin | |
# try | |
cat sh > su |
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
*#*#717717#*#* |
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 | |
## 重命名规则 | |
# 1. 长于3个字母的单词首字母大写,短连接线前后大写; | |
# 2. 只允许出现[空格、短线|单词、数字],点号只允许出现在后缀名之前; | |
# 3. 单词与数字、数字与数字之间以短线相连。 | |
if [ $# != 1 ] || [ ! -f "$1" ];then | |
echo Input file-name error! |
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 the date we're counting down to | |
var target_date = new Date("Aug 15, 2019").getTime(); | |
// variables for time units | |
var days, hours, minutes, seconds; | |
// get tag element | |
var countdown = document.getElementById("countdown"); | |
// update the tag with id "countdown" every 1 second |
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
#!/usr/bin/env python | |
#-*- coding:utf-8 -*- | |
import sys | |
reload(sys) | |
sys.setdefaultencoding('utf-8') | |
#import requests as req | |
#import re |
OlderNewer