Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
font | 2020-08-23 | ||
bbm.tar.gz | 2020-11-15 | 44.7 kB | |
bbm_11-15-2020.tar.gz | 2020-11-15 | 44.7 kB | |
bbm 9-5-2020.tar.gz | 2020-09-05 | 42.6 kB | |
bbm 9-3-2020.tar.gz | 2020-09-03 | 41.5 kB | |
bbm 8-31-20.tar.gz | 2020-08-31 | 40.1 kB | |
bbm 8-28-2020.tar.gz | 2020-08-28 | 39.0 kB | |
bbm 8-23-2020.tar.gz | 2020-08-23 | 38.9 kB | |
bbm 8-15-2020.tar.gz | 2020-08-16 | 37.9 kB | |
bbm 8-9-2020.tar.gz | 2020-08-10 | 37.2 kB | |
bbm_8-3-2020.tar.gz | 2020-08-03 | 36.6 kB | |
bbm_7-26-2020.tar.gz | 2020-07-26 | 36.1 kB | |
bbm_7-4-2020.tar.gz | 2020-07-04 | 36.0 kB | |
bbm_6-7-2020.tar.gz | 2020-06-07 | 35.3 kB | |
bbm 6-2-2020.tar.gz | 2020-06-02 | 35.2 kB | |
bbm 5-14-2020.tar.gz | 2020-05-14 | 35.1 kB | |
bbm 5-1-2020.tar.gz | 2020-05-02 | 34.8 kB | |
bbm_4-29-20.tar.gz | 2020-04-29 | 33.7 kB | |
bbm.tar - 4-28-2020.gz | 2020-04-28 | 32.8 kB | |
bbm.tar - 4-17-2020.gz | 2020-04-20 | 31.6 kB | |
Totals: 20 Items | 713.8 kB | 0 |
My source code is split into different branches under these folders. bbm : the original ANSI C source from which all the others are based on. bbmpp : the C Plus Plus version which uses a class I wrote but basically works the same way as bbm bbm_allegro : Using the C allegro library to do things like drawing text that my main bbm branch cannot do rust : I experimented with the Rust Programming Language but never The tar.gz files in these folders are backups I made with the Unix tar command. I could have used zip but I wanted to have that Unix feeling. For example the following command: tar -cvzf ~/tmp/bbm.tar.gz *.c *.h makefile Makes a backup of all my c source and header files along with the makefile I used to compile them. Sometimes I'll include the date in the name of the file if I need to make a certain version of my code permanently available. Other times I may just upload the files without compressing them in an archive.