Skip to content

Instantly share code, notes, and snippets.

View IntegralPilot's full-sized avatar

Michael Reeves IntegralPilot

View GitHub Profile
@IntegralPilot
IntegralPilot / t6031-j514.dts
Created December 29, 2025 04:55
t6031 "M3 Max" minimal devicetrees
// SPDX-License-Identifier: GPL-2.0+ OR MIT
/*
* Apple MacBook Pro (14-inch, M3 Max, 2023)
*
* target-type: J514
*
* Copyright The Asahi Linux Contributors
*/
/dts-v1/;
@IntegralPilot
IntegralPilot / guide.md
Last active December 30, 2025 15:00
Booting macOS Kernel 14.7.7 on t6030 via m1n1

Booting macOS Kernel 14.7.7 on t6030 via m1n1

Prerequisites & Warnings

Important: Apple has stopped signing 14.7.7 (23H723), which is the primary build used for this testing.

The next best build to use is 14.8.3 (23J220), as it has a KDK with a matching build number. However, you must use the same macOS version and KDK version.

Warning: If you use 14.8.3, the binary patches (offsets) listed in Section 3, Step 8 and the symbol offsets in Section 4 will likely require modification. I suspect the core kernel functions haven't changed much, but this has not been tested.

Requirements:

@IntegralPilot
IntegralPilot / cooking.css
Created May 15, 2025 01:20
Fancy CSS Landing Page Animation
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Poppins', sans-serif;
overflow: hidden; /* Prevents scrollbars from appearing during animations */
background-color: #1a1a2e; /* Dark fallback */
@IntegralPilot
IntegralPilot / hacked-effect.js
Created May 14, 2025 12:14
Hacked Text Effect - JavaScript
// Makes a H1 element have a "hacked" effect on hover.
const letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
let interval = null;
document.querySelector("h1").onmouseover = event => {
let iteration = 0;
const targetValue = event.target.dataset.value;
clearInterval(interval);