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

Block or report RomanRobot

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. DirDedupe DirDedupe Public

    Binary compare files in two directories and delete the duplicates from one of them.

    Python

  2. OhSnap OhSnap Public

    Window snapping tool meant for 4K monitors without scaling. Right-click + Drag titlebar to start snappin'!

    C++

  3. Converts a double to an SI string. C... Converts a double to an SI string. Converted to C++ from https://stackoverflow.com/a/12181661/719528.
    1
    // Unicode `μ` for micro (10e-6)
    2
    std::wstring to_si_wstring(double number, int precision)
    3
    {
    4
      std::wostringstream ss;
    5
      ss << std::setprecision(precision);
  4. Calculate MD5 of a file in Unreal En... Calculate MD5 of a file in Unreal Engine
    1
    FString MD5(FString file_name)
    2
    {
    3
      std::ifstream file(std::string(TCHAR_TO_UTF8(*file_name)), std::ios::binary);
    4
      if (!file) {
    5
        return FString();