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 url('https://fonts.googleapis.com/css?family=Orbitron&display=swap'); | |
* { | |
display; | |
box-sizing: border-box; | |
} | |
html, body { | |
height: 100%; | |
overflow: hidden; |
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
server { | |
listen 80; | |
server_name localhost; | |
root D:\Genesis-client\public; | |
location / { | |
index index.html; | |
try_files index.html /index.html =500; | |
} |
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 __future__ import print_function | |
import re | |
DISCORD_INVITE = r'discord(?:\.com|app\.com|\.gg)[\/invite\/]?(?:[a-zA-Z0-9\-]{2,32})' | |
messages = ( | |
"Hey, join my guild and get awesome prizes. https://discord.gg/0cDvIgU2voWn4BaD", | |
"Yo. Don't join that dude's guild, these guilds are even more awesome https://discord.gg/discord-api " | |
"https://discord.gg/discord-developers", | |
"There's no invites in this message." |