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
| Script("Name") = "Clan Hotfix" | |
| Script("Author") = "Davnit" | |
| Script("Major") = 1 | |
| Script("Minor") = 0 | |
| Sub Event_Load() | |
| If IsOnline And Len(Clan.Tag) > 0 And Clan.Self.Name = vbNullString Then | |
| Clan.RequestMemberList | |
| End If | |
| End Sub |
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 base64 | |
| import hashlib | |
| import json | |
| from urllib import request | |
| from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes | |
| from cryptography.hazmat.backends import default_backend | |
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 base64 | |
| import json | |
| import zlib | |
| directions = { | |
| 0: "N", | |
| 1: "NE", | |
| 2: "E", |
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 base64 | |
| from datetime import datetime | |
| import hashlib | |
| import json | |
| from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes | |
| from cryptography.hazmat.backends import default_backend | |
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
| -- | |
| -- ---------------------------------------------------------------------------- | |
| -- "THE BEER-WARE LICENSE" (Revision 42): | |
| -- <philip@FreeBSD.org> wrote this file. As long as you retain this notice you | |
| -- can do whatever you want with this stuff. If we meet some day, and you think | |
| -- this stuff is worth it, you can buy me a beer in return. -Philip Paeps | |
| -- ---------------------------------------------------------------------------- | |
| -- | |
| -- $FreeBSD$ | |
| -- |
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
| from http.server import HTTPServer, BaseHTTPRequestHandler | |
| class GlobalResponseHandler(BaseHTTPRequestHandler): | |
| def do_GET(self): | |
| self.send_response(200) | |
| self.send_header("Content-Type", "application/xml") | |
| self.end_headers() |
OlderNewer