Skip to content
View alec-chicherini's full-sized avatar
let's go
let's go

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. pet-projects-production pet-projects-production Public

    Dockerfile

  2. wordle-client-qt wordle-client-qt Public

    C++

  3. 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
    
                  
  4. 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>