Skip to content
View thagarion's full-sized avatar
:octocat:
Coding
:octocat:
Coding

Block or report thagarion

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

💻 Tech Stack:

C C++ CMake Go Docker

Pinned Loading

  1. This script is designed to remove al... This script is designed to remove all deleted files from git history
    1
    #!/bin/bash
    2
    files=`git log --diff-filter=D --summary | grep delete | awk '{print $NF}'`
    3
    index=1
    4
    size=`echo "$files" | wc -l`
    5
    for file in $files; do
  2. Simple boost logger with file name a... Simple boost logger with file name and line numbers
    1
    cmake_minimum_required(VERSION 3.23)
    2
    
                  
    3
    set(project_name "logger_test")
    4
    project(${project_name} LANGUAGES CXX)
    5