Skip to content

Instantly share code, notes, and snippets.

View tonzsm's full-sized avatar

T0NZ tonzsm

  • Thailand
View GitHub Profile

Since the original creator aamiaa does not want new features or improvements added to their code, I created this gist with some quality-of-life improvements instead.

My version still fully respects the Discord API and does not bypass or abuse it.


Patch Notes

Patch 0.0

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active April 9, 2026 03:41
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

using System;
using System.IO;
namespace MpressExtractor
{
internal class @_
{
private unsafe static int lzmat(byte[] pOs, byte[] pIs, int cI)
{
int num2;
@tingplenting
tingplenting / ffmpeg_tuts.md
Last active September 2, 2025 15:37
ffmpeg cli for youtube

Extract audio from a YouTube video file

ffmpeg -i INPUT.mp4 -ab 256k OUTPUT.mp3

Cut 3s length

ffmpeg -y -ss 00:00:03 -i INPUT.mp4 -codec copy OUTPUT.mp4
@Oranzh
Oranzh / AES-256 encryption and decryption in PHP and C#.md
Created March 24, 2018 04:19
AES-256 encryption and decryption in PHP and C#

AES-256 encryption and decryption in PHP and C#

Update: There is a more secure version available. Details

PHP

<?php

$plaintext = 'My secret message 1234';