Skip to content

Instantly share code, notes, and snippets.

View AlexDev404's full-sized avatar
👾
Ruby2D!

Immanuel Daviel A. Garcia AlexDev404

👾
Ruby2D!
View GitHub Profile
@AlexDev404
AlexDev404 / bootloader.asm
Created May 26, 2025 05:49
Z80/eZ80 Bootloader - Simple boot loader to load code from serial into memory starting at 08000h and executing after loading.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ;
; Simple boot loader to load code from serial into memory starting ;
; at 08000h. Starting code execution after loading. ;
; ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
org 00000h
setup: ld sp, 0ffffh ; set stack pointer
@AlexDev404
AlexDev404 / readme.md
Created May 26, 2025 03:30 — forked from 1999AZZAR/readme.md
This Bash script creates a virtual display on an Android device and streams it using scrcpy. It's designed to work with Android Debug Bridge (ADB) and scrcpy, providing a seamless way to create and interact with a secondary display on your Android device.

Virtual Display for Android Devices

Overview

This Bash script creates a virtual display on an Android device and streams it using scrcpy. It's designed to work with Android Debug Bridge (ADB) and scrcpy, providing a seamless way to create and interact with a secondary display on your Android device.

Prerequisites

  • Android Debug Bridge (ADB) installed and accessible from the command line
  • scrcpy installed and accessible from the command line
@AlexDev404
AlexDev404 / caffeine.ps1
Last active May 22, 2025 06:24
Caffeine - Prevent your Windows computer from falling asleep!
Add-Type @"
using System;
using System.Runtime.InteropServices;
public static class Power
{
[DllImport("kernel32.dll", SetLastError = true)]
public static extern uint SetThreadExecutionState(uint esFlags);
}
"@
<?
if(file_exists('/www/global/lockdown')) {
if($_COOKIE['4chan_auser'] && $_COOKIE['4chan_apass'] && ($_POST['mode']=='usrdel'||$_GET['mode']=='latest')) {
// ok
}
else {
die('Posting temporarily disabled. Come back later!<br/>&mdash;Team 4chan (uptime? what\'s that?)');
}
}
include_once "./yotsuba_config.php";

AK47 Commands

The default command prefix is +.

<> = required
[] = optional
| = or
... = accepts spaces
italic = replace with your own value

Account

@AlexDev404
AlexDev404 / hulk.py
Created January 7, 2025 03:27
HULK Python 3 Script: Denial-of-Service (DoS) attack
# ----------------------------------------------------------------------------------------------
# HULK - HTTP Unbearable Load King
#
# This tool is a DOS tool that is meant to put heavy load on HTTP servers in order to bring them
# to their knees by exhausting the resource pool. It is meant for research purposes only,
# and any malicious usage of this tool is prohibited.
#
# Author: Barry Shteiman, version 1.0
# Converted to Python 3
# ----------------------------------------------------------------------------------------------
@AlexDev404
AlexDev404 / btc_keygen.py
Created November 11, 2024 03:19 — forked from antlauzon/btc_keygen.py
offline 'paper wallet' bitcoin address generator
import base58
import hashlib
from fastecdsa import curve
from fastecdsa import keys
updhsh = lambda h, s: [h.update(s), h][1]
b58chk = lambda s: base58.b58encode(bytes(hexbyt(s)))
concat = lambda s1, s2: "{}{}".format(s1, s2)
hexbyt = lambda s: bytes(bytearray.fromhex(s))
@AlexDev404
AlexDev404 / bash-colors.md
Created October 26, 2024 04:01 — forked from iamnewton/bash-colors.md
The entire table of ANSI color codes.

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple
@AlexDev404
AlexDev404 / bash-colors.md
Created October 26, 2024 04:01 — forked from JBlond/bash-colors.md
The entire table of ANSI color codes.

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple
@AlexDev404
AlexDev404 / TrueColour.md
Created October 26, 2024 04:00 — forked from XVilka/TrueColour.md
True Colour (16 million colours) support in various terminal applications and terminals

THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.

PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!