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": "webdav", | |
"version": "1.0.0", | |
"description": "", | |
"main": "server.js", | |
"author": "", | |
"license": "", | |
"dependencies": { | |
"jsDAV": "^0.3.4" | |
} |
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
; FIND IN GOOGLE | |
LWIN & f:: | |
Send, ^c | |
Sleep 50 | |
Run, http://www.google.com/search?q=%clipboard% | |
return | |
; SAVE/RESTORE WINDOW SIZE & LOCATION | |
;LAlt & LShift & 1:: | |
!+1:: |
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
@echo off | |
REM The key is generated using your machine's current time. | |
REM The formula is 13333 + (current hour * 7113) + (current minute * 77). | |
REM Calc that out by hand and use it with the -key parameter then | |
REM you can use movdump by itself without the GUI at all. | |
set HH=%TIME:~0,2% | |
set MM=%TIME:~3,2% | |
set /a KEY=13333+%HH%*7113+%MM%*77 |
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
import requests | |
from xml.etree.ElementTree import XML | |
#------------------------------------------------------------------------------- | |
IP_CHECK_URL = 'http://ip-api.com/json' | |
IP_TEXT_FILE = '/home/hannibal/updateip.txt' | |
ENOM_INTERFACE_URL = 'https://reseller.enom.com/interface.asp' | |
DOMAIN = 'yourdomain.net' | |
PASSWD = 'xxxxxxxx' | |
ENOM_PARAMS = { 'command': 'setdnshost', 'responsetype': 'xml' }; |