Skip to content

Instantly share code, notes, and snippets.

@pixeljammed
pixeljammed / gay.md
Created June 18, 2025 17:47
coloured text test

$\textsf{{\color[rgb]{0.0, 0.0, 1.0}L}{\color[rgb]{0.1, 0.0, 0.9}O}{\color[rgb]{0.2, 0.0, 0.8}L}{\color[rgb]{0.3, 0.0, 0.7}O}{\color[rgb]{0.4, 0.0, 0.6}L}{\color[rgb]{0.5, 0.0, 0.5}O}{\color[rgb]{0.6, 0.0, 0.4}L}{\color[rgb]{0.7, 0.0, 0.3}O}{\color[rgb]{0.8, 0.0, 0.2}L}{\color[rgb]{0.9, 0.0, 0.1}O}{\color[rgb]{1.0, 0.0, 0.0}L}}$

Using \color tag in LaTex syntax.

Nobody seems to be using or talking about this (probably bc it's ugly and useless but I might make a generator for funsies... ;P).

@pixeljammed
pixeljammed / FUCK_DS_STORE.md
Created June 14, 2025 01:04
GOODBYE, .DS_STORE, FOREVER!

Tutorial

  1. CD to your GitHub folder

cd (drag & drop your folder into terminal after typing cd)

  1. Run this

find . -name ".DS_Store" -type f -delete

  1. Quickly commit your repos*
@pixeljammed
pixeljammed / DisablingCleanMyMacHealthMonitor.txt
Created April 2, 2025 03:19 — forked from iandark/DisablingCleanMyMacHealthMonitor.txt
Disabling CleanMyMac X HealthMonitor process
Go to:
/Applications/CleanMyMacX.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LoginItems/CleanMyMac X HealthMonitor.app/Contents/MacOS/CleanMyMac X HealthMonitor
Then add to CleanMyMac X HealthMonitor '.old'
and force quit it again in activity monitor
@pixeljammed
pixeljammed / AdvancedToolbarWindow.swift
Created September 19, 2024 10:03 — forked from stephancasas/AdvancedToolbarWindow.swift
A SwiftUI-compatible window for macOS with advanced toolbar configurability.
//
// AdvancedToolbarWindow.swift
//
// Created by Stephan Casas on 3/17/23.
//
import SwiftUI;
import AppKit;
class AdvancedToolbarWindow<MainContent: View, ToolbarContent: View, TitleToolbarContent: View>: NSWindow, NSToolbarDelegate {
@pixeljammed
pixeljammed / SpeedRamp
Last active May 14, 2025 00:29
Dumb video script for YouTube that made me laugh.
(function() {
let increment = 0.01; // Adjust this value to change the increment
let lowerBound = 0.1; // Adjust this value to change the lower bound
let upperBound = 3; // Adjust this value to change the upper bound
let A = 0; // Adjust this value to change the minimum hold time in milliseconds
let B = 2; // Adjust this value to change the maximum hold time in milliseconds
let targetRate = 0.1; // Initialize targetRate with a default value
let holding = false;
let holdTimer;