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
var defaultEncoding = 1; // 1: Tranditional Chinese, 2: Simplified Chinese | |
var translateDelay = 0; | |
var cookieDomain = "http://your-site"; | |
var msgToTraditionalChinese = "繁體"; | |
var msgToSimplifiedChinese = "简体"; | |
var translateButtonId = "translateLink"; | |
var currentEncoding = defaultEncoding; | |
var targetEncodingCookie = "targetEncoding" + cookieDomain.replace(/\./g,""); | |
var targetEncoding = ( getCookie(targetEncodingCookie) == null ? defaultEncoding : getCookie(targetEncodingCookie) ); |
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
// ========================================================= | |
// Name: NimoMSHSCRC v1.1 Bypass AhnLab HackShield 5.3.5.1024 | |
// Date: April, 14, 2010 | |
// Author: nimo1993, thanks to the founder of MS CRC address. | |
// ========================================================= | |
#include "stdafx.h" | |
//#include "conio.h" | |
DWORD MSCRCStart = 0x00401000, MSCRCEnd = 0x00BFE000; |
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
// ========================================================= | |
// Name: NimoHS v1.0 Bypass AhnLab HackShield 5.2.8.893 | |
// Date: November 1, 2009 | |
// Author: nimo1993 | |
// ========================================================= | |
#include "stdafx.h" | |
#include "conio.h" |
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-US"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" /> | |
<meta name="robots" content="noindex, nofollow" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> | |
<title>Just a moment...</title> | |
<style type="text/css"> |
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 | |
$browsers = array('firefox','chrome','safari','opera','msie'); | |
$browser = new stdClass(); | |
preg_match('#('.implode('|',$browsers).')(/| )([^ ]+)#i',$_SERVER['HTTP_USER_AGENT'],$match); | |
$browser->version = round((int)$match[3]); | |
$match = strtolower($match[1]); | |
foreach($browsers as $val) | |
{ |
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
Sub Main() | |
Dim i As Integer | |
Dim result As Integer | |
result = 1 | |
For i = 1 To 5 | |
result = result * i | |
Next |
NewerOlder