自己找了很久,根据第三方文档重写了,特别准确,可以试试
2022-12-30 20:37:04 67KB Golang,相似
1
基于Go语言实现的论文评价系统源码+数据库(毕设项目).zip 基于Go语言实现的论文评价系统源码+数据库(毕设项目).zip 基于Go语言实现的论文评价系统源码+数据库(毕设项目).zip 【备注】 主要针对计算机相关专业的正在做毕设的学生和需要项目实战的go语言学习者。 也可作为课程设计、期末大作业。包含:项目源码、数据库脚本、项目说明等,该项目可以直接作为毕设、课程设计使用。 也可以用来学习参考借鉴!
Go: Design Patterns for Real-World Projects What You Will Learn: Install and configure the Go development environment to quickly get started with your first program Use the basic elements of the language including source code structure, variables, constants, and control flow primitives Get to know all the basic syntax and tools you need to start coding in Go Create unique instances that cannot be duplicated within a program Build quirky and fun projects from scratch while exploring patterns, practices, and techniques, as well as a range of different technologies Create websites and data services capable of massive scaling using Go’s net/http package, Explore RESTful patterns as well as low-latency WebSocket APIs Interact with a variety of remote web services to consume capabilities, ranging from authentication and authorization to a fully functioning thesaurus
2022-12-28 11:04:56 10.23MB go design patterns 设计模式
1
Key Features Introduction of the CSP concurrency model by explaining GoRoutines and channels. Objective comparison, with the help of images, of the CSP concurrency model and the Actor model to give the audience a "side by side" understanding of the CSP model. Explanation, including comprehensive text and examples, of all known GoF design patterns in Go. Book Description Go is a multi-paradigm programming language that has built-in facilities to create concurrent applications. Design patterns allow developers to efficiently address common problems faced during developing applications. Go Design Patterns will provide readers with a reference point to software design patterns and CSP concurrency design patterns to help them build applications in a more idiomatic, robust, and convenient way in Go. The book starts with a brief introduction to Go programming essentials and quickly moves on to explain the idea behind the creation of design patterns and how they appeared in the 90's as a common "language" between developers to solve common tasks in object-oriented programming languages. You will then learn how to apply the 23 GoF design patterns in Go and also learn about CSP concurrency patterns, the "killer feature" in Go that has helped Google develop software to maintain thousands of servers. Thus the book will enable you to understand and apply design patterns in an idiomatic way that will produce concise, readable, and maintainable software. What you will learn All basic syntax and tools needed to start coding in Go. Encapsulate the creation of complex objects in an idiomatic way in Go. Create unique instances that cannot be duplicated within a program. Understand the importance of object encapsulation to provide clarity and maintainability. Prepare cost-effective actions so that different parts of the program aren't affected by expensive tasks. Deal with channels and GoRoutines within the Go context to build concurrent application in Go in an idiomatic way. Table of Contents Chapter 1. Ready... Steady... Go! Chapter 2. Creational Patterns - Singleton, Builder, Factory, Prototype, and Abstract Factory Design Patterns Chapter 3. Structural Patterns - Composite, Adapter, and Bridge Design Patterns Chapter 4. Structural Patterns - Proxy, Facade, Decorator, and Flyweight Design Patterns Chapter 5. Behavioral Patterns - Strategy, Chain of Responsibility, and Command Design Patterns Chapter 6. Behavioral Patterns - Template, Memento, and Interpreter Design Patterns Chapter 7. Behavioral Patterns - Visitor, State, Mediator, and Observer Design Patterns Chapter 8. Introduction to Gos Concurrency Chapter 9. Concurrency Patterns - Barrier, Future, and Pipeline Design Patterns Chapter 10. Concurrency Patterns - Workers Pool and Publish/Subscriber Design Patterns Title: Go Design Patterns Author: Mario Castro Contreras Length: 399 pages Edition: 1 Language: English Publisher: Packt Publishing Publication Date: 2017-03-06 ISBN-10: 1786466201 ISBN-13: 9781786466204
2022-12-27 17:59:18 2.2MB Go 设计模式
1
golang实现的读取excel模板批量生成word工具,内含脚本文件及32位版的exe,可直接运行
2022-12-27 17:16:51 6.58MB go golang excel word
1
Go语言实现的第三方授权登录开源库源码+项目说明.zip Go语言实现的第三方授权登录,整合QQ、微信、微信小程序、微博、抖音、支付宝等第三方平台的授权登录 【微信授权登录】 package main import ( "fmt" "github.com/geiqin/thirdparty/oauth" ) func main() { wxConf := &oauth.AuthConf{ ClientId: "your app_id", ClientSecret: "your app_secret", RedirectUrl: "http://www.geiqin.com"} wxAuth := oauth.NewAuthWxWechat(wxConf) fmt.Print(wxAuth.GetRedirectUrl("sate")) //获取第三方登录地址 wxRes, err := wxAuth.GetToken("code") userInfo, _ := wxAuth.GetUserInfo(wxRes.
2022-12-27 11:16:07 18KB go 第三方授权登录开源库源码
基于go开发的一款在线聊天web应用源码.zip
2022-12-27 09:20:55 56.98MB go语言
Go并发编程实战(第2版)
2022-12-25 10:02:59 158.23MB go golang
1
tcp-chat some source
2022-12-23 12:16:32 74KB go语言
1
在以上两篇文章中已经介绍到了 Python 爬虫和 MongoDB , 那么下面我就将爬虫爬下来的数据存到 MongoDB 中去,首先来介绍一下我们将要爬取的网站, readfree 网站,这个网站非常的好,我们只需要每天签到就可以免费下载三本书,良心网站,下面我就将该网站上的每日推荐书籍爬下来。 利用上面几篇文章介绍的方法,我们很容易的就可以在网页的源代码中寻找到书籍的姓名和书籍作者的信息。 找到之后我们复制 XPath ,然后进行提取即可。源代码如下所示 # coding=utf-8 import re import requests from lxml import etree im
2022-12-20 22:09:01 335KB go mongodb ng
1