Skip to content

Instantly share code, notes, and snippets.

View ReactiioN1337's full-sized avatar
🍺
Feierabend.

ReactiioN1337

🍺
Feierabend.
View GitHub Profile
@ReactiioN1337
ReactiioN1337 / offsets.ini
Created June 29, 2023 18:10
Apex Legends Offset Dump
# v3.0.36.26
[Interfaces]
[Miscellaneous]
TimeDateStamp=0x6494d979
CheckSum=0x24ad450
GameVersion=v3.0.36.26
NUM_ENT_ENTRIES=0x10000
cl_entitylist=0x1e53c68
@ReactiioN1337
ReactiioN1337 / settings.json
Created January 27, 2020 18:04
Configuration file for Visual Studio Code
{
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.cppStandard": "c++17",
"editor.tabSize": 2,
"explorer.confirmDelete": false,
"files.eol": "\n",
"files.exclude": {
"**/node_modules/": true,
"**/.idea/": true
},
@ReactiioN1337
ReactiioN1337 / Dockerfile
Last active January 19, 2020 23:01
php7.4-fpm with gd and ziplib for docker
FROM php:7.4-fpm-alpine
RUN apk add --no-cache \
freetype \
libpng \
zip \
libzip \
libjpeg-turbo \
freetype-dev \
libpng-dev \
@ReactiioN1337
ReactiioN1337 / hide_noobs.js
Last active December 22, 2019 16:14
Hides posts on unknowncheats.me that are below a certain reputation threshold or ignored.
// ==UserScript==
// @name Hide Noobs, make UC readable again!
// @namespace UnKnoWnCheaTs
// @match *://www.unknowncheats.me/*
// @grant none
// @version 0.2
// @author ReactiioN, Robater
// @description Hides posts on unknowncheats.me that are below a certain reputation threshold or ignored.
// ==/UserScript==
@ReactiioN1337
ReactiioN1337 / gitlab_config.php
Created November 18, 2018 17:53
Simple push event integration for Discord for any repository hosted by GitLab
<?php
/************************************************************
* Copyright: ReactiioN, https://reactiion.net
* Licesne: MIT
************************************************************/
abstract class config
{
const bot_name = 'GitLab';
const bot_avatar = 'https://i.imgur.com/aMaUGGN.png';
#pragma once
#include <type_traits>
///-------------------------------------------------------------------------------------------------
/// <summary> A macro that defines Implementation enum flag operators. </summary>
///
/// <remarks> ReactiioN, 28.08.2018. </remarks>
///
/// <param name="Type"> The enum class type. </param>
///-------------------------------------------------------------------------------------------------
#!/bin/bash
# Author: ReactiioN
# Date: 05.21.2017
set -e
export repo_directory='/home/git/'
printf -- ">] Enter the name of the repository: "
read name
repo_name="$name"".git"
@ReactiioN1337
ReactiioN1337 / vmt_context.h
Created May 31, 2018 18:46
smart vmt-hooking library for C as single header
#ifndef __VMT_CONTEXT_H__
#define __VMT_CONTEXT_H__
#ifdef _MSC_VER
#include <Windows.h>
#endif
#include <stdint.h>
#include <stdbool.h>
#!/bin/bash
declare -a export arr=(
"AdamCaviness.theme-monokai-dark-soda"
"azaugg.vscode-python-docstring"
"bierner.emojisense"
"bungcip.better-toml"
"codezombiech.gitignore"
"DavidAnson.vscode-markdownlint"
"dbaeumer.vscode-eslint"
@ReactiioN1337
ReactiioN1337 / json.php
Created October 30, 2017 18:17
PHP wrapper for json_encode/json_decode for an easier usage in php
<?php
//----------------------------------------------------------------------
// <author> ReactiioN </author>
//
// <file> json.php </file>
//
// <reference>
// https://secure.php.net/manual/en/function.json-encode.php
// https://secure.php.net/manual/de/function.json-decode.php
// </reference>