摘要:
Golang- import 导入包的语法 一 包的导入语法 在写Go代码的时候经常用到import这个命令用来导入包文件,看到的方式参考如下: import( "fmt" ) 然后在代码里面可以通过如下的方式调用 fmt.Println("hello world") 上面这个fmt是Go语言的标准 阅读全文
摘要:
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 阅读全文
摘要:
ubuntu(linux)下谷歌浏览器跨域问题 今天在使用谷歌浏览器实时调试代码的时候遇到这样的错误: XMLHttpRequest cannot load http://localhost:8080/ No ‘Access-Control-Allow-Origin’ header is prese 阅读全文
摘要:
官方网站 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 阅读全文
摘要:
官网文档 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 阅读全文
摘要:
vim处理字符的大小写转换 ~ 将光标下的字母改变大小写3~ 将光标位置开始的3个字母改变其大小写g~~ 改变当前行字母的大小写U 将可视模式下选择的字母全改成大写字母u 将可视模式下选择的字母全改成小写gUU 将当前行的字母改成大写guu 将当前行的字母全改成小写 3gUU 将从光标开始到下面3行 阅读全文
摘要:
原文:一般优化linux的内核,需要优化什么参数 阅读全文
摘要:
百度百科-关于爬虫在网站上爬取的内容 User-agent: Baiduspider Disallow: /baidu Disallow: /s? Disallow: /ulink? Disallow: /link? User-agent: Googlebot Disallow: /baidu Di 阅读全文
摘要:
1.输入"uname -a ",可显示电脑以及操作系统的相关信息。 2.输入"cat /proc/version",说明正在运行的内核版本。 3.输入"cat /etc/issue", 显示的是发行版本信息 4.lsb_release -a (适用于所有的linux,包括Redhat、SuSE、De 阅读全文
摘要:
Linux进程管理及while循环 目录 进程的相关概念 进程查看及管理工具的使用 Linux系统作业控制 调整进程优先级 网络客户端工具 bash之while循环 20.1、进程类型 守护进程 daemon,在系统引导过程中启动的进程;跟终端无关的进程; 前台进程 跟终端相关,通过终端启动的进程; 阅读全文