Commit Graph

4 Commits

Author SHA1 Message Date
IlDucci
2b2eeb4d43 Image optimization pass
Ran various image optimizing tools to reduce their filesize. Should help with site loading times at some areas or with low-speed connections.

Programs used:
 - FileOptimizer for Windows (an app aggregator) for GIFs and JPGs. Results are minimal.
 - OptiPNG and AdvPNG at level 4 for PNG files. Results vary between just a few bytes of difference and a reduction of 50%, depending on the image source.
2021-11-08 22:08:10 +01:00
Winston Weinert
8a8f9b31d2 Delete trailing whitespace
In #526 I accidentally lost some of my edits trying to selectively
stage lines with typo fixes, while deleting hunks that were only
whitespace changes. In hopes nobody else falls into this trap, I ran
the following command to find all the files to edit, and apply emacs's
delete-trailing-whitespace function to each file.

```sh
find * -type f -print0 | xargs -0 -P$(nproc) -n1 -I{} sh -c 'if file -b "{}" | grep -qFi text; then emacs -batch "{}" -f delete-trailing-whitespace -f save-buffer; fi'
```

Note: `git add -u` will add only known paths to the stage (index),
even if `tidy.sh` exists in the git work directory.
2020-07-20 10:35:30 -05:00
markwkidd
1957208e9b add tex/lyx original versions of archival PDFs (#227)
* restore underscore, update OpenGL dev links

* add tex/lyx versions of archival documentation

* restore underscore, update OpenGL dev links (#223)

* organize development docs TOC / add git file format directives (#222)

* organize developer TOC

* add git file format metadata/directives

* add "skeletor" to core dev doc; refactor text

* add Vectrexia development guide to core dev docs

* sort compilation guide TOC into cores and frontend
2019-02-19 11:39:49 -06:00
markwkidd
b7e9416c12 migrate archival copies of early PDF documentation (#218)
* create archival copies of early PDF documentation

* add technical brochure
2019-02-17 13:13:53 -06:00