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 / ets2_options.md
Last active May 4, 2024 11:11
Euro Truck Simulator 2 Launch Options (Command Line Arguments)
Parameter Arguments Description Version Reference
-32bit launch directly in 32bit mode
@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 January 23, 2024 16:19 — 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: