Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am r4v10l1 on github.
  • I am ravi0li (https://keybase.io/ravi0li) on keybase.
  • I have a public key whose fingerprint is 4122 D6A2 A20D 7D87 C022 A40C 315B 0826 6659 F5C7

To claim this, I am signing this object:

@8dcc
8dcc / brainfuck.md
Last active September 30, 2021 12:56 — forked from roachhd/README.md
Basics of BrainFuck

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

BrainFuck Programming Tutorial by: Katie. Edited by Null (ch0colate).

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

INTRODUCTION

@8dcc
8dcc / Python_OpenCV_cheatsheet.md
Last active July 18, 2021 03:31
Python OpenCV cheatsheet

OpenCV cheatsheet

I am still learning opencv, so I will add here stuff when I use it. Mostly made for personal use.

Other shapes:

cv2.line(img,(200,200),(611,511),(10,10,255),3)  # Line
cv2.rectangle(img,(19,22),(576,579),(0,255,0),2)  # Rectangle
cv2.circle(img,(447,63), 63, (0,0,255), -1)  # Circle
cv2.ellipse(img,(256,256),(100,50),0,0,180,255,-1) # Ellipse
@8dcc
8dcc / README_template.md
Last active July 18, 2021 03:57
README template for my repos.
@8dcc
8dcc / csgo-autoexec.cfg
Last active November 17, 2023 23:03
My personal csgo/tf2 autoexec
echo
echo "⠀⠀⠀⠀⠀⢀⣴⡾⠿⠿⠿⠿⢶⣦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀"
echo "⠀⠀⠀⠀⢠⣿⠁⠀⠀⠀⣀⣀⣀⣈⣻⣷⡄⠀⠀⠀⠀⠀⠀⠀⠀"
echo "⠀⠀⠀⠀⣾⡇⠀⠀⣾⣟⠛⠋⠉⠉⠙⠛⢷⣄⠀⠀⠀⠀⠀⠀⠀"
echo "⢀⣤⣴⣶⣿⠀⠀⢸⣿⣿⣧⠀⠀⠀⠀⢀⣀⢹⡆⠀⠀⠀⠀⠀⠀"
echo "⢸⡏⠀⢸⣿⠀⠀⠀⢿⣿⣿⣷⣶⣶⣿⣿⣿⣿⠃⠀⠀⠀⠀⠀⠀"
echo "⣼⡇⠀⢸⣿⠀⠀⠀⠈⠻⠿⣿⣿⠿⠿⠛⢻⡇⠀⠀⠀⠀⠀⠀⠀"
echo "⣿⡇⠀⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣤⣼⣷⣶⣶⣶⣤⡀⠀⠀"
echo "⣿⡇⠀⢸⣿⠀⠀⠀⠀⠀⠀⣀⣴⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀"
echo "⢻⡇⠀⢸⣿⠀⠀⠀⠀⢀⣾⣿⣿⣿⣿⣿⣿⣿⡿⠿⣿⣿⣿⣿⡇"
@8dcc
8dcc / Useless-cs:go-commands.cfg
Last active August 28, 2021 22:35
Some useless commands and binds for csgo
// Colors
"" white
"" green
" " blue
" " darkblue
"" darkred
"" gold
"" grey
"" lightgreen
"" lightred
@8dcc
8dcc / check_proxies.py
Created July 27, 2021 21:21
Function for checking proxies
# import time, sys
# from colorama import Fore, Style
def check_proxies():
try:
old_ip = ""
requests.get("https://api.ipify.org/", proxies=proxies)
sys.stdout.write(f"\r {Fore.WHITE}Checking the proxies {Style.BRIGHT}[")
for n in range(number_of_proxy_checks):
ip_request = requests.get("https://api.ipify.org/", proxies=proxies)
//CROSSHAIR 1 - CSGO-GeRji-fKhTs-CxCOo-bYQZo-WOxoO
//CROSSHAIR 2 - CSGO-8rUV9-zrppe-AVArW-95mqJ-7k5BO
cl_crosshairalpha "220"
cl_crosshaircolor_r "255"
cl_crosshaircolor_g "30"
cl_crosshaircolor_b "30"
cl_crosshairdot "0"
cl_crosshairgap "-2"
cl_crosshair_t "0"
@8dcc
8dcc / mouse_position.py
Created August 12, 2021 19:46
Mouse position with pyautogui
import pyautogui
pyautogui.displayMousePosition()
@8dcc
8dcc / python_loading_stdout.py
Created September 4, 2021 12:28
Python loading thing with sys
# Loading screen for furry
import time, sys
def main():
for n in range(1,10):
sys.stdout.write(f"\r [{'-'*n}{' '*(10-n)}]")
sys.stdout.flush()
time.sleep(0.5)