golang
chan70707
这个作者很懒,什么都没留下…
展开
-
理解 Go 语言中的方法和接收者
0x01 前言Go 语言的语法实在有些不一样,与其它面向对象语言相比,Go 的方法似乎有些晦涩。0x02 方法的定义在 Go 语言里,方法和函数只差了一个,那就是方法在 func 和标识符之间多了一个参数。type user struct { name string, email string,}//这是函数的定义func notify(...转载 2018-07-27 21:35:28 · 351 阅读 · 0 评论 -
golang http 中间件
https://www.alexedwards.net/blog/a-recap-of-request-handlingProcessing HTTP requests with Go is primarily about two things: ServeMuxes and Handlers.A ServeMux is essentially a HTTP request router ...转载 2018-08-01 17:16:09 · 819 阅读 · 0 评论 -
go 结构和方法
https://www.cnblogs.com/pyrene/p/8094283.html转载 2018-08-13 14:47:47 · 228 阅读 · 0 评论 -
Ubuntu 系统环境变量配置文件
Ubuntu Linux系统环境变量配置文件:/etc/profile : 在登录时,操作系统定制用户环境时使用的第一个文件 ,此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行。/etc /environment : 在登录时操作系统使用的第二个文件, 系统在读取你自己的profile前,设置环境文件的环境变量。~/.profile : 在登录时用到的第三个文件 是...转载 2018-08-13 20:19:27 · 8418 阅读 · 0 评论 -
Using self-signed certificates
Using self-signed certificatesUpload your certificate using the certificate parameter in the setWebhook method. The certificate supplied should be PEM encoded (ASCII BASE64), the pem file should onl...转载 2018-10-10 14:21:07 · 428 阅读 · 0 评论