Glife.zip
If you are looking for code to or read this zip file programmatically:
: A 25x25 (or larger) matrix using 'x' or 1 for alive cells and ' ' (space) or 0 for dead cells [13]. Coordinate List : A text file listing only the coordinates of initial alive cells. Sample Pattern (Glider) glife.zip
: You can use the command zip wrapped.zip input.txt to compress your pattern file. Creating a zip file containing Text Files - Stack Overflow If you are looking for code to or
(where 'x' represents a living cell and '.' represents a dead cell) Technical Context for glife.zip Creating a zip file containing Text Files -
: The ZipArchive class allows you to create a zip from a string of text.
void zip() { try { FileOutputStream fos = new FileOutputStream("yourZipFile.zip"); ZipOutputStream zos = new ZipOutputStream(fos); Stack Overflow Sending zip file containing plain txt file via email