Thanks to visit codestin.com
Credit goes to yexuhang.com

Hi, I'm Xuhang Ye


CS Student / Passionate Learner / Open-Source Developer

Setting Up a Proxy for the Cloud Server

For a brand new domestic Linux cloud server, network issues are often a significant obstacle that limits our learning and research. Similar to PCs, we can completely utilize proxies on cloud servers to resolve network issues and facilitate scientific research progress. [Read More]

Mastering `std::stringstream` in C++ for Easy String Manipulation

Learn how to leverage the powerful capabilities of `std::stringstream` for parsing and formatting strings in C++

Recently I have met a small tricky problem about parsing and formatting the string input “yyyy/mm/dd” in C++ programming question, and the whole solution procedure is here. To nicely solve it, I used std::stringstream, which belongs to the <sstream>  library. I used this tool to manipulate string a long time ago,... [Read More]