Mystic -- the Halloween version. Haunted!

Steve Thielemann 64ac785756 Initial work with snprintf. :D 4 anos atrás
hh fec31c343f ghost.ans added credit to Beanzilla 4 anos atrás
.gitignore f47cec4328 Trying to keep git status cleaned up. 4 anos atrás
.gitmodules d9fa0e92f7 Added googletest, zf_log README.md to fix. 4 anos atrás
CMakeLists.txt d7e0ca5ab0 Electric Fence - does not detect this. 4 anos atrás
README.md 8975335369 Updated readme. Clearer notes on branches. 4 anos atrás
TODO.md bb9a193fa7 Directions on setting this up. 4 anos atrás
ansi-color.c 391202b7c6 Example ANSI color file from 4 anos atrás
ansi-to-src.cpp 93429d4162 Merge of bugz-ansi. 4 anos atrás
bat.ans 93429d4162 Merge of bugz-ansi. 4 anos atrás
build_images.sh 93429d4162 Merge of bugz-ansi. 4 anos atrás
ghead.ans 93429d4162 Merge of bugz-ansi. 4 anos atrás
ghost.ans 756c36a132 Updated Beanzilla's ghost.ans 4 anos atrás
images.cpp 52d9982c9d Removed dependencies on source files not needed. 4 anos atrás
lastseen.cpp 5b83c281c0 Updated using C++ objects. Tests next to do. 4 anos atrás
lastseen.h 5b83c281c0 Updated using C++ objects. Tests next to do. 4 anos atrás
mySTIC 4c39f41d7d Shows the stack bug, with a core dump. 4 anos atrás
mystic.cpp 64ac785756 Initial work with snprintf. :D 4 anos atrás
panther.ans 93429d4162 Merge of bugz-ansi. 4 anos atrás
render.cpp 64ac785756 Initial work with snprintf. :D 4 anos atrás
render.h 3ac1940504 Updated: breaking up main. 4 anos atrás
rsync_list.txt b453b5da1f I'm including my update script. 4 anos atrás
show 930ebe20ff Ansi file to .c/.cpp. show ansi file in linux console 4 anos atrás
show_bat_issue.sh 93429d4162 Merge of bugz-ansi. 4 anos atrás
show_skull_issue.sh 93429d4162 Merge of bugz-ansi. 4 anos atrás
skull-blink.ans 93429d4162 Merge of bugz-ansi. 4 anos atrás
skull.ans 93429d4162 Merge of bugz-ansi. 4 anos atrás
terminal.cpp 3ac1940504 Updated: breaking up main. 4 anos atrás
terminal.h 3ac1940504 Updated: breaking up main. 4 anos atrás
test_lastseen.cpp 5ebec0c585 Ok, LGTM. 4 anos atrás
try-re.c 3cff6c70e5 Updated re for clean output. Added zf_log. 4 anos atrás
update_example b453b5da1f I'm including my update script. 4 anos atrás
utils.cpp 93429d4162 Merge of bugz-ansi. 4 anos atrás
utils.h 93429d4162 Merge of bugz-ansi. 4 anos atrás
wolf.ans 93429d4162 Merge of bugz-ansi. 4 anos atrás

README.md

# To Use:

# git submodule update --init

Do this instead. Avoid submodule hell.

git clone https://github.com/wonder-mice/zf_log.git
git clone https://github.com/google/googletest.git

sudo apt install cmake

cmake .
make

Also:

  • codium clang-format extension
  • codium c/c++ advanced lint

    apt install clang-format clang cppcheck

Build a "release" build

cmake -DCMAKE_BUILD_TYPE=Release .
make

To switch back to "debug" build

cmake -DCMAKE_BUILD_TYPE=Debug .
make

Branches

git checkout -b new-branch

or, a longer way to type that:

git branch new-branch
git checkout new-branch

git commit 

And your changes go into the new-branch

Pushing your new branch

git push -u origin new-branch

If you recall using git push -u when you first setup the git repo. Well, it's that all over again, but with a new branch.

Returning to reality

git checkout master

Pulling files from one branch into another

git checkout master
git checkout bugz-ansi -- ghost.ans ghead.ans bat.ans utils.h utils.cpp

This would pull files from bugz-ansi branch into the master branch.