Skip to content

Instantly share code, notes, and snippets.

View CodeLongAndProsper90's full-sized avatar

Scott Little CodeLongAndProsper90

View GitHub Profile
Copyright <YEAR> <COPYRIGHT HOLDER>
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
!/bin/bash
if ! test -d ~/Screenshots
then
mkdir ~/Screenshots
fi
if ! command -v scrot &> /dev/null
then
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
@CodeLongAndProsper90
CodeLongAndProsper90 / installer.sh
Last active June 13, 2020 22:51
ASCIIMations installer 1.0.0
wget https://raw.githubusercontent.com/CodeLongAndProsper90/asciimations/master/ascii-mini.py -O asciimations.py
touch main.py
echo -e "import asciimations\n$(cat main.py)" > main.py
mkdir frames
touch frames/{1, config}.txt
echo 'all:1' > frames/config.txt
import os
import os.path
import shutil
files = []
while True:
print("[1]: Add files to staging area.")
print("[2]: Generate ISO.")
print("[3]: Abort.")
choice = input("> ")
if choice == '1':
@CodeLongAndProsper90
CodeLongAndProsper90 / make_iso.py
Created April 10, 2020 16:21
Make an ISO the easy way
import os
import os.path
import shutil
files = []
while True:
print("[1]: Add files to staging area.")
print("[2]: Generate ISO.")
print("[3]: Abort.")
choice = input("> ")
if choice == '1':