checksec warmup_csaw_2016 Arch: amd64-64-little RELRO: Partial RELRO Stack: No canary found NX: NX disabled PIE: No PIE (0x400000) RWX: Has RWX segmen ...
分类:
其他好文 时间:
2020-10-10 17:07:34
阅读次数:
20
开发环境:mac+python3.8.3+pyqt5.15.1+vscode 使用py2app打包运行后报错。 在命令行看到如下报错: Traceback (most recent call last): File "/Users/panda/Documents/work/python/xxx/di ...
分类:
其他好文 时间:
2020-09-24 21:51:42
阅读次数:
46
-bash: nohup: command not found 1、查看本地是否有 which nohup 如果存在记录位置 通常位置为 /usr/bin/nohup 如果没有查询到位置 yum install coreutils 进行安装 然后配置 2、修改profile文件 位置--etc/pr ...
分类:
系统相关 时间:
2020-09-24 21:03:34
阅读次数:
71
1. 端游使用unity WebGL(需优化内嵌浏览器),app使用unity 原生(as library)2. 都使用UAL,端游去解决gamelib冲突问题。3.不考虑后来lipeng提的cocos creator的话对于app都得去搞UAL 1.RN(一) 为什么要学习RN ...
分类:
其他好文 时间:
2020-09-24 20:51:18
阅读次数:
41
https://www.jianshu.com/p/79901ef8556a 上面的链接已经很详细地说明了 注意gradle的目录问题,我的是Contents/plugins/gradle,不要去所谓新建一个目录。 还有注意在安装失败后要把AS的所有项目删除干净 rm -Rf /Applicatio ...
分类:
移动开发 时间:
2020-09-23 23:48:25
阅读次数:
56
OpenGL有很多扩展库,下面我们一一了解一下,现在开发过程中,我们推荐使用opengl+glew+glfw组合方案。
分类:
其他好文 时间:
2020-09-21 11:38:57
阅读次数:
31
前期准备:安装微软Excel,需要调用excel类库,Microsoft.Excel XXX Object Library 1 sing System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.T ...
stringstring2binstring(stringstrSrc){if(strSrc.empty()){return"";}stringstrTemp="0x";stringstrDest;//去掉最开始的0x字符intiNumber=strSrc.find(strTemp);if(iNumber!=NO_FOUND){strSrc=strSrc.substr(2,strSrc.size(
分类:
其他好文 时间:
2020-09-17 23:19:09
阅读次数:
30
有时候,或者说经常,我们会在F5的时候遇到栈帧不平衡的问题。每每这种时候就需要我们手动alt+k调整栈帧。 我曾经非常苦恼,这是个smjb玩意,我到底该怎么调整栈帧。网上查了很多资料很多博客,但我都觉得难以理解,而且难以操作。 后来我无意间看到一篇博客,说只要用他的方法,调整栈帧是很容易的一件事,我 ...
分类:
其他好文 时间:
2020-09-17 23:17:23
阅读次数:
34
# coding=utf-8 import time from selenium.common.exceptions import NoSuchElementException from selenium.webdriver import ActionChains from selenium.web ...
分类:
编程语言 时间:
2020-09-17 22:22:43
阅读次数:
27