From: 27 October 2024 - To: 26 November 2024
Total Time: 107 hrs 5 mins
Java 69 hrs >>>>>>>>>>>>>>>>--------- 64.43 %
Python 21 hrs 35 mins >>>>>-------------------- 20.16 %
Text 5 hrs 13 mins >------------------------ 04.88 %
C++ 5 hrs 12 mins >------------------------ 04.86 %
D 4 hrs 4 mins >------------------------ 03.80 %
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: xuhua.huang.io@gmail.com
- ⚡ 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>;
}