Bootstrap使用教程
1.简介 Bootstrap是全球最受欢迎的前端组件库,用于开发响应式布局、移动设备优先的Web项目。 官方网站:https://getbootstrap.com/ 官方文档:https://getbootstrap.com/docs/4.1/getting-started/introduction/ 官方示例:https://getbootstrap.com/docs/4.1...
1.简介 Bootstrap是全球最受欢迎的前端组件库,用于开发响应式布局、移动设备优先的Web项目。 官方网站:https://getbootstrap.com/ 官方文档:https://getbootstrap.com/docs/4.1/getting-started/introduction/ 官方示例:https://getbootstrap.com/docs/4.1...
Self-Supervised Heterogeneous Graph Neural Network with Co-Contrastive Learning 2021 KDD 论文链接:https://arxiv.org/pdf/2105.09111 官方代码:https://github.com/liun-online/HeCo (少见的作者代码写得清楚又简单) 个人实现:htt...
1.Web服务器 使用net/http包编写一个最简单的Web服务器: package main import ( "fmt" "log" "net/http" ) func main() { http.HandleFunc("/", index) log.Fatal(http.ListenAndServe("localhost:8000", nil)) } func in...
gomock是Go官方提供的模拟(mock)框架,提供了打桩和验证调用的功能 mockgen工具用于针对接口生成mock对象代码(不能mock单独的函数或方法) GitHub仓库:https://github.com/golang/mock 安装 go get github.com/golang/mock/gomock go get github.com/golang/mock/moc...
Combining Label Propagation and Simple Models out-Performs Graph Neural Networks 2021 ICLR 论文链接:https://arxiv.org/pdf/2010.13993 官方代码:https://github.com/CUAI/CorrectAndSmooth DGL实现:https://gith...
time.Time类型的Format()方法将时间格式化为字符串,但该方法的参数必须用一个固定的参考时间"2006-01-02 15:04:05" 用其他时间会得到奇怪的结果 package main import ( "fmt" "time" ) func main() { t := time.Date(2021, 5, 25, 18, 12, 34, 0, time.Loc...
Heterogeneous Graph Representation Learning with Relation Awareness 2021 论文链接:https://arxiv.org/pdf/2105.11122 官方代码:https://github.com/yule-BUAA/R-HGNN/ 个人实现:https://github.com/ZZy979/pytorch-t...
dgl.subgraph和dgl.sampling模块定义了一些用于提取子图操作 官方文档: https://docs.dgl.ai/en/latest/api/python/dgl.html#subgraph-extraction-ops https://docs.dgl.ai/en/latest/api/python/dgl.sampling.html 示例图: >...
本教程覆盖了Go语言最重要的特性,包括: 基础知识:变量和函数、流控制语句、内置类型 方法和接口 泛型 并发 官方网站:https://go.dev/tour/list 代码:https://github.com/ZZy979/go-tutorials/tree/main/tour 1.Hello World https://go.dev/tour/welcome ...
1.简介 Go语言是由Google开发的开源编程语言,以其简洁高效的语法著称。Go内置并发支持(goroutine和channel),编译速度快,特别适合构建高并发网络服务和云原生应用。 网站:https://go.dev/(或 https://golang.google.cn/ ) 官方文档:https://go.dev/doc/ 官方教程:https://go.dev/d...