├── .gitignore ├── .idea ├── .gitignore ├── ComfyUI-ImageGlitcher.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── __init__.py ├── doom └── DOOM_SETUP_GUIDE.txt ├── js ├── dino_game.js ├── doom_game.js ├── snake_game.js ├── space_invaders.js └── tetris_game.js └── nodes ├── __init__.py ├── checkpoint_names.py ├── color_stylizer.py ├── dino_game.py ├── doom_game.py ├── image_glitcher.py ├── local_llm.py ├── sdxl_resolution.py ├── snake_game.py ├── space_invaders_game.py └── tetris_game.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/ComfyUI-ImageGlitcher.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/.idea/ComfyUI-ImageGlitcher.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/__init__.py -------------------------------------------------------------------------------- /doom/DOOM_SETUP_GUIDE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/doom/DOOM_SETUP_GUIDE.txt -------------------------------------------------------------------------------- /js/dino_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/js/dino_game.js -------------------------------------------------------------------------------- /js/doom_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/js/doom_game.js -------------------------------------------------------------------------------- /js/snake_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/js/snake_game.js -------------------------------------------------------------------------------- /js/space_invaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/js/space_invaders.js -------------------------------------------------------------------------------- /js/tetris_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/js/tetris_game.js -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/__init__.py -------------------------------------------------------------------------------- /nodes/checkpoint_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/checkpoint_names.py -------------------------------------------------------------------------------- /nodes/color_stylizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/color_stylizer.py -------------------------------------------------------------------------------- /nodes/dino_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/dino_game.py -------------------------------------------------------------------------------- /nodes/doom_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/doom_game.py -------------------------------------------------------------------------------- /nodes/image_glitcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/image_glitcher.py -------------------------------------------------------------------------------- /nodes/local_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/local_llm.py -------------------------------------------------------------------------------- /nodes/sdxl_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/sdxl_resolution.py -------------------------------------------------------------------------------- /nodes/snake_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/snake_game.py -------------------------------------------------------------------------------- /nodes/space_invaders_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/space_invaders_game.py -------------------------------------------------------------------------------- /nodes/tetris_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrish-slingshot/CrasHUtils/HEAD/nodes/tetris_game.py --------------------------------------------------------------------------------