All collected Discord error codes, categorized by type (first 2 digits).
Code | Message |
---|---|
10001 | Unknown Account |
10002 | Unknown Application |
10003 | Unknown Channel |
10004 | Unknown Guild |
@echo off | |
REM place this in C:\ and install teamviewer.reg below. Then you should be able to | |
REM openteamviewers from the webbrowser with teamviewer://1234 | |
set protocolString=%1 | |
REM uncomment below for testing | |
REM set protocolString="teamviewer://795143153" | |
set protocolString=%protocolString:"=% |
# Oona Räisänen 2013 | |
# http://windytan.com | |
# ssh-keygen -l -f ~/.ssh/id_rsa.pub | perl emoji.pl | |
@emoji = qw( 🌀 🌂 🌅 🌈 🌙 🌞 🌟 🌠 🌰 🌱 🌲 🌳 🌴 🌵 🌷 🌸 | |
🌹 🌺 🌻 🌼 🌽 🌾 🌿 🍀 🍁 🍂 🍃 🍄 🍅 🍆 🍇 🍈 | |
🍉 🍊 🍋 🍌 🍍 🍎 🍏 🍐 🍑 🍒 🍓 🍔 🍕 🍖 🍗 🍘 | |
🍜 🍝 🍞 🍟 🍠 🍡 🍢 🍣 🍤 🍥 🍦 🍧 🍨 🍩 🍪 🍫 | |
🍬 🍭 🍮 🍯 🍰 🍱 🍲 🍳 🍴 🍵 🍶 🍷 🍸 🍹 🍺 🍻 |
# Prerequisites | |
*.d | |
# Compiled Object files | |
*.slo | |
*.lo | |
*.o | |
*.obj | |
# Precompiled Headers |
The goal of this gist is to explain and teach developers how to write a working Gateway client. Please see the Table of Contents for sections.
Created By: Astrid Gealer, Web Scale Software Ltd [email protected]
Created On: 23rd July 2023
Write-Output "Setting congestion provider to CTCP for Internet." | |
netsh int tcp set supplemental Internet congestionprovider=ctcp | Out-Null | |
Write-Output "Enabling Direct Cache Access, and configuring RSS and RSC settings globally." | |
netsh int tcp set global dca=enabled rss=enabled rsc=disabled | Out-Null | |
Write-Output "Disabling TCP timestamps globally." | |
netsh int tcp set global timestamps=disabled | Out-Null | |
Write-Output "Setting initial Retransmission Timeout (RTO) to 2000 milliseconds globally." |