Skip to content

Instantly share code, notes, and snippets.

@quad-damage
quad-damage / r1delta_ds.md
Last active May 5, 2025 14:28
R1Delta Dedicated Server setup through Docker.

R1Delta Dedicated Server (Docker Setup)

This guide provides basic instructions for setting up your R1Delta Dedicated Server using Docker.

0. Basic Docker Concepts

  • Images are downloaded from online repositories (docker pull).
  • Containers are created from these images, providing isolated environments.
  • Ports from containers are exposed to your host machine using -p OutsidePort:InsidePort/protocol.
  • Directories on your host can be mounted within containers using -v /host/directory:/container/directory.
replaced=true
new_link=https://github.com/r1delta/r1delta/releases/latest
replaced=false
new_link=https://github.com/r1delta/r1delta_installer/releases
@quad-damage
quad-damage / ytdlp_setup.ps1
Created October 24, 2023 16:28
YT-DLP Setup Script
$Global:WorkingDir = $null
clear
function Create-WorkingDir {
mkdir ytdlp | Out-Null
cd ytdlp | Out-Null
}
@quad-damage
quad-damage / apex_highlights.md
Created February 26, 2023 19:10
Apex Legends Highlight Values
Index Inline Function
0 None
12 Bloodhound
12 Movement revealed
13 Bloodhound clone
75 Menu mode reveal
76 Menu mode reveal AA
101 Custom color
103 Sonar
@quad-damage
quad-damage / Hitlogs.lua
Last active January 10, 2023 21:27
Animated hitlogs for Rifk7.
--------------------------------
-- Animated Hitlogs for Rifk7 --
-- By: Quadruple --
--------------------------------
--------------------------------------------------
-- IF YOU ENCOUNTER A LOT OF UNKNOWN MISSES --
-- THAT ACTUALLY LAND, INCREASE THE VALUE BELOW --
--------------------------------------------------
local ABANDON_LOG_UNKOWN_TIMEOUT = 0.3
@quad-damage
quad-damage / FlappyRifk.lua
Last active December 25, 2022 14:54
Flappy Bird style minigame for RIfk 7
------------------------------
-- FlappyRifk lua for Rifk7 --
-- by Quadruple --
-- ---------------------------
math.clamp = function(x, min, max)
if(x < min) then return min end
if(x > max) then return max end
return x
end