Skip to content

Instantly share code, notes, and snippets.

@jNizM
jNizM / gist:5030548
Last active July 16, 2022 02:41
[AHK] Encrypt & Decrypt Data
; ===================================================================================
; AHK Version ...: AHK_L 1.1.09.03 x64 Unicode
; Win Version ...: Windows 7 Professional x64 SP1
; Script ........: En-Decrypt.ahk
; Description ...: Encrypt & Decrypt Data
; ===================================================================================
; GLOBAL SETTINGS ===================================================================
#NoEnv
@jNizM
jNizM / gist:4663336
Created January 29, 2013 10:29
[HTML] CoD4 config checker (Black- & Whitelist)
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Config Checker</title>
<style type="text/css">
body{background-color:#000}
.red{background-color:red}
.orange{background-color:orange}
.green{background-color:green}
@jNizM
jNizM / gist:4663323
Last active December 11, 2015 21:38
[HTML] CoD4 config checker (Blacklist)
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Config Checker</title>
<style type="text/css">
body{background-color:#000}
.red{background-color:red}
.orange{background-color:orange}
.green{background-color:green}
@jNizM
jNizM / AutoIt
Last active December 11, 2015 21:38
[AU3] Ping with log & traytip
Global $Online = False, $IP = 'www.google.de', $Intervall = 5, $Log_Path = @ScriptDir&'\'&$IP&'.txt'
While 1
$Timer = TimerInit()
$Ping = Ping($IP)
If $Ping > 0 Then
If $Online = False Then
$Online = True
FileWrite($Log_Path,'[ '&@MDAY&'/'&@MON&'/'&@YEAR&' | '&@HOUR&':'&@MIN&':'&@SEC&' ] '&$IP&' is online now!'&@CRLF)
;TrayTip('',$IP&' is online now!',10,1)