Skip to content

Instantly share code, notes, and snippets.

@andrewdieppa
andrewdieppa / .gitattributes
Created January 14, 2024 23:04
.gitattributes file for handling Windows and Unix CRLF and LF confusion.
* text=auto eol=lf
*.{cmd,[cC][mM][dD]} text eol=crlf
*.{bat,[bB][aA][tT]} text eol=crlf
*.{ps1,[pP][sS]1} text eol=crlf
@andrewdieppa
andrewdieppa / GitHub Pages Jekyll Dockerfile
Created January 14, 2024 18:17 — forked from BillRaymond/GitHub Pages Jekyll Dockerfile
GitHub Pages and Jekyll Dockerfile
# "#################################################"
# Dockerfile to build a GitHub Pages Jekyll site
# - Ubuntu 22.04
# - Ruby 3.1.2
# - Jekyll 3.9.3
# - GitHub Pages 288
#
# This code is from the following Gist:
# https://gist.github.com/BillRaymond/db761d6b53dc4a237b095819d33c7332#file-post-run-txt
#
@andrewdieppa
andrewdieppa / assemblerun.ps1
Created January 1, 2024 00:20
Helper PowerShell script for assembling .asm files with DASM and running them in the Stella emulator.
##############################################################
# This PowerShell script simplifies assembling 6502 code for
# the Atari 2600 with DASM and running the binary file on
# the Stella emulator.
#
# In order for this to work you need to have DASM and Stella
# installed and added to the system PATH.
#
# In order for the script to work, it must be run in the same
# folder as your .asm file.