DailyShana

Results 6 comments of DailyShana

updated for `web` module and I want to ask how to debug `web` module in IDEA, breakpoint seems not working

@zbynek Could you look at this?

>我chrome也是这个版本,结果无法安装。提示程序包: CRC_HEADER_INVALID。 用最新版本(v73以后)的chrome打包的crx可以解决这个问题

conflict caused by https://github.com/geogebra/geogebra/commit/ef1b935eb4258a46ce8ad891454eae8bd691dd96 and https://github.com/geogebra/geogebra/commit/fa94878f2a366f2fc7ae57eba1b6f744dc6ddd29

write `setlocale(LC_ALL, ".UTF-8")` then the char string for constructing `path` will be treated as utf8 encoding. it seem only usable in vs2019 and such behavior have not been documented see...

I tested. It works on Windows 7 ```cpp #include #include #include using namespace std::filesystem; int main() { setlocale(LC_ALL, ".UTF-8"); path p{ "中文" }; printf(p.u8string().c_str()); wprintf(p.c_str()); return 0; } ``` output...