Git alias conventional-commit
and m
to create conventional commits so fast. And prepare the scope with the alias git scope <scope-name>
.
Run the next line in your shell terminal
const STEAM_STORE_URL = "https://store.steampowered.com" | |
const steamId = args.widgetParameter ?? "76561198008818777" | |
try { | |
const wishListGames = await fetchWishListById(steamId) | |
const widget = await createWidget(wishListGames) | |
renderWidget(widget) | |
} catch(error) { | |
const widget = await createErrorWidget(error) | |
renderWidget(widget) | |
} |
# Warning | |
Clear-Host | |
Write-Output "Run this script on the computer you want to access via RDP" | |
Write-Output "" | |
# Ask | |
Write-Output "Remote address can be an IP address or network with CIDR" | |
Write-Output "Example: 192.168.0.5 or 192.168.0.0/24" | |
Write-Output "" | |
$RemoteAddress = Read-Host "Remote Address" |
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = ""; | |
/* Optional folder name such as "Clippings/" */ |
ldap: | |
## The LDAP implementation, this affects elements like the attribute utilised for resetting a password. | |
## Acceptable options are as follows: | |
## - 'activedirectory' - For Microsoft Active Directory. | |
## - 'custom' - For custom specifications of attributes and filters. | |
## This currently defaults to 'custom' to maintain existing behaviour. | |
## | |
## Depending on the option here certain other values in this section have a default value, notably all of the | |
## attribute mappings have a default value that this config overrides, you can read more about these default values | |
## at https://www.authelia.com/docs/configuration/authentication/ldap.html#defaults |
#!/usr/bin/python | |
# Copyright: (c) 2022, John Burwell <[email protected]> | |
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | |
from __future__ import (absolute_import, division, print_function) | |
__metaclass__ = type | |
DOCUMENTATION = r''' | |
--- |