该文被密码保护。 阅读全文
随笔档案-2017年10月
docker之使用System.Drawing生成图片缺少Gdiplus.dll错误
2017-10-30 17:07 by huoit, 1892 阅读, 收藏, 编辑
摘要:
Windows下面运行正常,部署到Linux的docker上之后,报错显示缺少gdiplus.dll;这个是Windows的gdi组件,在Linux下要安装环境 解决方法一 修改Dockerfile;添加gidplus组件的安装: RUN apt-get updateRUN apt-get inst 阅读全文
Docker:镜像构建与进入容器总结
2017-10-30 16:52 by huoit, 1101 阅读, 收藏, 编辑
摘要:
构建镜像总结 docker构建镜像有两种方法: 1、使用docker commit + 容器 docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]] -a, --author="" Author (e.g., "John Hannibal Smith 阅读全文
SQL数据库调优
2017-10-24 16:21 by huoit, 173 阅读, 收藏, 编辑
摘要:
1、使用With As做数据库递归,调优树形表结构 例如:设计表结构简化如:ID、ParentID、Name;这里的ParentID就是这个表本身的某个ID ;with cte as ( select OrgId, OrgName, IsOne, ParentId,OrgName as rid fr 阅读全文
Unity3D资源
2017-10-21 22:35 by huoit, 414 阅读, 收藏, 编辑
摘要:
1、ShareSDK 地址:https://github.com/MobClub/New-Unity-For-ShareSDK 文档:产品集成步骤 2、Protobuf https://github.com/mgravell/protobuf-net 服务器 1、kbengine 官网:http:/ 阅读全文