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 | |
# block torrent traffic by iptable/firewall for VPN/Proxy server | |
# [email protected] | |
# forked by roland | |
# Delete all existing rules | |
iptables -F | |
iptables -X | |
# Set default chain policies |
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
<!-- https://bulma.io/documentation/form/file/ --> | |
<div class="file has-name"> | |
<label class="file-label"> | |
<input class="file-input" type="file" name="resume"> | |
<span class="file-cta"> | |
<span class="file-icon"> | |
<i class="fas fa-upload"></i> | |
</span> | |
<span class="file-label"> |
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 sys | |
import os | |
try: | |
from comtypes import client | |
except: | |
print "Install comtypes from http://sourceforge.net/projects/comtypes/" | |
sys.exit(-1) | |
if __name__ == '__main__': |