Mystic -- the Halloween version. Haunted!

root 58b15cbe59 Additional notes on broken user records. hace 4 años
ansi 7cd51522e4 ansi-to-src takes wildcards. hace 4 años
hh 73f1efc423 I See U hace 4 años
notes 967cb941e2 Storing ANSI in notes directory. hace 4 años
.gitignore f47cec4328 Trying to keep git status cleaned up. hace 4 años
.gitmodules d9fa0e92f7 Added googletest, zf_log README.md to fix. hace 4 años
CMakeLists.txt 481d4700ca How about log WARN? hace 4 años
README.md bae1290bc1 Update git merge notes. hace 4 años
TODO.md bb9a193fa7 Directions on setting this up. hace 4 años
ansi-color.c 391202b7c6 Example ANSI color file from hace 4 años
ansi-to-src.cpp 7cd51522e4 ansi-to-src takes wildcards. hace 4 años
build_images.sh e445a6b909 Updated: Add extra debug in debug build. Fix dbuild. hace 4 años
charman.cpp d5bf27ace9 Fixed issue #4 with tangler. hace 4 años
charman.h 5f226410a7 Ok, there's lots of changes here. hace 4 años
git_pull.sh ac33debc06 Updated so it git clones what is needed. hace 4 años
hharry.cpp 58b15cbe59 Additional notes on broken user records. hace 4 años
images.cpp 7cd51522e4 ansi-to-src takes wildcards. hace 4 años
input-int.cpp b302c0b7ef No more using namespace std; hace 4 años
lastseen.cpp 3117f087c2 Updated: use vector constructor init. hace 4 años
lastseen.h 707cc53ccb Updated LastSeen to use vector. hace 4 años
logs_utils.cpp 98c59dcca7 Fixed issue with charman, inserting at end of string. hace 4 años
logs_utils.h 98c59dcca7 Fixed issue with charman, inserting at end of string. hace 4 años
mystic.py a9e00446bb Sample "mystic" to test with. hace 4 años
render.cpp 84749657e7 This fixes horrible ^CS ^CR bug, sometimes fail. hace 4 años
render.h c93c05f06d Render is now a class. Need tests. hace 4 años
rsync_list.txt b453b5da1f I'm including my update script. hace 4 años
show 930ebe20ff Ansi file to .c/.cpp. show ansi file in linux console hace 4 años
show_bat_issue.sh 7cd51522e4 ansi-to-src takes wildcards. hace 4 años
show_icu_issue.sh 7cd51522e4 ansi-to-src takes wildcards. hace 4 años
show_owl_issue.sh 7cd51522e4 ansi-to-src takes wildcards. hace 4 años
show_skull_issue.sh 7cd51522e4 ansi-to-src takes wildcards. hace 4 años
terminal.cpp d623dd872e Show which one is hitting the empty history. hace 4 años
terminal.h cb35264b57 Updated terminal class / copy operator= hace 4 años
test-lastseen.cpp 8754ee287b Overhauled. Use TRIGGER for the trigger. hace 4 años
test-mangle.cpp c2a7c18ba9 Added USER and NICK into harry_timeout_event hace 4 años
test-render.cpp 8754ee287b Overhauled. Use TRIGGER for the trigger. hace 4 años
test-terminal.cpp 84749657e7 This fixes horrible ^CS ^CR bug, sometimes fail. hace 4 años
test-utils.cpp b0fdb32f76 Cleaned up warnings. Fixed utils test. hace 4 años
try-re.c fdb6107df3 Fixed clang warnings. hace 4 años
update_example b453b5da1f I'm including my update script. hace 4 años
utils.cpp b0fdb32f76 Cleaned up warnings. Fixed utils test. hace 4 años
utils.h b0fdb32f76 Cleaned up warnings. Fixed utils test. hace 4 años
wordplay.cpp 6d4cadf597 Added user/nick phrases in ANSI_CLS. hace 4 años
wordplay.h 28491069cc Working mangle, wrangle! hace 4 años

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.

Merging back into master

git checkout master
git merge cplusplus