Skip to content

Instantly share code, notes, and snippets.

@AndrewMast
AndrewMast / install-grpc.sh
Created October 24, 2025 20:02
Laravel Forge Recipe to Install gRPC and Protobuf
# Name: Install gRPC
# Run as: root
# Install all dependencies needed for gRPC compilation
sudo apt-get update && \
apt-get install -y --no-install-recommends \
git \
make \
libgrpc-dev \
libgrpc++-dev \
(async function () {
let interval = null;
let counter = 0;
const fetch = async function(url) {
try {
return await $.ajax(url, {dataType: "json"});
} catch (error) {
console.log('Error:', error);
}
@AndrewMast
AndrewMast / disable_vanguard.vbs
Last active November 10, 2025 20:48
Commands to disable Riot Vanguard when you aren't playing Valorant
' Disables Vanguard from starting when you boot your computer
Call CreateObject("Shell.Application").ShellExecute("cmd.exe", "/c ""sc config vgc start= disabled & sc config vgk start= disabled""", "", "runas")