上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页
摘要: Golang- import 导入包的语法 一 包的导入语法 在写Go代码的时候经常用到import这个命令用来导入包文件,看到的方式参考如下: import( "fmt" ) 然后在代码里面可以通过如下的方式调用 fmt.Println("hello world") 上面这个fmt是Go语言的标准 阅读全文
posted @ 2017-07-01 15:25 cdongyang 阅读(353) 评论(0) 推荐(0) 编辑
摘要: Data Types Primitive data types in the Swagger Specification are based on the types supported by the JSON-Schema Draft 4. Models are described using t 阅读全文
posted @ 2017-06-29 12:29 cdongyang 阅读(1090) 评论(0) 推荐(0) 编辑
摘要: ubuntu(linux)下谷歌浏览器跨域问题 今天在使用谷歌浏览器实时调试代码的时候遇到这样的错误: XMLHttpRequest cannot load http://localhost:8080/ No ‘Access-Control-Allow-Origin’ header is prese 阅读全文
posted @ 2017-06-29 00:31 cdongyang 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 官方网站 In addition to simply finding the rows to be returned by a query, an index may be able to deliver them in a specific sorted order. This allows a 阅读全文
posted @ 2017-06-28 16:27 cdongyang 阅读(3121) 评论(0) 推荐(0) 编辑
摘要: 官网文档 Since a DELETE of a row from the referenced table or an UPDATE of a referenced column will require a scan of the referencing table for rows match 阅读全文
posted @ 2017-06-28 14:42 cdongyang 阅读(2048) 评论(0) 推荐(0) 编辑
摘要: vim处理字符的大小写转换 ~ 将光标下的字母改变大小写3~ 将光标位置开始的3个字母改变其大小写g~~ 改变当前行字母的大小写U 将可视模式下选择的字母全改成大写字母u 将可视模式下选择的字母全改成小写gUU 将当前行的字母改成大写guu 将当前行的字母全改成小写 3gUU 将从光标开始到下面3行 阅读全文
posted @ 2017-06-25 20:47 cdongyang 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 原文:一般优化linux的内核,需要优化什么参数 阅读全文
posted @ 2017-06-23 17:51 cdongyang 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 百度百科-关于爬虫在网站上爬取的内容 User-agent: Baiduspider Disallow: /baidu Disallow: /s? Disallow: /ulink? Disallow: /link? User-agent: Googlebot Disallow: /baidu Di 阅读全文
posted @ 2017-06-23 14:39 cdongyang 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 1.输入"uname -a ",可显示电脑以及操作系统的相关信息。 2.输入"cat /proc/version",说明正在运行的内核版本。 3.输入"cat /etc/issue", 显示的是发行版本信息 4.lsb_release -a (适用于所有的linux,包括Redhat、SuSE、De 阅读全文
posted @ 2017-06-23 14:25 cdongyang 阅读(214) 评论(0) 推荐(0) 编辑
摘要: Linux进程管理及while循环 目录 进程的相关概念 进程查看及管理工具的使用 Linux系统作业控制 调整进程优先级 网络客户端工具 bash之while循环 20.1、进程类型 守护进程 daemon,在系统引导过程中启动的进程;跟终端无关的进程; 前台进程 跟终端相关,通过终端启动的进程; 阅读全文
posted @ 2017-06-22 16:17 cdongyang 阅读(945) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页