Math, Games, and More

I am a graduate student in math and a software engineer. I am interested in a variety of things related to mathematics, computer science(in particular, computer graphics), and cooking.

I maintain a few very small open source projects. Most of them are not at all useful, but rather were just for fun :)

The best way to get in contact with me is through email. I can be reached at mankowskinick@gmail.com.

Recent Posts

    All posts →

    Projects

    • malloc-craft
      Minecraft-style voxel game in C with OpenGL.
    • 3D-SCII
      Terminal-based 3D renderer in C using ASCII and ANSI escape codes.
    • Cerialize
      Lightweight, single-header JSON serialiazation library written in C.
      const char* json_str = "{\"key\": \"value\", \"num\": 42, \"flag\": true, \"missing\": null}";
      json result = deserialize_json(json_str, strlen(json_str));
      if (result.failure) {
          printf("Parse error: %s\n", result.error_text);
          json_free(&result); // Clean up even on failure
          return 1;
      } else {
          // Process JSON
      }
      // Always free memory when done
      json_free(&result);
    • Traffic SimulatorarXiv
      Python application for simulating single and multi lane traffic using delay differential equations.
    • Jira MCP

      Model-Context-Protocol(MCP) server to allow LLMs to create Jira tickets.