This file contains 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
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) |
This file contains 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"> | |
<title>Config Checker</title> | |
<style type="text/css"> | |
body{background-color:#000} | |
.red{background-color:red} | |
.orange{background-color:orange} | |
.green{background-color:green} |
This file contains 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"> | |
<title>Config Checker</title> | |
<style type="text/css"> | |
body{background-color:#000} | |
.red{background-color:red} | |
.orange{background-color:orange} | |
.green{background-color:green} |
This file contains 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
; =================================================================================== | |
; 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 |
This file contains 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
; =================================================================================== | |
; AHK Version ...: AHK_L 1.1.11.01 x64 Unicode | |
; Win Version ...: Windows 7 Professional x64 SP1 | |
; Author ........: jNizM | |
; Script ........: HDD_Temp_Monitor.ahk | |
; Description ...: HDD Temp Monitor | |
; License .......: WTFPL | |
; =================================================================================== | |
; GLOBAL SETTINGS =================================================================== |
This file contains 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
; =================================================================================== | |
; AHK Version ...: AHK_L 1.1.11.02 x64 Unicode | |
; Win Version ...: Windows 7 Professional x64 SP1 | |
; Description ...: Delete Black Screenshots | |
; Version .......: 2013.08.07-1722 | |
; Author ........: | |
; License .......: WTFPL | |
; License URL ...: http://www.wtfpl.net/txt/copying/ | |
; =================================================================================== | |
;@Ahk2Exe-SetName del_blackscreens |
This file contains 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
; =============================================================================================================================== | |
; Title .........: GPU_MEMORY_INFO | |
; AHK Version ...: 1.1.15.01 x64 Unicode | |
; Win Version ...: Windows 7 Professional x64 SP1 | |
; Description ...: GPU_MEMORY_INFO | |
; NVIDIA Graphics Memory Size and Usage in OpenGL | |
; Version .......: v1.00 | |
; Modified ......: 2014.06.27-2150 | |
; Author(s) .....: jNIzM | |
; =============================================================================================================================== |
This file contains 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
#NoEnv | |
; Test GUID | |
MsgBox % Unique.Global.Create() ; ==> {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} | |
test_guid1 := Unique.Global.Create() | |
test_guid2 := Unique.Global.Create() | |
MsgBox % Unique.Global.IsEqualGUID(test_guid1, test_guid1) ; ==> 1 | |
MsgBox % Unique.Global.IsEqualGUID(test_guid1, test_guid2) ; ==> 0 |
This file contains 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
; GLOBAL SETTINGS =============================================================================================================== | |
;#Warn | |
#NoEnv | |
#SingleInstance Force | |
global WS_VSCROLL := 0x00200000 | |
; GUI =========================================================================================================================== |
This file contains 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
/* | |
Update v0.4 | |
Todo: - CryptSetKeyParam (KP_MODE with CBC [maybe CFB, ECB, OFB or CTS]) | |
*/ | |
MsgBox % enc := AES.Encrypt("Test String", "testpw", 256) | |
MsgBox % AES.Decrypt(enc, "testpw", 256) | |
Class AES | |
{ |
OlderNewer