Web 3.0: A Lie of "Cyber ​​Capitalism"

Click on the blue font " Tencent Entrepreneurship " above and choose to follow the official account You can control everything in the venture capital circle Tencent Venture | ID: qqchuangye "The 'cyber-born' of ignorant capitalism." The source of this article is "pinwancool" (ID: pinwancool), reproduced by Tencent Ventures with permission. Author / Guo Haiwei Cover source / Visual China On March 4, 2021, a registered account of the BurntFinance blockchain team burned a painting artwork "Moron" by British artist Bansky in a live broadcast....

August 1, 2022

When does golang use pointer methods?

" Pointer method usage scenarios " In the use of golang structures, we often use value methods and pointer methods. What are the usage scenarios of these two methods? Let's first look at a piece of code: func main() { cat := New("little pig", "American Shorthair", "cat") cat.SetName("monster") // (&cat).SetName("monster") fmt.Printf("The cat: %s\n", cat) cat.SetNameOfCopy("little pig") fmt.Printf("The cat: %s\n", cat)}type Cat struct { name string // 名字。 scientificName string // 学名。 category string // 动物学基本分类。}//构造一个cat实例func New(name, scientificName, category string) Cat { return Cat{ name: name, scientificName: scientificName, category: category, }}//传指针设置cat名字func (cat *Cat) SetName(name string) { cat....

August 1, 2022

"C++ successor" hits GitHub trend list No. 1, father of C++: insufficient specification to evaluate

Alex from the concave temple qubit | public account QbitAI At this year's CPP North C++ conference, Google announced a new programming language , Carbon , which it said would be "the successor to C++. " Google open sourced it on GitHub. Although the language is still in the experimental stage, it has quickly attracted many programmers to come to watch, and it once ranked first on the GitHub trend list , and has now received 21....

July 31, 2022

[Blender must-install plugin] Parametric mesh Wonder Mesh

In blender, when we create a new object, the adjustment parameters of this object will appear in the lower left corner of the screen. However, once we click somewhere else, or move and zoom the object, this parameter will never appear again, which is quite anti-human. The plugin we are going to talk about today, [wonder mesh], is designed to solve this problem. First, we install the plugin as usual....

July 31, 2022

[Practical software] ​GoLand 2022 installation tutorial

Hello everyone! Click the blue word in the upper left corner to follow the official account to get more free resources. In addition, in order to prevent missing the wonderful content of the official account, I hope you can use your little hands to " set the official account as a star ⭐" , thank you very much~~ software download Please see the end of the article for the download link...

July 31, 2022

[Python Tutorial] Refuse to face the sky, and the program output should be beautiful! rich module (1)

click on blue Follow us Pay attention to the official account, reply " python data " in the background, and get the python data package. Hello everyone, welcome to the Python introductory tutorial produced by Idea Lab. I am the head of the room. On our way to learn programming, the one that accompanies us the longest is the interpreter. And we often use the print function to let the interpreter print out some information to see how the program is running, and the information about the abnormal operation of the program will also be printed out....

July 31, 2022

【Industry information】GoLand 2022.2 released

GoLand 2022.2 go.work brings new features to Generics and also adds support for fuzzing, SQL statements are now auto-detected, and comprehensive code assistance for them. GoLand now supports WebSocket connections and can send GraphQL queries over HTTP and WebSocket protocols. Generics any Intent action to convert empty interface to GoLand's new check can report empty interface usage as a type or type constraint. Another intent action is to interface{} replace with any....

July 31, 2022

Design and implementation of a rental data analysis and display system based on Python

click on blue Follow us opening introduction Hello everyone, this is Tianxing IT Science and Technology Museum, I am your curator! This project is " Design and Implementation of Python-based Rental Data Analysis and Display System ". The corresponding video tutorials have been uploaded to video platforms such as Station B and Xigua. You can copy the article title keywords and go to the video platform to search and watch....

July 31, 2022

Four Uncommon Tricks in Python

01 introduction In the programming world, everyone hopes that they can write the best code in the world. In fact, the best code often needs to have the best code quality. Diligence can make up for clumsiness, and being good at summarizing can often quickly improve everyone's programming skills. This article focuses on briefly explaining four Python skills that are not often used in daily life, hoping to improve your work efficiency when coding....

July 31, 2022

GitHub announces the availability of Projects to support agile development

Introduction: GitHub announced today that the Projects feature available in GitHub Issues will be generally available. This new release will connect directly with the work the team is doing on GitHub. Mario Rodriguez, VP of Product at GitHub, described it this way on his official blog: “The new GitHub Projects enables user development plans to connect directly to the work the team is doing in GitHub, with the flexibility to adapt to the relevant items the team needs....

July 31, 2022