# usermod -aG disk <user>
# vim /etc/polkit-1/rules.d/10-udisks2.rules
ADD THE FOLLOWING
// See the polkit(8) man page for more information
// about configuring polkit.
# usermod -aG disk <user>
# vim /etc/polkit-1/rules.d/10-udisks2.rules
ADD THE FOLLOWING
// See the polkit(8) man page for more information
// about configuring polkit.
0.0.0.0 0-000.store | |
0.0.0.0 0008d6ba2e.com | |
0.0.0.0 004809f9da.com | |
0.0.0.0 0083334e84.com | |
0.0.0.0 00aaa2d81c1d174.com | |
0.0.0.0 0111d594c7.com | |
0.0.0.0 01counter.com | |
0.0.0.0 01d0c91c0d.com | |
0.0.0.0 01fd230c00.com | |
0.0.0.0 01jud3v55z.com |
Nim is a (pretty obscure) "statically typed compiled systems programming language". It's unique because the syntax is very reminiscent of Python, while being a compiled language (;
anyone?), hence making it accessible to Python devs. Now let's cut to the chase - how to install this:
(Powershell only)
choco install nim
# Only tested on Windows 10 | |
# ------------------------- | |
# Here is a basic discord.py bot | |
import discord | |
from discord.ext import commands | |
from socket import create_connection | |
client = commands.Bot(command_prefix = "your prefix") | |
token = "bot token" |