Skip to content

Instantly share code, notes, and snippets.

@rainyear
rainyear / find_file_type_counts.sh
Last active December 18, 2015 07:19
find out how many files of specific type are there in current project.
find . -type f -name *.java | wc
;.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 "
@rainyear
rainyear / javar.sh
Created June 24, 2013 05:44
compile and run java script
[ -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
@rainyear
rainyear / x.sublime-build
Last active December 18, 2015 21:29
compile & run scripts in sublime text.
//Java.sublime-build
{
"cmd": ["javac", "$file"],
"selector": "source.java",
"encoding": "cp936",
"variants":
[{
"name": "Run",
"cmd": ["java", "$file_base_name"]
}]
#!/usr/bin/python
from distutils.sysconfig import get_python_lib
print get_python_lib()
@rainyear
rainyear / root_android.sh
Last active December 19, 2015 08:19
root android emulator 4.2.2
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
@rainyear
rainyear / diag
Created July 15, 2013 08:50
usb-debug xiaomi with eclipse
*#*#717717#*#*
@rainyear
rainyear / Renamee
Last active December 20, 2015 14:59
Rename literature files.
#!/bin/bash
## 重命名规则
# 1. 长于3个字母的单词首字母大写,短连接线前后大写;
# 2. 只允许出现[空格、短线|单词、数字],点号只允许出现在后缀名之前;
# 3. 单词与数字、数字与数字之间以短线相连。
if [ $# != 1 ] || [ ! -f "$1" ];then
echo Input file-name error!
@rainyear
rainyear / countdown
Last active June 28, 2016 01:08
javascript countdown
// 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
@rainyear
rainyear / pythonHeader
Created August 26, 2013 08:25
python script header
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
#import requests as req
#import re