GO
RGBMarco
时间能证明一切,如果不能帮助到别人,那就记录自己!
展开
-
Go Json序列化和反序列化
package main import ( "fmt" "encoding/json" "log" )type Student struct { Name string `json:"student_name"` Age int `json:"student_age"` Sex string `json:"student_sex"`原创 2017-12-20 16:12:32 · 1574 阅读 · 0 评论 -
Go 文本和HTML模板
文本模板: package mainimport ( "log" "os" "text/template" )type Student struct { Name string Age int Sex string Habbits []string Normal string }const templ = `students:原创 2017-12-20 20:30:00 · 1479 阅读 · 0 评论 -
Go 位向量示例
Example:package main/* Created by Marco 2017.12.26 22:52 */import ( "fmt" "bytes" )type IntSet struct { words []uint64 }/* determine the existence of this element */ func (s *IntSet原创 2017-12-27 11:12:29 · 608 阅读 · 0 评论 -
Go GIF 动画
代码:package mainimport ( "image" "image/gif" "image/color" "os" "math" "io" ) var palette = []color.Color{color.Black,color.RGBA{0,255,0,255}} const ( blackIndex = 0 gree原创 2017-12-18 20:21:57 · 1387 阅读 · 1 评论 -
go爬虫实践 获取图片
一般图片的位置都藏在html中img的src标签里,所有我们可以遍历html的img标签,获取并存取,我采用了goquery一个很不错的解析html的库 下面上代码,爬的的是新浪的,主线程sleep是为了防止goroutine泄漏,当然也可以通过通道避免 package main import ( "github.com/PuerkitoBio/goquery" "fmt...原创 2018-08-29 18:00:25 · 2447 阅读 · 0 评论