上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 62 下一页
摘要: 参考:https://blog.51cto.com/androidguy/1690306 QT是一款非常牛逼的跨平台开发工具,目前可以开发Mac OS X、Windows、Linux、Android、iOS等平台的App。对于Android和iOS平台,发布相对容易,例如,Android平台是生成a 阅读全文
posted @ 2020-03-01 16:54 狂客 阅读(2668) 评论(3) 推荐(0) 编辑
摘要: 参考: # f = open("test4.txt", 'w') # # f.write(b'hello world') # TypeError: write() argument must be str, not bytes # # f.close() f = open("test4.txt", 阅读全文
posted @ 2020-03-01 16:52 狂客 阅读(4700) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/lucky-man/p/6207873.html 一,先说一下为什么要分表 当一张的数据达到几百万时,你查询一次所花的时间会变多,如果有联合查询的话,我想有可能会死在那儿了。分表的目的就在于此,减小数据库的负担,缩短查询时间。 根据个人经验,my 阅读全文
posted @ 2020-03-01 16:46 狂客 阅读(831) 评论(0) 推荐(1) 编辑
摘要: 参考:https://blog.csdn.net/daoming1112/article/details/54710743 MySQLInterface.h: // MySQLInterface // 功能描述:实现对MySQL访问操作的封装 #ifndef __MYSQL_INTERFACE_H_ 阅读全文
posted @ 2020-03-01 16:44 狂客 阅读(1348) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/cccheer/article/details/60480199 今天在删除远程主机上MySQL中的一个数据库时,遇到了这样一个问题。 执行drop database语句的时候,远程主机一直在响应,无法正常删除。登录到远程主机上删除也无响应。 这个问 阅读全文
posted @ 2020-03-01 16:40 狂客 阅读(853) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/hjxyshell/article/details/39106609 参考 《windows 驱动开发技术详解》,部分关于对象的结构,请看上节windbg命令 中介绍 公用头文件: // IOCTLS.H -- IOCTL code definiti 阅读全文
posted @ 2020-03-01 16:39 狂客 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/wocalieshenmegui/p/5917967.html 以下均摘自《代码审计:企业级Web代码安全架构》一书 1.floor() select * from test where id=1 and (select 1 from (sele 阅读全文
posted @ 2020-03-01 16:37 狂客 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/weixin_43625577/article/details/92643949 1. POC、EXP、Payload与Shellcode POC:全称 ' Proof of Concept ',中文 ' 概念验证 ' ,常指一段漏洞证明的代码。 E 阅读全文
posted @ 2020-03-01 16:36 狂客 阅读(1434) 评论(0) 推荐(1) 编辑
摘要: 参考:http://www.blogdaren.com/post-2536.html 问题背景: # composer require xxx/yyy 结果报错: [InvalidArgumentException] Could not find a version of package xxx/y 阅读全文
posted @ 2020-03-01 16:32 狂客 阅读(5402) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/simploving/article/details/79631588 原文:http://blog.csdn.net/xiaoyida11/article/details/51557174 一、概述 1、就是为了让两个linux机器之间使用ssh不 阅读全文
posted @ 2020-03-01 16:31 狂客 阅读(1270) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 62 下一页