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 | |
| #叫床声可以去www.nsjnqc.com找或百度 | |
| files_dir='/workspace/work/other/zaoan/'; | |
| musics_dir='/workspace/work/other/mp3/'; | |
| i=0; | |
| j=0; | |
| files=(); | |
| musics=(); | |
| for file in $(ls ${files_dir});do |
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 | |
| #@author forthxu.com | |
| #说明 | |
| #找到获取apk信息有两种方式 | |
| #一种解压后读取AndroidManifest.xml,解压最好不要通过unzip因为获取的是压缩过的内容,读取不准确,可用apktool反编译解压 | |
| #另外一种可通过aapt也就是官方sdk中提供的工具读取信息 | |
| #aapt和apktoool工具 https://code.google.com/p/android-apktool | |
| #可能存在的问题 http://www.qiansw.com/centos-apk-apktool.html | |
| #扩展阅读,汉化apk http://bbs.dospy.com/thread-9991523-1-354-1.html |
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 | |
| #-*- coding:utf8 -*- | |
| ''' | |
| Created on 2014-06-02 | |
| # QQ:263967133 | |
| # pings运行一般运行一次就够了,自己选一个ip段 | |
| # google ip地址段 | |
| # 64.233.160.0 - 64.233.191.255 | |
| # 66.102.0.0 - 66.102.15.255 |
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
| <?php | |
| defined('IN_FORTH') or die('Access Denied.'); | |
| class MySql { | |
| public $queryCount = 0; | |
| public $conn; | |
| public $result; | |
| //构造函数 |
NewerOlder