Skip to content

Instantly share code, notes, and snippets.

View ColinShark's full-sized avatar
🦈
Being Sharky :3

ColinShark ColinShark

🦈
Being Sharky :3
View GitHub Profile
@Bluscream
Bluscream / Deploy-Configs.ps1
Last active October 30, 2025 22:03
Euro Truck Simulator 2 Launch Options (Command Line Arguments)
param(
[string]$GamePath = $PSScriptRoot,
[switch]$Backup = $true,
[switch]$Force = $false,
[string]$inputFile = "./autoexec.cfg",
[switch]$deleteBackups = $false,
[switch]$deleteConfigs = $false
)
$profileDirs = @("profiles", "steam_profiles", "preview_profiles")
$configHeader = "# prism3d variable config data`n`n" # Autoexec settings deployed on {datetime}`n`n"
@RazenIW
RazenIW / Instructions.md
Last active August 25, 2019 22:15
Setup Instructions for Razen's Account Tracker (updated 25 august 2019)

Razen's Simple CS:GO Account Tracker

Since some people asked for it, i decided to share it
You can contact me on telegram for any question other than those already answered in the FAQ

Shoutout to the cathook team :^)

Prerequisites

  • A Google account
@Flybel
Flybel / clock.html
Last active March 10, 2025 02:34 — forked from sam0737/clock.html
OBS Studio: A HTML page for showing current date and time in the video
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>A simple clock</title>
</head>
<body translate="no" >
@gregburek
gregburek / rateLimitDecorator.py
Created December 7, 2011 01:51
Rate limiting function calls with Python Decorators
import time
def RateLimited(maxPerSecond):
minInterval = 1.0 / float(maxPerSecond)
def decorate(func):
lastTimeCalled = [0.0]
def rateLimitedFunction(*args,**kargs):
elapsed = time.clock() - lastTimeCalled[0]
leftToWait = minInterval - elapsed
if leftToWait>0: