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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<script type="text/javascript"> | |
var Config={ | |
Width :400, | |
Height:400, | |
Range:{X:{Min:-10, Max:10}, Y:{Min:-10, Max:10}}, | |
MaxSplit:10 | |
}; |
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
//关闭Stream选项 | |
//以下内容添加到FiddlerScript的OnBeforeResponse中 | |
if(oSession.host.EndsWith("example.com")){ | |
//使用正则表达式 | |
oSession.utilReplaceRegexInResponse("Example","Hahaha"); | |
//自己处理 | |
var body = oSession.GetResponseBodyAsString(); | |
body = body+"asdfadsfadfs"; | |
oSession.utilSetResponseBody(body); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset=utf-8> | |
<title>Liquid Particles 3D | spielzeugz.de/lab </title> | |
<meta name="description" content="HTML5 Demo, particles trapped in a sphere." /> | |
<meta name="keywords" content="html5,canvas,javascript,particles,interactive,velocity,programming,flash" /> | |
<style> | |
*{ |
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
package mobi.bbase.ahome.utils; | |
import java.io.ByteArrayOutputStream; | |
import java.util.Random; | |
/** | |
* 加密解密QQ消息的工具类. QQ消息的加密算法是一个16次的迭代过程,并且是反馈的,每一个加密单元是8字节,输出也是8字节,密钥是16字节 | |
* 我们以prePlain表示前一个明文块,plain表示当前明文块,crypt表示当前明文块加密得到的密文块,preCrypt表示前一个密文块 | |
* f表示加密算法,d表示解密算法 那么从plain得到crypt的过程是: crypt = f(plain ˆ preCrypt) ˆ |
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
<?xml version="1.0" encoding="utf-8"?> | |
<Strings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<Name>Simplified Chinese</Name> | |
<OriginalLanguageName>简体中文</OriginalLanguageName> | |
<OkButton_Text>确定</OkButton_Text> | |
<CancelButton_Text>取消</CancelButton_Text> | |
<StopButton_Text>停止</StopButton_Text> | |
<SetDefaultButton_Text>还原为默认值</SetDefaultButton_Text> | |
<ErrorMessage_FileAlreadyExists>无法重命名文件,因为与此名称的文件已经存在!</ErrorMessage_FileAlreadyExists> | |
<WarningMessage_ChangeFileExtension>你真的想改变文件扩展名?</WarningMessage_ChangeFileExtension> |
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
/** | |
* Debug CSS by iifksp | |
* Author: [email protected] | |
* Author URI: http://www.swordair.com/blog | |
* Version: 1.1 | |
* License: MIT | |
*/ | |
/* inline style */ | |
*[style]{outline:1px dotted #f00 !important;} |
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
<html> | |
<head> | |
<!-- | |
//http://help.dottoro.com/ljuecqgv.php | |
--> | |
<script type="text/javascript"> | |
function Init () { | |
var textarea = document.getElementById ("textarea"); | |
if (textarea.addEventListener) { | |
// Google Chrome and Safari |
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
bool MainWindow::isUtf8File(QIODevice *file) | |
{ | |
const int testSize = 1024; | |
char str[testSize];/// | |
int size = file->peek(str, testSize); | |
// char buf[3]; | |
// if (f->peek(buf, sizeof(buf)) == sizeof(buf)) |
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
/** | |
* Debug CSS by iifksp | |
* Author: [email protected] | |
* Author URI: http://www.swordair.com/blog | |
* Version: 1.1 | |
* License: MIT | |
*/ | |
/* inline style */ | |
*[style]{outline:1px dotted #f00 !important;} |
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
<!-- | |
http://www.ghost-hack.com/post/jsexperiments/tunneler/tunneler.html | |
--> | |
<html> | |
<head> | |
<style type="text/css"> | |
body | |
{ | |
font-family: Monospace; | |
background-color: #222222; |
NewerOlder