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
| # No-IP DDNS Updater | |
| # http://www.noip.com/integrate/ | |
| :global publicIP; | |
| :global abortUpdate; | |
| :if ([:typeof $abortUpdate] != "bool") do={ | |
| :set $abortUpdate false; | |
| } |
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
| :do { | |
| :do { | |
| /file remove "/ipsum.rsc"; | |
| /file remove "/subnet.rsc"; | |
| } on-error={} | |
| :put "Downloading ipsum.rsc..."; | |
| :do { | |
| /tool fetch url="https://antifilter.download/list/ipsum.rsc" dst-path="/ipsum.rsc" | |
| } on-error={ |
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
| # Use this script to test that your Telegram bot works. | |
| # | |
| # Install the dependency | |
| # | |
| # $ gem install telegram_bot | |
| # | |
| # Run the bot | |
| # | |
| # $ ruby bot.rb | |
| # |
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 | |
| # | |
| # File: pingi | |
| # | |
| # Purpose: Ping Improved. Actually just handles better the timeout/unreachable. | |
| # | |
| # Author: BRAGA, Bruno <bruno.braga@gmail.com> | |
| # | |
| # Copyright: | |
| # |
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 | |
| ## You must have a real routable IPv4 address for IPv6 rapid deployment (6rd) | |
| ## tunnels. | |
| ## Also make sure you have at least linux kernel 2.6.33 and you have enabled 6rd | |
| ## CONFIG_IPV6_SIT_6RD=y | |
| PREFIX="2a02:2b64" # 6rd ipv6 prefix | |
| GATEWAY=`dig +short 6rd.on.net.mk` # 6rd gateway host |