Skip to content
View cppcooper's full-sized avatar
  • Canada

Block or report cppcooper

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. dfhack dfhack Public

    Forked from DFHack/dfhack

    forked development of dfhack primarily for plugins: cxxrandom, channel-safely, spectate, and whatever the future holds

    C++

  2. DICOM-tag-filter DICOM-tag-filter Public

    Forked from BCCF-UBCO-AD/Orthanc-TMI

    A highly configurable DICOM parser plugin for an Orthanc 1.9.7 server. Migrating is simple. Reads and parses a raw data buffer of a DICOM file, very fast, very very fast.

    C

  3. icosahedron-sphere icosahedron-sphere Public

    For UE4 - Takes an icosahedron, subdivides it N times. Normalizes the vertices to create a unit-sphere. This implementation takes an underlying class which provides the aforementioned services and …

    C++ 7 2

  4. daylight daylight Public

    Command line utility to calculate hours of daylight for a given latitude, and the sunrise for a given latitude and longitude, as well as the delta daylight to one day from the previous.

    C++ 2 1

  5. [C++] cool niche template stuff [C++] cool niche template stuff
    1
    struct delimiter_ctype : std::ctype<char> {
    2
        static const mask* make_table(std::string delims) {
    3
            // make a copy of the "C" locale table
    4
            static std::vector<mask> v(classic_table(), classic_table() + table_size);
    5
            for(mask m : v) {
  6. game-of-the-amazons-ai game-of-the-amazons-ai Public

    AI agent for playing Game Of The Amazons. Each move includes two components moving your piece and placing a piece to limit movement on the board. Currently relies on an API for the GUI and client/s…

    Java