Skip to content

Instantly share code, notes, and snippets.

View Pixailz's full-sized avatar
🏴‍☠️
bash, Bash, BASH ...

Pixailz Pixailz

🏴‍☠️
bash, Bash, BASH ...
  • 42 Angouleme
View GitHub Profile
@Pixailz
Pixailz / TroubleShootingMacroETW.md
Last active March 25, 2025 14:01
Trouble Shooting for the ETW Macro

TroubleShooting

Before considering a bug report (In issue), please make sure you have checked the following:

  • The Windows bar is at the bottom and didn't disappear
  • is Eat The World in English
  • Some application notifications overlap with the ui, thus making the bot closing Eat The World

    be sure that this is not the case

  • Disable Discord overlay
@Pixailz
Pixailz / HowToMacroETW.md
Last active March 19, 2025 12:28
HowTo for the ETW Macro

HowTo

HowTo as of version 1.0.2

  1. Download the latest release from the release channel
  2. Extract the whole zip to a location of your choice (don't just run the exe from the zip)

    image image

  3. Run the exe
  4. Set your settings, you can:
#######
# Owner
#######
## Laptop
## eb3e768c63ea2f9761e2ca2c1355a01e7ec7835cb3028fb1e9bf8c577202a2c4
## PoneySW
## 59b772b8083ebf1600d7810443e9f34fa3267daa91f3d24c92e5691278668d60
## Pix
## 11fdc7895f13b4faf49bdaa17746c52320934c795cdb6aac5b50a27ec04a030c
@Pixailz
Pixailz / hwid_etw
Last active July 19, 2025 06:47
Updated licenses
##################################################################
#=# Owner
## (368533579161927680) PoneySW
027d616d506d60d9b111587a32f99974e66223c7c56c7c11ba37404430368096
## (368533579161927680) PoneySW
e95280453db41de333920680d24eead29d1858199387e3e412e7f9eadcc6a21f
## (771506654012637214) Pix
import sys
import json
import gzip
# in requirements.txt
import pyperclip
from base64 import b64decode, b64encode
from pprint import pprint
@Pixailz
Pixailz / attach_and_exec.sh
Created January 31, 2024 00:34
attach to the current pid and remove a readonly var without root
#!/bin/bash
gdb -ex 'call (int)unbind_variable("<VAR_NAME>")' --pid=$$ --batch
#gdb -ex 'shell' --pid=$$ --batch
@Pixailz
Pixailz / clean_file.sh
Created December 6, 2023 12:53
clean for release
#!/bin/bash -ue
# Author: Pixailz
PATTERN=(
"\.git*"
"\.vscode"
"__pycache__"
"*\.o"
"*\.a"
)
@Pixailz
Pixailz / get_includes
Created November 1, 2023 13:37
Get gcc / clang, in C or C++, information
#!/usr/bin/env bash
declare -a includes
function get_includes()
{
local compiler="${1:-gcc}"
local language="${2:-c}"
local data beg_inc end_inc
@Pixailz
Pixailz / clear_screen_test.py
Created October 27, 2023 10:53
testing of clearing a screen with ANSI Esc Seq
#!/usr/bin/env python3
import time
[ print(f"{i + 1} test") for i in range (0, 100) ]
def clear_screen():
print("\x1b[2J\x1b[H", end="")
print("should clear the screen in 3sec")
@Pixailz
Pixailz / OS-RELEASED.md
Last active April 7, 2024 09:36
Some os-release

os-release

UBUNTU

PRETTY_NAME="Ubuntu 23.04"
NAME="Ubuntu"
VERSION_ID="23.04"
VERSION="23.04 (Lunar Lobster)"
VERSION_CODENAME=lunar