Home:
/:discord://-/- friends:
discord://-/channels/@me/ - nitro:
discord://-/store - shop:
discord://-/shop - message requests:
discord://-/message-requests - family centre:
discord://-/family-center
This is an unofficial list of all Discord guild features, for an official list refer to the Discord Developer documentation.
| Guild Feature | Description |
|---|---|
ANIMATED_ICON |
Allows the server to set an animated icon. Used in server boosting, level 1 |
BANNER |
Allows the server to set a banner which is shown at the top of all the channels. Used in server boosting, level 2 |
COMMERCE |
Given to servers with a developer license, allows them to create and use store channels |
COMMUNITY |
Given to servers that enable community in server settings, also gives access to the news feature which allows servers to create announcement channels |
DISCOVERABLE |
Given to servers that enabled discovery guidelines |
ENABLED_DISCOVERABLE_BEFORE |
Given to servers that enabled discovery at any point |
| # This script will manually rip out all VMware Tools registry entries and files for Windows 2008-2019 | |
| # Tested for 2019, 2016, and probably works on 2012 R2 after the 2016 fixes. | |
| # This function pulls out the common ID used for most of the VMware registry entries along with the ID | |
| # associated with the MSI for VMware Tools. | |
| function Get-VMwareToolsInstallerID { | |
| foreach ($item in $(Get-ChildItem Registry::HKEY_CLASSES_ROOT\Installer\Products)) { | |
| If ($item.GetValue('ProductName') -eq 'VMware Tools') { | |
| return @{ | |
| reg_id = $item.PSChildName; |
| #!/bin/bash | |
| # | |
| # CatBox v2.0 | |
| # An implementation of catbox.moe API in Bash | |
| # Author: MineBartekSA | |
| # Gist: https://gist.github.com/MineBartekSA/1d42d6973ddafb82793fd49b4fb06591 | |
| # Change log: https://gist.github.com/MineBartekSA/1d42d6973ddafb82793fd49b4fb06591?permalink_comment_id=4596132#gistcomment-4596132 | |
| # | |
| # MIT License | |
| # |
Services declared as oneshot are expected to take some action and exit immediatelly (thus, they are not really services,
no running processes remain). A common pattern for these type of service is to be defined by a setup and a teardown action.
Let's create a example foo service that when started creates a file, and when stopped it deletes it.
Create executable file /opt/foo/setup-foo.sh: