From 11438d1a2fd3de83a7d78e0940c927fa0089f388 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 23 May 2020 03:59:42 +0000 Subject: [PATCH] Reorganize files --- README.md | 6 ++---- {plates/cpp-cmake => cpp/cmake}/CMakeLists.txt | 0 {plates/cpp-cmake => cpp/cmake}/apps/CMakeLists.txt | 0 {plates/cpp-cmake => cpp/cmake}/apps/say-hello.cpp | 0 {plates/cpp-cmake => cpp/cmake}/include/lib-klips.hpp | 0 {plates/cpp-cmake => cpp/cmake}/src/CMakeLists.txt | 0 {plates/cpp-cmake => cpp/cmake}/src/lib-klips.cpp | 0 {plates => cpp/datastructs}/circledoublelist/Makefile | 0 .../datastructs}/circledoublelist/circledoublelist.cpp | 0 .../datastructs}/circledoublelist/circledoublelist.h | 0 {plates => cpp/datastructs}/circledoublelist/driver.cpp | 0 {plates => cpp/datastructs}/circlesinglelist/Makefile | 0 .../datastructs}/circlesinglelist/circlesinglelist.cpp | 0 .../datastructs}/circlesinglelist/circlesinglelist.h | 0 {plates => cpp/datastructs}/circlesinglelist/driver.cpp | 0 {plates => cpp/datastructs}/doublelist/Makefile | 0 {plates => cpp/datastructs}/doublelist/doublelist.cpp | 0 {plates => cpp/datastructs}/doublelist/doublelist.h | 0 {plates => cpp/datastructs}/doublelist/driver.cpp | 0 {plates => cpp/datastructs}/singlelist/Makefile | 0 {plates => cpp/datastructs}/singlelist/driver.cpp | 0 {plates => cpp/datastructs}/singlelist/singlelist.cpp | 0 {plates => cpp/datastructs}/singlelist/singlelist.h | 0 {plates/cpp-opengl => cpp/opengl}/.vscode/launch.json | 0 {plates/cpp-opengl => cpp/opengl}/.vscode/tasks.json | 0 {plates/cpp-opengl => cpp/opengl}/test-gl.cpp | 0 {plates/cpp-sdl-cmake => cpp/sdl-cmake}/.vscode/launch.json | 0 {plates/cpp-sdl-cmake => cpp/sdl-cmake}/CMakeLists.txt | 0 {plates/cpp-sdl-cmake => cpp/sdl-cmake}/apps/inherited.cpp | 0 {plates/cpp-sdl-cmake => cpp/sdl-cmake}/src/lib-inherit.cpp | 0 {plates/cpp-sdl-cmake => cpp/sdl-cmake}/src/lib-inherit.h | 0 {plates/cpp-sdl => cpp/sdl}/.vscode/launch.json | 0 {plates/cpp-sdl => cpp/sdl}/.vscode/tasks.json | 0 {plates/cpp-sdl => cpp/sdl}/inherited.cpp | 0 34 files changed, 2 insertions(+), 4 deletions(-) rename {plates/cpp-cmake => cpp/cmake}/CMakeLists.txt (100%) rename {plates/cpp-cmake => cpp/cmake}/apps/CMakeLists.txt (100%) rename {plates/cpp-cmake => cpp/cmake}/apps/say-hello.cpp (100%) rename {plates/cpp-cmake => cpp/cmake}/include/lib-klips.hpp (100%) rename {plates/cpp-cmake => cpp/cmake}/src/CMakeLists.txt (100%) rename {plates/cpp-cmake => cpp/cmake}/src/lib-klips.cpp (100%) rename {plates => cpp/datastructs}/circledoublelist/Makefile (100%) rename {plates => cpp/datastructs}/circledoublelist/circledoublelist.cpp (100%) rename {plates => cpp/datastructs}/circledoublelist/circledoublelist.h (100%) rename {plates => cpp/datastructs}/circledoublelist/driver.cpp (100%) rename {plates => cpp/datastructs}/circlesinglelist/Makefile (100%) rename {plates => cpp/datastructs}/circlesinglelist/circlesinglelist.cpp (100%) rename {plates => cpp/datastructs}/circlesinglelist/circlesinglelist.h (100%) rename {plates => cpp/datastructs}/circlesinglelist/driver.cpp (100%) rename {plates => cpp/datastructs}/doublelist/Makefile (100%) rename {plates => cpp/datastructs}/doublelist/doublelist.cpp (100%) rename {plates => cpp/datastructs}/doublelist/doublelist.h (100%) rename {plates => cpp/datastructs}/doublelist/driver.cpp (100%) rename {plates => cpp/datastructs}/singlelist/Makefile (100%) rename {plates => cpp/datastructs}/singlelist/driver.cpp (100%) rename {plates => cpp/datastructs}/singlelist/singlelist.cpp (100%) rename {plates => cpp/datastructs}/singlelist/singlelist.h (100%) rename {plates/cpp-opengl => cpp/opengl}/.vscode/launch.json (100%) rename {plates/cpp-opengl => cpp/opengl}/.vscode/tasks.json (100%) rename {plates/cpp-opengl => cpp/opengl}/test-gl.cpp (100%) rename {plates/cpp-sdl-cmake => cpp/sdl-cmake}/.vscode/launch.json (100%) rename {plates/cpp-sdl-cmake => cpp/sdl-cmake}/CMakeLists.txt (100%) rename {plates/cpp-sdl-cmake => cpp/sdl-cmake}/apps/inherited.cpp (100%) rename {plates/cpp-sdl-cmake => cpp/sdl-cmake}/src/lib-inherit.cpp (100%) rename {plates/cpp-sdl-cmake => cpp/sdl-cmake}/src/lib-inherit.h (100%) rename {plates/cpp-sdl => cpp/sdl}/.vscode/launch.json (100%) rename {plates/cpp-sdl => cpp/sdl}/.vscode/tasks.json (100%) rename {plates/cpp-sdl => cpp/sdl}/inherited.cpp (100%) diff --git a/README.md b/README.md index 5270598..c052c17 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # klips -This repository is a collection of code snippets that I reuse, clone, or frequently refer to. This can be cloned as a whole or just viewed / copied as needed, used to lay out templates / automate tasks for larger projects. +This repository is a collection of code snippets and configurations. These can be cloned or just viewed and copied as needed to lay out templates or automate tasks for larger projects. -The snippets are organized within topic-labeled folders. 'plates' is short-hand for templates, and houses all folders / projects that can be copied and edited / adjusted locally as templates for larger projects. - -Other directories could contain configuration files, bash exports, scripts, etc. +The snippets are organized within topic-labeled folders. diff --git a/plates/cpp-cmake/CMakeLists.txt b/cpp/cmake/CMakeLists.txt similarity index 100% rename from plates/cpp-cmake/CMakeLists.txt rename to cpp/cmake/CMakeLists.txt diff --git a/plates/cpp-cmake/apps/CMakeLists.txt b/cpp/cmake/apps/CMakeLists.txt similarity index 100% rename from plates/cpp-cmake/apps/CMakeLists.txt rename to cpp/cmake/apps/CMakeLists.txt diff --git a/plates/cpp-cmake/apps/say-hello.cpp b/cpp/cmake/apps/say-hello.cpp similarity index 100% rename from plates/cpp-cmake/apps/say-hello.cpp rename to cpp/cmake/apps/say-hello.cpp diff --git a/plates/cpp-cmake/include/lib-klips.hpp b/cpp/cmake/include/lib-klips.hpp similarity index 100% rename from plates/cpp-cmake/include/lib-klips.hpp rename to cpp/cmake/include/lib-klips.hpp diff --git a/plates/cpp-cmake/src/CMakeLists.txt b/cpp/cmake/src/CMakeLists.txt similarity index 100% rename from plates/cpp-cmake/src/CMakeLists.txt rename to cpp/cmake/src/CMakeLists.txt diff --git a/plates/cpp-cmake/src/lib-klips.cpp b/cpp/cmake/src/lib-klips.cpp similarity index 100% rename from plates/cpp-cmake/src/lib-klips.cpp rename to cpp/cmake/src/lib-klips.cpp diff --git a/plates/circledoublelist/Makefile b/cpp/datastructs/circledoublelist/Makefile similarity index 100% rename from plates/circledoublelist/Makefile rename to cpp/datastructs/circledoublelist/Makefile diff --git a/plates/circledoublelist/circledoublelist.cpp b/cpp/datastructs/circledoublelist/circledoublelist.cpp similarity index 100% rename from plates/circledoublelist/circledoublelist.cpp rename to cpp/datastructs/circledoublelist/circledoublelist.cpp diff --git a/plates/circledoublelist/circledoublelist.h b/cpp/datastructs/circledoublelist/circledoublelist.h similarity index 100% rename from plates/circledoublelist/circledoublelist.h rename to cpp/datastructs/circledoublelist/circledoublelist.h diff --git a/plates/circledoublelist/driver.cpp b/cpp/datastructs/circledoublelist/driver.cpp similarity index 100% rename from plates/circledoublelist/driver.cpp rename to cpp/datastructs/circledoublelist/driver.cpp diff --git a/plates/circlesinglelist/Makefile b/cpp/datastructs/circlesinglelist/Makefile similarity index 100% rename from plates/circlesinglelist/Makefile rename to cpp/datastructs/circlesinglelist/Makefile diff --git a/plates/circlesinglelist/circlesinglelist.cpp b/cpp/datastructs/circlesinglelist/circlesinglelist.cpp similarity index 100% rename from plates/circlesinglelist/circlesinglelist.cpp rename to cpp/datastructs/circlesinglelist/circlesinglelist.cpp diff --git a/plates/circlesinglelist/circlesinglelist.h b/cpp/datastructs/circlesinglelist/circlesinglelist.h similarity index 100% rename from plates/circlesinglelist/circlesinglelist.h rename to cpp/datastructs/circlesinglelist/circlesinglelist.h diff --git a/plates/circlesinglelist/driver.cpp b/cpp/datastructs/circlesinglelist/driver.cpp similarity index 100% rename from plates/circlesinglelist/driver.cpp rename to cpp/datastructs/circlesinglelist/driver.cpp diff --git a/plates/doublelist/Makefile b/cpp/datastructs/doublelist/Makefile similarity index 100% rename from plates/doublelist/Makefile rename to cpp/datastructs/doublelist/Makefile diff --git a/plates/doublelist/doublelist.cpp b/cpp/datastructs/doublelist/doublelist.cpp similarity index 100% rename from plates/doublelist/doublelist.cpp rename to cpp/datastructs/doublelist/doublelist.cpp diff --git a/plates/doublelist/doublelist.h b/cpp/datastructs/doublelist/doublelist.h similarity index 100% rename from plates/doublelist/doublelist.h rename to cpp/datastructs/doublelist/doublelist.h diff --git a/plates/doublelist/driver.cpp b/cpp/datastructs/doublelist/driver.cpp similarity index 100% rename from plates/doublelist/driver.cpp rename to cpp/datastructs/doublelist/driver.cpp diff --git a/plates/singlelist/Makefile b/cpp/datastructs/singlelist/Makefile similarity index 100% rename from plates/singlelist/Makefile rename to cpp/datastructs/singlelist/Makefile diff --git a/plates/singlelist/driver.cpp b/cpp/datastructs/singlelist/driver.cpp similarity index 100% rename from plates/singlelist/driver.cpp rename to cpp/datastructs/singlelist/driver.cpp diff --git a/plates/singlelist/singlelist.cpp b/cpp/datastructs/singlelist/singlelist.cpp similarity index 100% rename from plates/singlelist/singlelist.cpp rename to cpp/datastructs/singlelist/singlelist.cpp diff --git a/plates/singlelist/singlelist.h b/cpp/datastructs/singlelist/singlelist.h similarity index 100% rename from plates/singlelist/singlelist.h rename to cpp/datastructs/singlelist/singlelist.h diff --git a/plates/cpp-opengl/.vscode/launch.json b/cpp/opengl/.vscode/launch.json similarity index 100% rename from plates/cpp-opengl/.vscode/launch.json rename to cpp/opengl/.vscode/launch.json diff --git a/plates/cpp-opengl/.vscode/tasks.json b/cpp/opengl/.vscode/tasks.json similarity index 100% rename from plates/cpp-opengl/.vscode/tasks.json rename to cpp/opengl/.vscode/tasks.json diff --git a/plates/cpp-opengl/test-gl.cpp b/cpp/opengl/test-gl.cpp similarity index 100% rename from plates/cpp-opengl/test-gl.cpp rename to cpp/opengl/test-gl.cpp diff --git a/plates/cpp-sdl-cmake/.vscode/launch.json b/cpp/sdl-cmake/.vscode/launch.json similarity index 100% rename from plates/cpp-sdl-cmake/.vscode/launch.json rename to cpp/sdl-cmake/.vscode/launch.json diff --git a/plates/cpp-sdl-cmake/CMakeLists.txt b/cpp/sdl-cmake/CMakeLists.txt similarity index 100% rename from plates/cpp-sdl-cmake/CMakeLists.txt rename to cpp/sdl-cmake/CMakeLists.txt diff --git a/plates/cpp-sdl-cmake/apps/inherited.cpp b/cpp/sdl-cmake/apps/inherited.cpp similarity index 100% rename from plates/cpp-sdl-cmake/apps/inherited.cpp rename to cpp/sdl-cmake/apps/inherited.cpp diff --git a/plates/cpp-sdl-cmake/src/lib-inherit.cpp b/cpp/sdl-cmake/src/lib-inherit.cpp similarity index 100% rename from plates/cpp-sdl-cmake/src/lib-inherit.cpp rename to cpp/sdl-cmake/src/lib-inherit.cpp diff --git a/plates/cpp-sdl-cmake/src/lib-inherit.h b/cpp/sdl-cmake/src/lib-inherit.h similarity index 100% rename from plates/cpp-sdl-cmake/src/lib-inherit.h rename to cpp/sdl-cmake/src/lib-inherit.h diff --git a/plates/cpp-sdl/.vscode/launch.json b/cpp/sdl/.vscode/launch.json similarity index 100% rename from plates/cpp-sdl/.vscode/launch.json rename to cpp/sdl/.vscode/launch.json diff --git a/plates/cpp-sdl/.vscode/tasks.json b/cpp/sdl/.vscode/tasks.json similarity index 100% rename from plates/cpp-sdl/.vscode/tasks.json rename to cpp/sdl/.vscode/tasks.json diff --git a/plates/cpp-sdl/inherited.cpp b/cpp/sdl/inherited.cpp similarity index 100% rename from plates/cpp-sdl/inherited.cpp rename to cpp/sdl/inherited.cpp