听雪

Results 10 issues of 听雪

i want two separated file,.h and .cpp

![image](https://github.com/ConorWilliams/metastring/assets/38068739/4d8d7abe-ffd2-4809-bc88-5c435138ad8d) 确实已经变成了字节数组,但是保存在.rdata段中。有没有办法成为真正的字节数组,如下图所示: ![image](https://github.com/ConorWilliams/metastring/assets/38068739/f67da8be-1529-4ee5-ac36-7690bdbbba3b) const char a[] = { 'w','o','r','l','d','\0' };

用chartGPT辅助下增加了对c++17 20版本的支持,增加了一些get set函数

希望添加几个函数,实现在运行过程中设置线程池最大线程数量, 设置最小线程数量,防止过度优化导致性能下降。 添加主动优化函数。用户主动调用优化线程池线程数量

Successfully installed gast-0.4.0 jax-0.4.18 keras-2.12.0 numpy-1.23.5 tensorboard-2.12.3 tensorflow-estimator-2.12.0 tensorflow-intel-2.12.0rc0 作者的req文件中只有包名称,没有版本。我试了好久才成功。 tensorflow-intel=2.12.0rc0 keras=2.12.0 numpy=1.23.5

大佬什么时候继续开发啊?大佬什么时候继续开发啊?大佬什么时候继续开发啊?大佬什么时候继续开发啊?大佬什么时候继续开发啊? 我好期待你的完整作品,有啥alpha、beta版都发出来吧。

CustomWindow.qml:4:1: module "org.wangwenx190.FramelessHelper" version 1.0 cannot be imported because: module "QtQml" version 1.0 is not installed import org.wangwenx190.FramelessHelper ^) 当我通过静态编译的QT组件生成example时,不带framelesshelper就能正常使用fluentUI组件,但是当我添加了frameless时,就无法正常工作了,按照你在B站的视频https://www.bilibili.com/video/BV1ek4y1N7r8/,当中也没有启用framelessHelper的教程。 希望您能帮助我改进这个工作,我目前已经成功实现了qmake构建fluentUI库,并实现B站视频中不带framelessHelp的代码案例和其他案例。

I noticed that the current BrotliG API does not provide a way to configure the compression level (similar to the --quality option in the original Brotli). As a result, the...

std::wstring wstr = L"🌏"; int len = WideCharToMultiByte(CP_UTF8, 0, wstr.c_str(), -1, NULL, 0, NULL, NULL); std::string u16Tou8(len, 0); WideCharToMultiByte(CP_UTF8, 0, wstr.c_str(), -1, &u16Tou8[0], len, NULL, NULL); clipboard.copy(u16Tou8);

目前美中不足的地方就是我多个文件包含hpp会报错重定义,其他都很好。 虽然运行效率不高,但是没有莫名其妙的错误,适合新手练习手写rsa512位左右的算法。我目前用这个库实现了蒙哥马利大数模幂,rsa512位加解密。期待完善。 期待有如下改进: 1:hpp文件分解成h和cpp两个文件,不要像Easy-BigInteger那样多出来的非常多的文件。 2:函数列表,可以用doxgen等工具生成个文档。 3:提高运算效率(可选,目前运算效率足够新人练习手写大整数计算了。)