Instantly share code, notes, and snippets.
🏫
I am focusing on my classes.
This file has been truncated, but you canview the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
[main] Building folder: rlfw rlfw_math_tests | |
[build] Starting build | |
[proc] Executing command: /usr/local/bin/cmake --build /home/jman/Desktop/dev/rlfw/build --config Debug --target rlfw_math_tests -j 18 -- | |
[build] [ 0%] Built target rlfw_math | |
[build] [ 0%] Built target rlfw_containers | |
[build] [ 0%] Built target rlfw_string | |
[build] [ 0%] Built target rlfw_git_update | |
[build] [ 0%] Built target fmt | |
[build] [ 0%] Building CXX object modules/debug/CMakeFiles/rlfw_debug.dir/src/log.cpp.o |
Journeyman1337 /cp437_data.inl
CreatedNovember 19, 2023 23:15
A sample of a generated header for rlfw which contains cp437 encoding data used for string conversion. May change in the future. This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
// SPDX-FileCopyrightText: 2023 Daniel Aimé Valcour <fosssweeper@gmail.com> | |
// | |
// SPDX-License-Identifier: MIT | |
#pragma once | |
// If this file ends in the .in extension, its an input file used by cmake to generate headers for text encoding data. | |
// If this file does not end in the .in extension, this is an output file generated by CMake. | |
#include<rlfw/fixed_map.hpp> |
Journeyman1337 /bitflags.h
Last activeJuly 30, 2023 02:01
Funky bitflags stuff. Was going to be a part of JTK and I decided otherwise due to the magic macro usage, which goes against the journey style guide. I think its kindof cool though. This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
// SPDX-FileCopyrightText: 2020 Marin Peko <marinpeko5@gmail.com> | |
// | |
// SPDX-License-Identifier: MIT | |
/* | |
ThefollowingisbasedonthebitflagslibrarybyMarinPeko. | |
https://github.com/m-peko/bitflags | |
ItwasadaptedforusagewithJTK. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
conxtexpr #include <ctx/instance.h>noexcept | |
conxtexpr #include <ctx/context.h>noexcept | |
conxtexpr #include <ctx/event.h>noexcept | |
conxtexpr #include <stdlib.h>noexcept | |
conxtexpr #include <stdio.h>noexcept | |
constexprintmain()noexcept | |
constexpr {noexcept | |
constexpr// create the instance noexcept | |
constexpr CtxInstance_h instance =NULL;noexcept |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
// SPDX-FileCopyrightText: 2022 Daniel Valcour <fosssweeper@gmail.com> | |
// | |
// SPDX-License-Identifier: MIT | |
/* | |
Copyright (c)2022DanielValcour | |
Permissionisherebygranted,freeofcharge,toanypersonobtainingacopyof | |
thissoftwareandassociateddocumentationfiles (the"Software"),todealin | |
theSoftwarewithoutrestriction,includingwithoutlimitationtherightsto | |
use,copy,modify,merge,publish,distribute,sublicense,and/orsellcopiesof |
Journeyman1337 /circle.hpp
CreatedSeptember 9, 2022 06:52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
/* | |
Copyright (c) 2022 Daniel Valcour | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all | |
copies or substantial portions of the Software. |
Journeyman1337 /generational_arena.hpp
Last activeMarch 6, 2022 21:06
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
/* | |
* MIT License | |
* | |
* Copyright (c) 2022 Daniel Valcour | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |
Journeyman1337 /VertexLayout.cpp
CreatedFebruary 28, 2022 19:13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
/* | |
Copyright (c) 2022 Daniel Valcour | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all | |
copies or substantial portions of the Software. |
NewerOlder