Skip to content

Instantly share code, notes, and snippets.

View Sam-Belliveau's full-sized avatar

Sam Belliveau Sam-Belliveau

View GitHub Profile
"Phrases"
{
"JoinedQueueMessage"
{
"en" "You have been placed in the waiting queue."
}
"WaitingQueueMessage"
{
"#format" "{1:i}"
"en" "The game is currently full with {GREEN}{1} {NORMAL}players. You are in the waiting queue."
@Sam-Belliveau
Sam-Belliveau / csgo_radar_aim.py
Last active August 27, 2021 03:36
[CDLLBOSS DID HELP MAKE THIS] This is just an experiment for using the radar to make an aimbot. Its not amazing, but its impossible to detect as it just looks at the screen. It takes some configuring, like getting the radar perfectly in view and making binds, but it shouldnt be too hard.
# INSTALL PYTHON FROM THE WINDOWS STORE THAN DOUBLE CLICK THE PYTHON FILES
# ALL DEPENDANCIES WILL INSTALL AUTOMATICALLY
from subprocess import call
# GUI
from tkinter import *
import tkinter.font as tkFont
# Timing Functions
public class Rectangle{
private final double x, y; // center of rectangle
private final double width; // width of rectangle
private final double height; // height of rectangle
// Constructor
public Rectangle(double x, double y, double width, double height){
if(width < 0.0 || height < 0.0) {
throw new IllegalArgumentException("diamentions of Rectangle must be positive!");
public class Rational extends Number implements Comparable<Rational> {
/**
*
*/
private static final long serialVersionUID = 1L;
private static final int kCFLLength = 16;
# ╭───────────────╮
# │ ╭───╮ ╭───╮ │ Hello! My Name is Tom! Im just here to say hello!
# │ │ * │ │ * │ │ If you would like to borrow any of my cool lines,
# │ ╰───╯ ╰───╯ │ Either copy from my face or pick out a few from
# │ ) │ below! Anyway, I hope whatever your making is 10x
# │ ╰─────────╯ │ cooler with these cool lines your using.
# ╰───────────────╯ ╭───╮
# Here is ╭───┴───┴───╮
# my Handy │ │ ─ ╰╯ ╭╮ │
# ╭───────────────╮
# │ ╭───╮ ╭───╮ │ Hello! My Name is Tom! Im just here to say hello!
# │ │ * │ │ * │ │ If you would like to borrow any of my cool lines,
# │ ╰───╯ ╰───╯ │ Either copy from my face or pick out a few from
# │ ) │ below! Anyway, I hope whatever your making is 10x
# │ ╰─────────╯ │ cooler with these cool lines your using.
# ╰───────────────╯ ╭───╮
# Here is ╭───┴───┴───╮
# my Handy │ │ ─ ╰╯ ╭╮ │
# tool box! ╰───────────╯
@Sam-Belliveau
Sam-Belliveau / competition_crusher.py
Last active January 6, 2020 06:24
this generates huge amounts of code for any mp4 you give it
import cv2
import random
VIDEO_FILE="test.mp4"
WIDTH=40
HEIGHT=30
FRAMERATE=4
COMPRESSION=2 # [0, 1, 2]
code = open("test_code.txt", "w")