From: 03 October 2025 - To: 02 November 2025
Total Time: 1 hr 40 mins
Python 1 hr 9 mins >>>>>>>>>>>>>>>>>-------- 69.37 %
JSON 22 mins >>>>>>------------------- 22.31 %
Docker 4 mins >------------------------ 04.77 %
Text 2 mins >------------------------ 02.26 %
CSV 0 secs ------------------------- 00.98 %Skills and badges
- 💻 C / C++ / Python
- 🖥️ Rust / Cython / Java
- 🗃️ Object-Oriented Programming
More about me
- 🔭 I’m currently working on learning OpenCV4 with Python3 and Qt5.
- 🌱 I’m currently learning Rust.
- 📤 Most used line of code
git commit -m "Initial Commit". - 🤔 I’m looking for help with advanced Python and Machine Learning.
- 📫 How to reach me: [email protected]
- ⚡ Fun fact: code blooded animal
std::code_blooded.
❤️ Modern C++
/*****************************************************************//**
* \file trimstr.hpp
* \brief Demonstration of handy constant expressions that trim
* `std::string` at compile time with `std::ranges`
*
* $ g++ trimstr.hpp -o trimstr.o -std=c++23 -Wall -Wextra -Wpedantic
*
* \author Xuhua Huang
* \date March 2022
*********************************************************************/
#if defined __has_include
#if __has_include(<ranges>) && __has_include(<string>)
#include <ranges>
#include <string>
#else
#error "Require std::ranges and std::string library!"
#endif
#endif
inline constexpr auto trim_front = std::views::drop_while(::isspace);
inline constexpr auto trim_back = std::views::reverse
| std::views::drop_while(::isspace)
| std::views::reverse;
inline constexpr auto trim_spaces = trim_front | trim_back;
std::string trim_str(const std::string& str) {
// std::rangesnext::to in C++23 proposal
// that converts ranges to a container
return str | trim_spaces | std::rangesnext::to<std::string>;
}

