Just a collection of random code files or scripts.
Testing out enumerating different character case combinations in Perl.
gaia:~$ perl case.pl abc
0 abc
1 abC
2 aBc
3 aBC
4 Abc
5 AbC
6 ABc
7 ABC
For my projects that are not in some kind of source control yet, I needed some
way to uniformly clean out files that were temporary or from the build. The
dryrun
version just prints out what the regular script would do without
actually doing it.
Takes the ANSI escape codes, specified in RGB, and print them as UYVY compatible values. The pixel values are converted froM RGB to YUV via BT.709 recommendation.
A script to update a specific domain hosted on DigitalOcean to act as dynamic DNS.
Prints environment variables.
I play Minecraft! I made this to create backups of my worlds. This uses 7-Zip for archival and compression. It'll create a directory on the current user's desktop and place the backup files there.
A friend of mine wanted a little utility that took in a text file that contained page ranges and consolidated the overlapping ranges. This was so that he could print the page ranges without printing pages multiple times. I made this little script to help him out and also practice some Ruby.
This is to find and remove duplicate files based on file size and MD5 hashes.
I love to collect source code repositories. This script just helps me out in
updating the checkouts/clones. repos.bat
and repos.sh
are just helper
scripts to launch repos.py
on their respective platforms. On Windows,
repos.bat
expects Git for Windows to be installed.
I love to collect source code repositories. This script just helps me out in updating the checkouts/clones.
Just a sieve of Eratosthenes implementation in Python.
Analyze a Visual Studio project and help determine if referenced file paths exist or not.