- (June 2003; Short Story in Sneaker) The Boredom of Haruhi Suzumiya
- (June 6, 2003; Book) The Melancholy of Haruhi Suzumiya
- (August 2003; Short Story in Sneaker) Bamboo Leaf Rhapsody
- (October 2003; Short Story in Sneaker) Mystérique Sign
- (October 1, 2003; Book) The Sigh of Haruhi Suzumiya
- (December 2003; Short Story in Sneaker) Endless Eight
- (December 27, 2004; Compilation Book) The Boredom of Haruhi Suzumiya; Remote Island Syndrome (Newly Written)
- (February 2004; Short Story in Sneaker) The Adventures of Mikuru Asahina Episode 00
- (April/June 2004; Short Story in Sneaker) The Day of Sagittarius
- (July 31, 2004; Book) The Disappearance of Haruhi Suzumiya
This file contains hidden or 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
// PNG_TO_DDS_RGBA_EXPORTER.cpp : This file contains the 'main' function. Program execution begins and ends there. | |
// | |
#include <iostream> | |
#include <fstream> | |
#include <cinttypes> | |
#include <vector> | |
#define STB_IMAGE_IMPLEMENTATION | |
#include "stb_image.h" |
This file contains hidden or 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
//Given by beached from the include<c++> discord | |
// "if you want to be fancy, throw in a noexcept( std::is_nothrow_invokable_v<Function> )" | |
template<typename Function> | |
constexpr void do_n( size_t count, Function func ) { | |
while( count-- > 0 ) { | |
std::invoke( func ); | |
} | |
} | |
std::vector<int> v{} |
This file contains hidden or 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
function(YTE_Source_Group aRoot aTarget) | |
get_target_property(targetBinaryDir ${aTarget} BINARY_DIR) | |
get_target_property(targetSourceDir ${aTarget} SOURCE_DIR) | |
get_target_property(targetSources ${aTarget} SOURCES) | |
# This will determine if the given files are in a folder or not and separate | |
# them on that alone. | |
foreach(aFile ${targetSources}) | |
file(TO_CMAKE_PATH ${aFile} resultFile) | |
get_filename_component(nameComponent ${resultFile} NAME) |
This file contains hidden or 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
/mnt/c/ClangTesting/build/bin/clang++ -stdlib=libc++ -nostdinc++ -I/mnt/c/ClangTesting/build/include/c++/v1 -I/mnt/c/ClangTesting/build/include -L/mnt/c/ClangTesting/build/lib -Wl,-rpath,/mnt/c/ClangTesting/build/lib -Xclang -freflection -std=c++1z ReflectionTest.cpp |
This file contains hidden or 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
#include <iostream> | |
struct Test | |
{ | |
int mNumber; | |
constexpr Test(int aNumber) | |
: mNumber(aNumber) {} |
This file contains hidden or 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
#include <stdio.h> | |
class Kiddo | |
{ | |
}; | |
class CrappyKid : public Kiddo | |
{ |