Skip to content

Instantly share code, notes, and snippets.

View MCMi460's full-sized avatar

Deltaion Lee MCMi460

View GitHub Profile

Requirements

You will need a 3DS running Luma CFW, as well as a computer that is capable of creating an access point or running a proxy.

SSL Module Patch

It is necessary to disable Root CA Verification in order to capture all 3DS traffic. We recommend doing this with SciresM's 3DS-SSL-Patch.

For ease of use, you can download this premade code.ips patch and place it at /luma/titles/0004013000002F02/code.ips on your 3DS' SD card. Make sure that you've enabled Luma's game patching feature by holding down the select button while powering on your 3DS.

@MCMi460
MCMi460 / OptiFine in MultiMC.md
Last active January 23, 2024 16:36 — forked from jspanos71/OptiFine in MultiMC
How to install OptiFine in MultiMC (works with 1.20.1)

The OptiFine installer requires that your target version of Minecraft be installed in the default launcher and has been opened at least once. Do this first.

  1. Download OptiFine for your version
  2. Double-click and run using Java (you may need to install a version of Java)
  3. Select "Extract OptiFine"
    • This will put the extracted file of OptiFine in your Downloads folder.
    • Newer versions of Minecraft will require some finagling. Click to reveal these steps.
@MCMi460
MCMi460 / pythag.py
Created November 2, 2023 00:57 — forked from Delation/pythag.py
Pythagorean Tripes
# Now supports TI-84 Plus CE Python Calculators
import math
def brute_search(recursion_depth:int = 200):
nums = list(range(recursion_depth))
i = 1
while i < len(nums):
a = nums[i]
for b in range(a, recursion_depth):
c = math.sqrt(a**2 + b**2) # Pythagorean theorem