
工具类
chuanyu
个人开发者
展开
-
VS 项目中查找中文正则表达式
(".*[\u4E00-\u9FA5]+)|([\u4E00-\u9FA5]+.*") 直接在VS中用Ctrl+F或者Ctrl+Shift+F,在"查找内容"中输入(".*[\u4E00-\u9FA5]+)|([\u4E00-\u9FA5]+.*"), 然后在 查找选项, 使用正则表达式 打钩 就能找出所有这些中文字符串了! ...原创 2020-08-10 10:51:43 · 1009 阅读 · 2 评论 -
查看自己电脑最大支持多少内存
cmd界面输入 wmic memphysical get maxcapacity原创 2019-07-10 14:47:12 · 1113 阅读 · 0 评论 -
Git恢复本地误删文件
转:https://www.cnblogs.com/yangshifu/p/9680993.html Step 1: git status Step 2:git reset HEAD [ 被删除的文件或文件夹 ] Step 3:git checkout[ 被删除的文件或文件夹 ] git add . (注:别忘记后面的.,此操作是把Test文件夹下面的文件都添加进来...转载 2019-06-28 09:27:37 · 3192 阅读 · 1 评论 -
bugly 上传so符号表提示 文件非法问题
有可能是bugly服务器问题,过段时间再试就好了, 正常情况会 提示 制作中, 然后提示 制作完成。原创 2018-09-30 21:50:14 · 2454 阅读 · 1 评论 -
SQLite使用(1)
1.引用头文件 #include "./SQLite/sqlite3.h" 2.定义变量 sqlite3 *database; 3.创建/打开一个本地文件作为数据库存储 int result = sqlite3_open(“文件路径+文件名”, &database); if (result != SQLITE_OK) { database = NULL;原创 2016-11-02 16:06:43 · 989 阅读 · 0 评论 -
mssql 语句批量增加信息代码 (网狐机器人添加)
use QPTreasureDB declare @beginID bigint declare @endID bigint declare @serID bigint --机器人起始号 set @beginID = 210 --机器人结束号 set @endID = 220 --房间号 set @serID = 45 begin Transaction原创 2016-10-10 17:13:04 · 2177 阅读 · 0 评论 -
windows下删除所有 .svn文件及文件夹
for /r . %%a in (.) do @if exist "%%a\.svn" rd /s /q "%%a\.svn"原创 2016-02-01 12:03:35 · 407 阅读 · 0 评论 -
webstorm 打开多个项目,自动保存
在 setting --》 IDE Settings --》 General --> 选择 Open project in new window 即可打开多个项目原创 2015-07-15 12:58:43 · 2139 阅读 · 0 评论 -
centos 重启网站服务器 httpd
遇到问题:网站页面打不开 然后查看日志: /var/log/httpd/error_log 发下以下内容: Wed Jul 15 22:36:34.887707 2015] [:error] [pid 30597] [client 115.205.239.84:29915] PHP Notice: Use of undefined constant MCRYPT_RIJNDAE原创 2015-07-15 22:57:22 · 2413 阅读 · 0 评论 -
cocos2d 工具使用方法介绍(包含字体,图片,粒子等工具)
1.Tiled Map:游戏关卡制作 2.TexturePacker:图片打包 3. ParticleDesigner:粒子编辑器 4.BMPFont:美术字 http://www.7edown.com/soft/down/soft_46015.html原创 2015-07-13 11:03:03 · 702 阅读 · 0 评论 -
webstrom代码格式化
转:http://blog.sina.com.cn/s/blog_0ee72b370101eqg0.html转载 2015-07-27 21:04:07 · 13512 阅读 · 0 评论 -
24个很酷的linux/unix工具
https://linuxtoy.org/archives/cool-linux-tools.html转载 2015-07-02 18:36:30 · 490 阅读 · 0 评论 -
利用http_load测试Web引擎性能(有phalcon和thinkphp对比)
http://www.kwx.gd/CentOSApp/CentOS-http_load.html转载 2015-06-29 23:20:32 · 1570 阅读 · 0 评论