Use Auto Gpt

Preface 🔮 In my Slack workspace, multiple AIs are integrated, including ChatGPT 4, ChatGPT 3.5, Claude… We can interact with AI for free and without restrictions through Slack. Everyone is welcome to join Slack. Here is the link: https://join.slack.com/t/kubecub/shared_invite/zt-1se0k2bae-lkYzz0_T~BYh3rjkvlcUqQ introduce I learned about Auto-GPT a long time ago. As the fastest growing project on GitHub in recent times (one of them), Auto-GPT is well known in the open source community. It has even quickly surpassed Kubernetes....

March 18, 2023 · 9 min · 1789 words · Xinwei Xiong, Me

Use Go Tools Dlv

Debugging Go project prepare: + vscode + golang 1.92 demo go mod init test In main.go file package main import ( "fmt" ) // Swap functions func swap(x, y *string) (string, string) { //XOR exchange *x, *y = *y, *x } func main() { fmt.Println("Hello, world!") //Swap functions for i := 0; i < 10; i++ { a := "a" b := "b" swap(&a, &b) fmt.Println(a, b) } } vscode generates tests with one click >gotest for package/function ::: tip They are to generate test units for packages and test units for functions....

February 24, 2023 · 17 min · 3420 words · Xinwei Xiong, Me

Participating in This Project

Participating in this Project ⚡ Introduction Welcome to our project! This project aims to establish a blockchain-based universal learning platform, promoting the widespread adoption of technology and knowledge through collective wisdom and effort. Whether you are a beginner or an experienced developer, your contributions will have a positive impact on the project. 💡 About This Project (Please Read First❗) This project is initiated by a team passionate about blockchain and software development....

February 1, 2023 · 5 min · 893 words · Xinwei Xiong, Me

Kubernetes an Article to Get Started Quickly

The main film begins~ Kubernetes is an open source project initiated by the Google team. Its goal is to manage containers across multiple hosts and is used to automatically deploy, expand and manage containerized applications. The main implementation language is the Go language. The components and architecture of Kubernetes are still relatively complex. Learn slowly~ We urgently need to organize a container~ Why kubernetes deprecated docker ::: tip Very unexpected It may seem a bit shocking to hear that Kubernetes is deprecating support for Docker as a container runtime starting with Kubernetes version 1....

April 28, 2022 · 23 min · 4813 words · Xinwei Xiong, Me