- Go to https://discordapp.com/developers.
- Click 'My apps' in the top left: https://i.imgur.com/msNDtLt.png
- Click 'New App': https://i.imgur.com/zSTbluP.png
- Give your bot a name and optionally a description and avatar: https://i.imgur.com/mwmIn1y.png
- Click 'Create App': https://i.imgur.com/MbH7tX2.png
- Scroll down and click 'Create a Bot User': https://i.imgur.com/G4L7X0l.png
- Click 'Yes, do it!': https://i.imgur.com/Mdfar29.png
- Click 'click to reveal' nex to 'Token:': https://i.imgur.com/sOIvcXU.png
This file contains 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 discord | |
from discord.ext import commands | |
from __main__ import send_cmd_help | |
import aiohttp | |
from bs4 import BeautifulSoup | |
import random | |
from .utils import checks | |
from cogs.utils.dataIO import dataIO | |
import os |
- Press ctrl/cmd+shift+i (in the app) or F12 (on the website).
- Press the 2 arrows next to each other in the top. (https://cdn.impulsebot.com/RUQzKW71Yz.png)
- Click 'Application'. (https://cdn.impulsebot.com/xrU5OwDIxu.png)
- Click 'Local Storage'. (https://cdn.impulsebot.com/Yc20dD5Igu.png)
- Click whatever URL you can see there. (https://cdn.impulsebot.com/StsccmaCHU.png)
- Double click 'token'. (https://cdn.impulsebot.com/kdtDPvDeGi.png)
- Press ctrl/cmd+c.
- Do not forget to remove the double quotes when pasting.
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
- A Russian translation of this article can be found here, contributed by Timur Demin.
- A Turkish translation can be found here, contributed by agyild.
- There's also this article about VPN services, which is honestly better written (and has more cat pictures!) than my article.
This file contains 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
package com.ptsmods.morecommands; | |
import com.google.common.collect.ImmutableList; | |
import org.apache.commons.lang3.tuple.Pair; | |
import org.objectweb.asm.util.ASMifier; | |
import java.io.*; | |
import java.util.*; | |
import java.util.function.BiFunction; | |
import java.util.function.Function; |