Skip to content
View cppcooper's full-sized avatar
Block or Report

Block or report cppcooper

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  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. Orthanc-filter Orthanc-filter Public

    Forked from BCCF-UBCO-AD/Orthanc-TMI

    A configurable DICOM redactor for Orthanc. This plugin will filter any data within incoming DICOM files according to the json configuration before writing the file to disk, information is preserved…

    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 3

  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