Skip to content

Instantly share code, notes, and snippets.

@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)
@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 / 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:5934292
Created July 5, 2013 12:43
[AHK] HDD Temperature
; ===================================================================================
; 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 ===================================================================
@jNizM
jNizM / gist:6080135
Last active December 20, 2015 05:39
[AHK] CoD4 - delete black Punkbuster screenshots
; ===================================================================================
; 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
@jNizM
jNizM / nvapi-debug.ahk
Last active October 18, 2017 10:10
[AHK] NvAPI Debug
; GLOBAL SETTINGS ===============================================================================================================
#NoEnv
#SingleInstance Force
#NoTrayIcon
SetBatchLines -1
global app := { name: "NvAPI_Debug", version: "2016.375.00025", author: "jNizM", licence: "MIT" }
@jNizM
jNizM / W1709N.ps1
Last active March 28, 2018 14:18
[UNFINISHED] Create a windows 10 iso without crappy and useless windows appx packages
<#
.WINDOWS 10 ENTERPRISE N
todo todo todo
.UNZIP ISO
->
.RUN .PS1 SCRIPT
@jNizM
jNizM / ahk_gui_gradient.ahk
Last active May 16, 2019 17:30
[AHK] Create Gardient in GUI
; GLOBAL SETTINGS ===============================================================================================================
#NoEnv
#SingleInstance Force
SetBatchLines -1
; GUI ===========================================================================================================================
Gui, +LastFound +hwndhMyGUI
Gui, Margin, 0, 0
@jNizM
jNizM / class_dropbox.ahk
Last active May 16, 2019 17:32
[AHK] Dropbox Class (GetPath / GetStatus / GetPID)
; License: Unlicense (http://unlicense.org/)
/*
* Function DropBox.GetPath()
*
* Parameters
* Account: can be "personal" or "business" (personal if omitted)
*
* Return Values
* if the function succeeds ==> PATH
@jNizM
jNizM / Gui.ahk
Last active May 16, 2019 17:33
[AHK] GUI Test for Win 8.1 & Win 10
; http://ahkscript.org/boards/viewtopic.php?f=17&t=9057
; 2015-07-30 10:52
; TODO ==========================================================================================================================
; - add child
; GLOBAL SETTINGS ===============================================================================================================
#Warn
#NoEnv