This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; festive.s - Christmas tree in memory dump | |
| ; Assemble: as -o festive.o festive.s | |
| ; Link: ld -o festive festive.o -l System -syslibroot `xcrun -sdk macosx --show-sdk-path` -e _main | |
| ; | |
| ; Created by Kush S. | |
| ; | |
| ; Read more: https://skushagra.com/posts/2025-12-25-aarch64-christmas/ | |
| ; | |
| ; === BASIC WORKFLOW (tree in memory dump) === | |
| ; lldb festive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| pdf_merger - Recursively merge PDFs in a directory with cover pages and dividers. | |
| ================================================================================ | |
| REQUIREMENTS | |
| ================================================================================ | |
| Python packages: | |
| pip install pypdf reportlab pillow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Lightsaber Hit Detection - Data Visualization & Analysis | |
| Run: python lightsaber_viz.py | |
| Dependencies: pip install pandas numpy matplotlib scipy | |
| """ | |
| import pandas as pd | |
| import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " ~/.vimrc or ~/.config/nvim/init.vim | |
| " ----------------------------- | |
| " General Editing Preferences | |
| " ----------------------------- | |
| " Use spaces instead of tabs | |
| set expandtab | |
| " Each tab = 2 spaces |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %%%%%%%%%%%%%%%%%%%%%%%% | |
| % DO NOT CHANGE HERE | |
| % Replace cute-kitten.jpg with image of choice (ignore compilation errors) | |
| %%%%%%%%%%%%%%%%%%%%%%%% | |
| \documentclass[letter]{amsart} | |
| \renewcommand{\thesubsection}{\Alph{subsection}} | |
| \def\doubleunderline#1{\underline{\underline{#1}}} | |
| \newcommand\tab[1][1cm]{\hspace*{#1}} | |
| \usepackage{titlesec} | |
| \usepackage{textcomp} |