Recent Posts

Docker 搭建 GitLab 添加用户

想要使用 Docker 来搭建 GitLab 的话需要先安装 Docker, 官方的说法Desktop版本是最方便的部署方式,安装非常简单就官网下载即可,另外可以设置一下免sudo使用docker也挺方便的。

Route Between Subet子网路由配置

1.子网 subnet Since ip addresses are made up of 8 bit numbers, the largest number you will see in an ip address is 255. The smallest number you could see in an...

internatinalize vue-admin-template

An admin framework will be ok for a flying control project. I found the vue-element-admin by PanJiaChen on github, and it’s a too much for the SPA. according...

Moudle of JavaScript ES6

浏览器延迟加载的两种方式(默认情况下同步加载js脚本) defer 渲染完执行 async 下载完执行 但是浏览器加载ES6模块是异步加载的 <script type=‘module’ src=’foo.js’/> 等同于打开defer属性

国土调查的地图分辨率

这周厦门这边正好有三调的培训,公司组织参加了,其中有几个地图分辨率和误差允许值的知识点。为了方便理解和记忆给综合了一下。

Pitfalls of REST-full Api designing

The structure of rest-full api is good with business logic, do not design it to sql-like or nosql-like style. (eg:/user?filter=’age>10’,is really not good...