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
#cs ---------------------------------------------------------------------------- | |
AutoIt Version: 3.3.8.1 | |
Author: VADemon | GitHub+GitLab | https://twitter.com/BotOfWar | |
Version: 1.0 | |
Script Function: | |
Arrange Windows on Desktop in borderless fashion. Monitor selection: at the mouse curser. | |
#ce ---------------------------------------------------------------------------- |
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
#!/usr/bin/env bash | |
# | |
# This script clones and compiles wget-lua. | |
# | |
# first, try to detect gnutls or openssl | |
CONFIGURE_SSL_OPT="" | |
if builtin type -p pkg-config &>/dev/null | |
then | |
if pkg-config gnutls |
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
# Configuration file | |
blockprotector { | |
I:blockProtectorMaxRF=500000 | |
I:blockProtectorRFPerTick=20000 | |
B:enabled=true | |
I:maxProtectDistance=10 | |
I:rfForExplosionProtection=10000 | |
I:rfForHarvestAttempt=2000 | |
I:rfPerProtectedBlock=5 |
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
#!/bin/bash | |
# for more info, escape chars in cron etc: | |
# https://unix.stackexchange.com/questions/89188/cron-allowed-special-character-l-for-last-day-of-the-month-on-debian | |
[ "$(date -d 'tomorrow' +%d)" == "01" ] && echo "next month" || echo "same month" | |
# UPD: found same solution https://stackoverflow.com/a/6139310/1599009 | |
# exit code? |
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
-- USAGE: | |
-- string.replace("mystring", "my", "our") | |
-- or | |
-- local teststr = "weird[]str%ing" | |
-- teststr2 = teststr:replace("weird[]", "cool(%1)") | |
-- Warning: add your own \0 char handling if you need it! | |
do | |
local function regexEscape(str) |
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
#include-once | |
; #AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w- 4 -w 5 -w 6 -w 7 | |
; #INDEX# ======================================================================================================================= | |
; Title .........: _ShellFile | |
; AutoIt Version : v3.2.12.1 or higher | |
; Language ......: English | |
; Description ...: Create an entry in the shell contextmenu when selecting an assigned filetype, includes the program icon as well. | |
; Note ..........: | |
; Author(s) .....: guinness |
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
#!/bin/bash | |
# Install GitForWindows, it comes with Git Bash - Bash Shell, the Linux Console: | |
# https://git-scm.com/download/win | |
# (or you can try to use your Windows 10 unix shell) | |
# | |
# Next step: Change the URL and save folder below | |
# Double click "comment-watcher.sh" | |
# Press Ctrl+C to close this script |
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
~820820 | |
~~~~~~~ | |
~90022979 | |
~~~~~~~~~ | |
~27huss | |
~7gnaas | |
~~janalme | |
~* | |
~1 | |
~<yanderse |
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
--Licensed under WTFPLv2; script made by VADemon v1.0 | |
addhook("attack", "flash.attack") | |
flash = {} | |
function flash.attack(id) --on throwing | |
if player(id, "weapontype")==52 or player(id, "weapontype")==0 then | |
flash.check_for_flash(id) | |
end | |
end |
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
--Adminsay by VADemon version 1.3 http://www.unrealsoftware.de/profile.php?userid=7844 | |
--Requested by AtomKuh http://www.unrealsoftware.de/profile.php?userid=86415 | |
adminsay={} | |
adminsay.enabled = {} | |
adminsay.prefix = {} | |
adminsay.suffix = {} | |
adminsay.color = {} | |
adminsay.standardcolor = "255255255" --if user hasn't a defined color | |
function adminsay.addUser(usgn, prefix, suffix, color) -- DONT TOUCH THIS |