Skip to content

Instantly share code, notes, and snippets.

@Auax
Auax / assault_cube_memory.go
Created January 22, 2022 00:40
Change Assault Cube's rifle ammo using this simple external script. Although this is a simple demonstration, it can be freely used.
// ASSAULT CUBE Go external cheat.
// The objective of this script is to show how to perform operations such as writing / reading the memory of a process.
// With this script, you can change the rifle ammo inside the game.
// You can set the ammo's value, ammo's address offset, and more inside the main() function.
// Note: The window must be windowed for this to work.
// BY AUAX 2006
package main
import (
@Auax
Auax / FileFinder.cpp
Last active October 9, 2021 21:53
File finder sample C++ code by Auax.
#include <iostream>
#include <string>
#include <chrono>
#include <filesystem>
#include <stdlib.h>
// set filesystem namespace
namespace fs = std::filesystem;
std::string getOsName()
@Auax
Auax / blinklearning_hack.js
Last active February 24, 2024 19:14
Paste this into a new Tampermonkey script and press ALT + I to get the answers.
// ==UserScript==
// @name BlinkLearning Solver by Auax
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Simple cheat for BlinkLearning!
// @author Auax
// @match www.blinklearning.com:/*
// @icon https://www.google.com/s2/favicons?domain=blinklearning.com
// @grant none
// ==/UserScript==
@Auax
Auax / Spotify Music Predictor.ipynb
Created June 19, 2021 10:28
Predict a Spotify song genre
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Auax
Auax / window_finder.py
Last active June 7, 2021 20:56
Get all window names from Windows 10 and path to executable
import sys
import win32gui
import win32api
import win32process
import win32con
import os
if not os.name == "nt":
print("Only available in Windows.")
sys.exit(-1)
@Auax
Auax / vector.py
Created May 1, 2021 21:54
Codewars Vector Class (Exercice)
# The code could be resolved with a "combine" function but I'm lazy to change it.
from math import sqrt
class Vector:
"""
Vector main class
"""
def __init__(self, vector:list):