Skip to content
View alec-chicherini's full-sized avatar
looking for a job
looking for a job

Block or report alec-chicherini

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
alec-chicherini/README.md

Pinned Loading

  1. wordle-task wordle-task Public

    Pet project 2025

    C++

  2. sorting algorithms sorting algorithms
    1
    /// sorting algorithms
    2
    /// clang++ --std=c++20 -O3 -Wall -Wextra -Wpedantic -Werror -o SortingAlgorithms.bin SortingAlgorithms.cxx; ./SortingAlgorithms.bin
    3
    
                  
    4
    #include <iostream>
    5
    
                  
  3. format data like pgsql style using s... format data like pgsql style using std::format
    1
    ///format data like pgsql style using std::format
    2
    ///clang++ --std=c++20 -O3 -Wall -Wextra -Wpedantic -Werror printTableLikePGSQLWithStdFormat.cxx
    3
    #include <iostream>
    4
    #include <string_view>
    5
    #include <format>