Skip to content

Instantly share code, notes, and snippets.

View Le0X8's full-sized avatar
⚙️
sudo pacman -Syu

Leonard Lesinski Le0X8

⚙️
sudo pacman -Syu
  • North Rhine-Westphalia, Germany
  • 08:27 (UTC +02:00)
View GitHub Profile
@vikpe
vikpe / zed_rust_feature_flags.md
Last active March 12, 2026 20:22
Zed: Rust analyzer - Enable all or specific crate feature flags

Zed: Rust analyzer – Enable all or specific crate feature flags

Instructions for enabling specific or all crate feature flags in the Zed editor using rust-analyzer.

1. Create a Settings File

Create a settings file in your project directory:

.zed/settings.json
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 7, 2026 22:03
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

@irazasyed
irazasyed / outbound-email-with-cloudflare.md
Last active May 7, 2026 21:17
Using Gmail SMTP with Cloudflare Email Routing: A Step-by-Step Guide

Using Gmail SMTP with Cloudflare Email Routing: Step-by-Step Guide

Learn how to send emails through Gmail SMTP with Cloudflare Email Routing in this comprehensive guide.

Step 1: Enable 2-Factor Authentication

To proceed with this method, ensure that you have enabled two-factor authentication for your Google account. If you haven't done so already, you can follow the link to set it up → Enable 2FA in your Google account.

Step 2: Create an App Password for Mail

@SciresM
SciresM / ACNL.cs
Created May 7, 2017 02:19
Encryption/Decryption of Animal Crossing: New Leaf's Bell/Money values.
private static uint DecryptACNLMoney(ulong money)
{
// Unpack 64-bit value into (u32, u16, u8, u8) values.
var enc = (uint)(money & 0xFFFFFFFF);
var adjust = (ushort)((money >> 32) & 0xFFFF);
var shift_val = (byte)((money >> 48) & 0xFF);
var chk = (byte)((money >> 56) & 0xFF);
// Validate 8-bit checksum
if ((((enc >> 0) + (enc >> 8) + (enc >> 16) + (enc >> 24) + 0xBA) & 0xFF) != chk) return 0;
@Wunkolo
Wunkolo / ACNL.md
Last active February 2, 2025 07:43
Animal Crossing New Leaf research

Large player data struct, stores all patterns, letters, mayor info, mayor picture in what seems to be a JFIF stream with EXIF, and other data yet to be mapped out.

Generally in the 0x1FB8190 area of a FCRAM dump. Give or take a few offsets of 0x100.

Between me and troggs the offset seems to be 0x300

64EDD198 F8000200 Possible magic ints to look for to detect player info. Starts right before patterns. Common through-out. Patterns

Offset |Type |info