上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 37 下一页
摘要: 加密 cocos luacompile -s src -d dst_dir -e -b xxxxx -k xxxxx --disable-compile 解密 cocos luacompile -s src -d dst_dir -e -j -b xxxxx -k xxxxx --disable-c 阅读全文
posted @ 2019-05-04 13:04 浪浪辛 阅读(1640) 评论(0) 推荐(0)
摘要: 递归删除当前目录下所有以 ._开头的文件 find . -name "._*" | xargs rm -f 或者: find . -name "._*" -exec rm -r "{}" \; 阅读全文
posted @ 2019-05-03 23:35 浪浪辛 阅读(216) 评论(0) 推荐(0)
摘要: 下载地址:http://sourceforge.net/projects/asio/files/asio/1.12.2%20%28Stable%29/ 本人下载的版本:asio-1.12.2 1,本人环境: 2. cd到下载的库目录 3.执行make 这里执行报错了。因为这个报错: boost::c 阅读全文
posted @ 2019-04-15 14:10 浪浪辛 阅读(1208) 评论(0) 推荐(0)
摘要: 同一个网络,登录不同网站/APP, 显示的登录IP可能不一样。 输入ip138.com 得到外网IP: 输入:http://www.net.cn/static/customercare/yourip.asp 我本人登录阿里云的美国服务器,登录IP显示:36.110.69.204 我本人登录阿里云的国 阅读全文
posted @ 2019-04-09 14:50 浪浪辛 阅读(2376) 评论(0) 推荐(0)
摘要: 1. 下载, 解压 2. 配置:vim /var/frp/myfrpc.ini 3, 添加开机自动启动: vim /etc/rc.local 添加可执行权限:chmod +x /etc/rc.local 添加开机启动参考博客:https://blog.csdn.net/dahuzix/article 阅读全文
posted @ 2019-04-08 10:12 浪浪辛 阅读(6488) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-04-08 01:25 浪浪辛 阅读(7) 评论(0) 推荐(0)
摘要: 声明:此篇文章不介绍如何使用cocos2dx制作游戏。站在架构师的角度如果制作游戏。 以我多年的游戏开发经验,和其他技术积累, 市面的所谈的一些软件架构模式都不太适合游戏软件。 我指的架构模式,MVC、MVP、MVVM、MVI。 他们只适合应用软件里,以数据为主导的,显示为辅的功能性软件里。 web 阅读全文
posted @ 2019-01-11 17:57 浪浪辛 阅读(751) 评论(1) 推荐(0)
摘要: 搞了这么多年的技术,一直对 事件与命令、函数与方法的概念模糊不清。今天详细记录一下。 函数与方法 第一门语言学习的c语言,老师常说写一个函数或者库函数。 其实编程和数学密不可分,以数学为基础的一门科学。 数学里常见的函数 y = sin(x). 这是个sin叫函数,不是叫方法。 学c语言,写一个函数 阅读全文
posted @ 2019-01-11 15:56 浪浪辛 阅读(834) 评论(0) 推荐(0)
摘要: 解决方案: build > setting enable module 改为No 阅读全文
posted @ 2018-11-18 13:15 浪浪辛 阅读(2431) 评论(0) 推荐(0)
摘要: package main import ( "encoding/hex" "fmt" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" "github.com/golang/protobuf/ptypes/any" "reflect" ) import "./protos/protos_pb... 阅读全文
posted @ 2018-11-16 13:41 浪浪辛 阅读(2574) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 37 下一页