Skip to content

Instantly share code, notes, and snippets.

@p4yl0ad
p4yl0ad / EnableDiscordDevExperiments.md
Created June 12, 2023 17:34 — forked from JohannesMP/EnableDiscordDevExperiments.md
Enabling Discord Dev Experiments on Discord for Windows (2022-02)

Enable Dev Experiments in Discord for Windows

image

This guide shows how to enable dev mode for the Discord desktop application running on Windows (as of February 2022).

This can be used to view beta experiments to try features currently in development that are included but hidden by default in Discord release builds.


@p4yl0ad
p4yl0ad / mbrpart.c
Created December 25, 2022 20:00 — forked from namazso/mbrpart.c
quick raw mbr partition editor
#define _CRT_SECURE_NO_WARNINGS
#define _FILE_OFFSET_BITS 64
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <stdbool.h>
#include <stdio.h>
enum { kSectorSize = 512 };