表现
C# 程序解压 7z 文件的时候抛出异常
1 | Can not load 7-zip library or internal COM error! Message: DLL file does not exist. |
专业修电脑,副业补衣服
C# 程序解压 7z 文件的时候抛出异常
1 | Can not load 7-zip library or internal COM error! Message: DLL file does not exist. |
本博文记录了组装台式机装黑苹果 High Sierra 10.13.6 的经历。
原本想装 Mojave 10.14 的,可惜发现在 Mojave 下还没有 GTX1080 的驱动,所以只能退而求其次装 High Sierra 了。
装 High Sierra 的过程中,第一次使用 10.13.6(17G2112) 镜像遇到个问题(下文有描述),无法进入安装界面,因此后来使用 10.13.5(17F77) 镜像装好后在 AppStore 更新 10.13.6
1 | sudo pip install matplotlib |
安装 matplotlib 时出现以下错误
1 | Found existing installation: pyparsing 1.5.6 |
Gist 仓库地址:https://gist.github.com/huihut/8f75e2332e05673ff7e1248ad5e85339
1 | #include <string> |
Gist 仓库地址:https://gist.github.com/huihut/aa90bd3a202090e25b9a4792c80e6920
1 | #include <string> |
之前写过的一篇博文:OpenCV使用CMake和MinGW的编译安装及其在Qt配置运行 是使用 32 位的 MinGW 在 Windows 下编译 OpenCV 生成 32 位的 dll。
而这篇博文是使用 64 位的 MinGW 编译 OpenCV 生成 64 位的 dll。
因为博主没有 64 位 qmake,所以没勾选 WITH_QT
创建一个名为 MySharedLib 的共享库
CMakeLists.txt1
2
3
4
5
6cmake_minimum_required(VERSION 3.10)
project(MySharedLib)
set(CMAKE_CXX_STANDARD 11)
add_library(MySharedLib SHARED library.cpp library.h)
有这样一个需求:
本文通过 UWP 动画,用两种方法实现这个效果,用于改变周贡献榜和粉丝榜的 Grid 的高度。
1 | #!/usr/bin/python |