- 博客(34)
- 资源 (11)
- 收藏
- 关注
原创 Win10+MinGW13.1.0编译Qt5.15.15
安装windows SDK、python、ruby、cmake、Perl [可选]安装MySQL 解压qt-everywhere-opensource-src-5.15.15.zip(注:不要使用qt-everywhere-opensource-src-5.15.15.tar.xz) 修改源代码 E:\qt-everywhere-src-5.15.15\qtbase\src\3rdparty\angle\include\GLSLANG\ShaderVars.h,第17行,添加#include <
2024-10-23 08:29:07 903
原创 windows7 msys2 mingw32 gcc13.2.0编译qt5.15.12(不含qtwebengine、qtdeclarative、qtconnectivity)
【代码】windows7 msys2 mingw32 gcc13.2.0编译qt5.15.12(不含qtwebengine、qtdeclarative、qtconnectivity)
2024-01-28 21:34:22 559
原创 MacOS qemu运行loongarch linux
2. 下载bios文件和archlinux镜像。注:bios和镜像可根据需要使用其它版本。输入口令:loongarch。
2023-12-02 23:44:54 475
原创 Ubuntu 16.04运行SikulixIDE 2.0.5
Ubuntu 16.04搭建SikulixIDE 2.0.5运行环境,解决SikuliXIDE自带opencv依赖高版本libc,无法直接在Ubuntu 16.04上运行的问题。
2022-09-25 10:19:51 951 1
原创 使用Qt+CMake+MSYS2编译thrift
使用Qt+MSYS2编译thrift安装MSYS2安装依赖包编译libevent编译boost编译thrift功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入安装MSYS2下载msys2,双击安装。安装依赖包pacman -
2021-12-25 17:26:44 998
原创 Ubuntu 16.04交叉编译Android平台linphone-sdk(不支持Video)
1、下载(例如:https://www.androiddevtools.cn)并安装Android Studio。2、通过Android Studio安装JRE、NDK、SDK、CMake。3、下载linphone-sdk源码。git clone https://gitlab.linphone.org/BC/public/linphone-sdk.git --recursive4、pip安装pystache、six等Python库。5、修改linphone-sdk源码。 修改
2021-02-05 12:57:44 476 1
转载 Fix maven central http issue
2020-02-04(Last update: 2020-04-30)— Written by Igor Zarvanskyi#Hybris #Ant #MavenStarting from January 15, 2020 maven central repository is not supporting access viahttp://repo1.maven.org/maven2due to security reasons. Unfortunately under the h...
2020-05-17 12:29:12 495
原创 64位CentOS7交叉编译64位windows程序
1、下载并安装epel-release-7-11.noarch.rpm2、运行sudo yum install mingw64-gcc-c++.x86_64安装交叉编译工具3、x86_64-w64-mingw32-g++ -std=gnu++14 -Wall -Wextra -O3 helloCross.cpp -o helloCross.exe编译windows程序源码#include <...
2018-02-28 21:34:09 4082
原创 Microsoft JScript 运行时错误: 对象不支持此属性或方法
在64位机器上,如果COM组件没有错误(例如:可以通过C++、IE调用),但不能在控制台用JavaScript调用(通过cscript运行JavaScript),则可能是因为控制台与COM组件的位数不匹配造成的。可分别尝试:C:\windows\sysWOW64\cmd.exe和C:\windows\system32\cmd.exe在QT环境下,COM组件的创建可参考sim
2017-03-11 21:40:55 2738
原创 VirtualBox在Debian系统上安装增强功能(记录)
sudo apt-get install g++sudo apt-get install makesudo apt-get install linux-headers-$(uname -r)sudo sh ./autorun.shsudo poweroff --reboot
2016-11-17 23:46:55 5391 2
原创 TypeError: KeyboardSwitch() missing 8 required positional arguments
根据http://stackoverflow.com/a/35401552/1535111,这是pyHook的一个bug,一个解决方案是安装“Python3 fork of pyHook”。但如果直接安装会出现ImportError: No module named 'cpyHook'的错误。根据http://stackoverflow.com/questions/31163844/python-
2016-05-07 23:02:06 3753
原创 已安装pywin32却找不到pywintypes的解决方案
原因:pywintypes35.dll被安装在了...\Python35-32\Lib\site-packages\pywin32_system32目录,但该目录不在环境变量PATH中。显然,可以将该目录下的所有dll拷贝到PATH的某个目录中。另外,可以修改pywintypes.py文件中加载dll部分的代码。在代码found = _win32sysloader.LoadModu
2016-04-29 15:16:38 10348
转载 STL Algorithms in Action
来源:http://hgad.net/posts/stl-algorithms-in-action/Under tight schedules and looming deadlines, C++ programmers tend to ignore the Standard Library algorithms and settle for rather suboptimal handc
2016-04-12 11:14:05 545
原创 Boost.Spirit.Karma 自定义directive
需求:给定一个参数,若它为1,则不输出;若为1,则输出且追加乘法运算符。分析:这个需求是很容易满足的,一个if语句就可以了。即便是用karma,只需要eps + alternative。这里主要研究如何自定义directive来完成这个任务。自定义generator是类似的,可以参照karma中的源码。实现步骤:设计directive的名字,取名为coef_。希望的使用方法coef
2015-07-30 17:14:47 940
原创 Boost.Spirit x3学习笔记
为了能够在Visual Studio 2015 RC上运行,需要做如下修改1、修改boost/spirit/home/x3/nonterminal/detail/rule.hpp中的has_on_error和has_on_success的定义为: template struct do_has_on_error { template static auto test(int) -
2015-07-06 21:09:12 2193
原创 自定义输出流状态
一般,要想改变流对下一个对象的输出方式,需要使用manipulator,如:setw, setfill等。通过定义functor,用户可以很容易定义自己的manipulator。但是如果想要添加流状态(类似于对流中存储的整数的输出进制),却不那么容易,需要使用xalloc, pword, iword等。假设现在需要输出一些变量。因为存储字符串代价比较高,通常会用整数关键字来代表它们。这
2015-04-11 11:49:21 710
转载 How to embed Lua in C++ on Visual Studio
How to embed Lua in C++ on Visual StudioPosted on December 17, 2012 by shriekThese instructions are geared toward those programmers that are primarily interested in making video games and wh
2015-03-09 15:40:01 1075
原创 Generate ordered cartesian product of sequences
问题来源:http://stackoverflow.com/questions/25391423/ordered-cartesian-product-of-arrays2个序列时的情形已解决,本文将其扩展到一般情形。#ifndef MY_cartesian_HEADER#define MY_cartesian_HEADER#include #include #includ
2015-03-03 19:24:22 683
原创 SecretsKeeper 0.1
用于加密存储的软件,暂时只支持加密字符串。点击New,新建数据文件,设置文件密码点击Add添加数据,输入关键字按Tab输入要加密的字符串点击Remove删除点击Save保存点击Setting重新设置密码点击File-About显示软件信息有待添加的功能:本地化加密文件安全防护下载连接:
2015-01-14 16:38:01 492
转载 Layout management in wxWidgets
Home ContentsLayout management in wxWidgetsA typical application consists of various widgets. Those widgets are placed inside container widgets. A programmer must manage the layout of the applicat
2014-12-16 14:26:16 671
转载 在 Win 7 下使用 VirtualBOX 虚拟机安装 OS X 10.9 Mavericks 及 Xcode 5
消息新听众好友帖子收藏道具勋章任务威锋网|tmp15711 [退出](等级:青苹果|积分:164)消息我的威锋主题回复收藏展开/收起新闻游戏 配件游戏专题 本周重游水手昔日航线 听静美如画的故事体验过《水手之梦》后,不知道为什么,在奇妙又平淡的探索中寻
2014-11-09 11:46:28 935
转载 visual studio: 检测类型是否完整
解决方案来自:http://stackoverflow.com/questions/1625105/how-to-write-is-complete-template
2014-09-18 20:26:07 521
转载 GotW #89 Solution: Smart Pointers
There’s a lot to love about standard smart pointers in general, and unique_ptr in particular. ProblemJG Question1. When should you use shared_ptr vs. unique_ptr? List as many considera
2014-08-14 08:56:50 587
原创 Performance: std::regex v.s. boost::regex v.s. boost::xpressive v.s. boost::spirit::qi
本文考虑匹配银行卡号时,各个库的速度
2014-07-14 10:44:41 1380
原创 windows下使用c++ std::locale
#include #include int main(){ try{ int const val = -12345678; std::cout.imbue(std::locale("Chinese_People's Republic of China.936")); std::cout << val << "\n"; std::cout.imbue(std::loca
2014-07-02 13:19:50 1234
原创 Maple 推导表达式
y := [seq(x[i], i = 1 .. 10)]eqns := [seq(x[i]^2 = x[i], i = 1 .. 10)]for t to 15 do z := mod(simplify(y[1]+y[8]*y[9], eqns), 2): y := [op(y[2 .. 10]), z]: printf("z[%d]=%a\n", t, z):en
2014-04-10 17:32:42 2999
原创 华为面试题(8分钟写出代码)
有两个数组a,b,大小都为n,数组元素的值任意,无序;要求:通过交换a,b中的元素,使数组a元素的和与数组b元素的和之间的差最小题目来源:http://bbs.chinaunix.net/thread-855126-1-1.html#include#include#include#include#includetemplatestd::ostream& opera
2014-02-13 09:33:06 718
原创 饥荒存档自动备份及恢复工具
饥荒最让人头疼的是死掉之后,存档会自动被删除。当然可以每隔一段时间,手动将存档拷贝出来,需要的时候再复制回去,但是大家应该都觉得很麻烦的吧。于是,自动动手写了一个小软件,功能如下:1、在存档发生变化时(包括:创建新的存档、修改已有存档),自动将存档拷贝到另一目录。(当然啦,这样备份会越来越多,所以请记住自己删除不需要的备份)2、在存档被删除时,自动恢复此前拷贝的存档。现在,
2014-01-02 12:49:29 3492
原创 wxWidgets安装测试
安装(假设目标目录为wxWidgets)1、下载Windows installer2、安装3、打开build\msw子目录中的工程文件,编译4、将include目录拷贝到wxWidgets\下5、将lib目录下的lib\vc_dll(动态库)和lib\vc_lib(静态库)拷贝到wxWidgets\lib下测试1、建立空的项目2、复制http://doc
2013-12-19 12:52:08 727
windows7平台mingw32 gcc13.2.0编译qt5.15.12
2024-01-28
qt6.2.0-win-mingw-x86_64.zip
2021-10-16
Android arm64平台linphone-sdk
2021-02-17
饥荒存档自动备份及恢复工具【2014/01/03更新版】
2014-01-03
饥荒存档自动备份及恢复工具
2014-01-02
derivatives markets.pdf
2009-11-28
数值线性代数(徐树方)
2009-04-02
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人