Original Request
https://discord.com/channels/280102180189634562/280157083356233728/1164923362829676626
https://discord.com/channels/280102180189634562/280157083356233728/1164923362829676626
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
<fontconfig> | |
<match target="scan"> | |
<test name="family"> | |
<string>Noto Color Emoji</string> | |
</test> | |
<edit mode="assign" name="scalable"> | |
<bool>true</bool> | |
</edit> |
signtool.exe sign -a -tr http://timestamp.sectigo.com -td sha256 -fd sha256 YOUR_FILE_PATH
sudo add-apt-repository -y ppa:git-core/ppa
sudo apt update
sudo apt install -y git pandoc catdoc odt2txt
<?xml version="1.0" encoding="UTF-8"?> | |
<plist version="1.0"> | |
<dict> | |
<key>scope</key> | |
<string>text.html.markdown markup.heading - meta.whitespace.newline.markdown</string> | |
<key>settings</key> | |
<dict> | |
<key>showInSymbolList</key> | |
<integer>1</integer> | |
<key>symbolTransformation</key> |
https://discord.com/channels/280102180189634562/280157067396775936/736233105295278120 | |
keyword: | |
keyword | |
storage.modifier | |
storage.type | |
keyword.declaration | |
variable.language | |
constant.language | |
type: |
MAINTENANCE_MODE=0 |
import sublime | |
import sublime_plugin | |
# @see https://discordapp.com/channels/280102180189634562/280157067396775936/697124502244687984 | |
class CompletionItemDemoListener(sublime_plugin.EventListener): | |
def on_query_completions(self, view, prefix, locations): | |
return ( | |
[ | |
sublime.CompletionItem( |
This gist will no longer be updated as the changelog will be on the official website.
Converted via https://domchristie.github.io/turndown
<?php | |
declare(strict_types=1); | |
namespace App\Core; | |
use RuntimeException; | |
class SimpleCrypto | |
{ |