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
#include <sourcemod> | |
#pragma semicolon 1 | |
#pragma newdecls required | |
ConVar sv_alltalk; | |
bool alltalkWas; | |
public Plugin myinfo = { | |
name = "NT Disable Alltalk When Ghosting", |
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
GALLIUM_HUD="fps+frametime+cpu+GPU-load+memory-clock+VRAM-usage" glxgears |
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
#include <sdktools> | |
// For a valid base entity pointer, returns its entity index. | |
stock int GetBaseEntity(Address self) | |
{ | |
static Handle call = INVALID_HANDLE; | |
if (call == INVALID_HANDLE) | |
{ | |
StartPrepSDKCall(SDKCall_Raw); | |
PrepSDKCall_SetVirtual(5); |
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
{ | |
"version": "0.2.1", | |
"defaults": {}, | |
"configurations": [ | |
{ | |
"type": "dll", | |
"exe": "${env.SDK2013MP}\\hl2.exe", | |
"project": "CMakeLists.txt", | |
"projectTarget": "client.dll (game\\client\\client.dll)", | |
"name": "client.dll (game\\client\\client.dll)", |
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBGWVem8BEADlPQ/DDdGYruPvlVecaG7wEjs4xrpmNVUzNUUfiMMAp9EeY/CI | |
NV5nxDEYzu2DHbo6pcitS+rWDH4H82zUa69xIZ6W+ulIxfWgLm/phu9taoEmfMtz | |
4ZzybOaTayH+sydk80pHTpQr1YPDzDxbS+zBKWM8XhECFf0gxIAWydUBbKT8Xi2O | |
abBJywmpUcuinw3AI6OydsEWLWabEM7jyw8dZmGqOn6GFyXSXV20cp+stWCvj0++ | |
V/9NDEnJSR9bvCw3FcM4B4vQYMM+XpPAc1CooLZva12RPVtO1jTZuqri1cCbfkEv | |
2NWWRrlWWowgkrQjYYT02ZmqjwfCXjaqpKJcoIJCIoSlynkeEASMqnlznLhC62O2 | |
CeBhlFAAcuoNPNLjBcx4OL75uPQjPA8Ly900VuYdaBdmtpMFWzyqhgCzcDRY3ufT | |
0ZWsCJqE6Vi/ZT8XfQHehLCQNwkgHpJ7X75MEyk4vgenvJCVODa8fuk6lzxyIi/6 |
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
; THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, | |
; INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A | |
; PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | |
; HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | |
; OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | |
; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
; List of apps to kill on hotkey | |
^p:: | |
Process,Close,cs2.exe |
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
// ==UserScript== | |
// @name Disable all GitHub shortcut keys | |
// @description Make the GitHub web interface usable by turning off all its forced keyboard shortcuts that are interfering with browser and OS shortcuts. | |
// @version 0.3.0 | |
// @namespace githubPls | |
// @include https://github.com/* | |
// @updateURL https://gist.githubusercontent.com/Rainyan/bdc81d2280936e26ac8690e7ac1292f9/raw/ | |
// ==/UserScript== | |
const ALLOWED_KEYS = [ |
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
// For path "dir_path", get files that match the "filter_by_extension" filter, | |
// and pass them by reference to a valid DataPack "out_datapack". | |
// Optionally supports SM's OpenDirectory parameters. | |
// Returns the number of files passed by reference. | |
// Caller is responsible for initializing and freeing the DataPack memory. | |
int GetFilesOfDir(const char[] dir_path, DataPack out_datapack, | |
const char[] filter_by_extension="", | |
bool use_valve_fs=false, const char[] valve_path_id="GAME") | |
{ | |
int num_files_found = 0; |
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
#!/usr/bin/env python3 | |
import sys | |
def get_aspect_ratio(width: int, height: int) -> tuple[int, int]: | |
"""Return the aspect ratio of a screen resolution.""" | |
a, b = width, height | |
while b != 0: | |
temp = b |
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
; Ripcord doesn't have mouse binds yet, so use F24 redirection as the mic mouse bind. | |
#HotIf WinExist("ahk_exe Ripcord.exe") | |
*$~xButton1::F24 ; don't block the mouse action, just replicate as a function key | |
#HotIf | |
; Disable left Windows key when inside CS to avoid mispresses | |
#HotIf WinActive("ahk_exe cs2.exe") | |
~LWin::vkFF ; only block plain key press, ie. still allow Win+key combos | |
#HotIf |
NewerOlder