| Library | Status | Notes / PR link |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |
Created By: Astrid Gealer, Web Scale Software Ltd [email protected]
Created On: 23rd July 2023
- A "client" refers to a mail server or user wishing to connect via the protocol to the host server.
- A "user" refers to a user of the host mail server.
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prerequisites | |
*.d | |
# Compiled Object files | |
*.slo | |
*.lo | |
*.o | |
*.obj | |
# Precompiled Headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Oona Räisänen 2013 | |
# http://windytan.com | |
# ssh-keygen -l -f ~/.ssh/id_rsa.pub | perl emoji.pl | |
@emoji = qw( 🌀 🌂 🌅 🌈 🌙 🌞 🌟 🌠 🌰 🌱 🌲 🌳 🌴 🌵 🌷 🌸 | |
🌹 🌺 🌻 🌼 🌽 🌾 🌿 🍀 🍁 🍂 🍃 🍄 🍅 🍆 🍇 🍈 | |
🍉 🍊 🍋 🍌 🍍 🍎 🍏 🍐 🍑 🍒 🍓 🍔 🍕 🍖 🍗 🍘 | |
🍜 🍝 🍞 🍟 🍠 🍡 🍢 🍣 🍤 🍥 🍦 🍧 🍨 🍩 🍪 🍫 | |
🍬 🍭 🍮 🍯 🍰 🍱 🍲 🍳 🍴 🍵 🍶 🍷 🍸 🍹 🍺 🍻 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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:"=% |