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
| #!/bin/sh | |
| # NOTE: | |
| # Make sure that the value of Name, Type, TTL are the same with your DNS Record Set | |
| HOSTED_ZONE_ID=<YOUR_HOSTED_ZONE_ID> | |
| RESOURCE_VALUE=<YOUR_DNS_RESOURCE_VALUE-ex:IP or dns> | |
| DNS_NAME=<YOUR_DNS_NAME-ex: subdomain.domain.com> | |
| RECORD_TYPE=<DNS_RECORD_TYPE-ex: A, CNAME> | |
| TTL=<TTL_VALUE> |
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
| #NoEnv | |
| #SingleInstance force | |
| SetWinDelay, -1 | |
| DetectHiddenWindows, on | |
| Menu, Tray, NoStandard | |
| ; Menu, Tray, Icon, wt-tilda.ico | |
| Menu, Tray, Add, Exit, Exit |
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
| #!/bin/bash | |
| # Favicon and Apple Touch Icon Generator | |
| # | |
| # This bash script takes an image as a parameter, and uses ImageMagick to convert it to several | |
| # other formats used on modern websites. The following copies are generated: | |
| # | |
| # * apple-touch-icon-144x144-precomposed.png | |
| # * apple-touch-icon-114x114-precomposed.png | |
| # * apple-touch-icon-57x57-precomposed.png |
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
| ProductID Database | |
| 106 GeoIP.dat | |
| 111 GeoIPOrg.dat | |
| 112/115 GeoIPRegion.dat | |
| 117 GeoIPASNum.dat | |
| 119 GeoIPUserType.dat | |
| 121/122 GeoIPISP.dat | |
| 132/133 GeoIPCity.dat | |
| 135 GeoIPAreaCode.dat | |
| 137 GeoIPDMACode.dat |
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
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Zabbix SMTP Alert script for gmail. | |
| """ | |
| import sys | |
| import smtplib | |
| from email.MIMEText import MIMEText | |
| from email.Header import Header |