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

Block or report Gnomorian

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. Custom Formatter for non-copyable re... Custom Formatter for non-copyable references
    1
    std::format is a nice simple way to do string interpolation in c++
    2
    std::format("hello, {}!", "World); would print "`hello, World!`" for example.
    3
    
                  
    4
    I wanted to learn to create my own formatters so i could provide custom objects and have them printed nicely by just providing 
    5
    it. There is not currently much documentation on the subject, but i managed to make it happen however one problem is the 
  2. Benchmark of different built in ways... Benchmark of different built in ways to split a string in c++
    1
    #include <string>
    2
    #include <regex>
    3
    #include <vector>
    4
    #include <iostream>
    5
    #include <algorithm>
  3. cpp_benchmarking_framework cpp_benchmarking_framework Public

    i want to test the performance impact of new c++ structures vs c with classes style of doing things

    C++

  4. TomatoTimer TomatoTimer Public

    a pomodoro timer tool i made in an evening because reasons

    C++

  5. visual_studio_templates visual_studio_templates Public

    Useful visual studio templates for a quickstart c++ exe project and dll project.

    C++

  6. Win32Debugger Win32Debugger Public

    a simple debugger app

    C++