Tag:Newly build
-
Time:2021-3-2
Set the public key, you can upload and download adoptgit pull&&git push&&git clone 1. Two lines of command Step 0 preparation Create a new GitHub repository (repositories), any repository name In the quick settings, SSH is the default (do not choose HTTPS, pit, each time you need to enter a password, inconvenient, scold you to […]
-
Time:2021-3-1
The goal of this time is to use typescript to implement a hello world It includes the detailed explanation of webpack configuration items (there are comments in each JS file in the build directory)Mainly build a webpack + typescript environment, the later code will be developed based on this project Gitee project address 1、 Prepare […]
-
Time:2021-3-1
Article introduction I always want to develop or find an open source software. Its function is like looking at the cloud. It is used to build a set of its own document management system, centralize the management of its ordinary things, and form a manual. So found mindoc such a good document management system software. […]
-
Time:2021-2-27
Back end development always needs to ensure that the faster the data returns, the better. However, database query is just that fast. Optimizing SQL and database configuration are not the most reasonable methods. So today we look at caching. Cache When it comes to caching, we always think of redis for the first time, but […]
-
Time:2021-2-27
When I started to develop the framework, I wanted to use PHP’s auto loading function to load custom classes, but later I found that It’s too much trouble to write load function after there are too many classes Not in line with new technology Ha ha, so I rewrote the code with composer. By the […]
-
Time:2021-2-24
Title Requirements: Thinking: Open a dictionary to remove duplicate words Open a new linked list to return Traverse the linked list. If the current value is already in the dictionary, traverse the next one directly. If it is not in the dictionary, add the value to the dictionary and add it to the new linked […]
-
Time:2021-2-23
Introduction to elasticsearch (3) Elasticsearch.Net &Nest as elasticsearch client GitHub warehouse https://github.com/elastic/elasticsearch-net choiceElasticsearch.NetAs a client Connection mode var node = new Uri(“http://myserver:9200”); var config = new ConnectionConfiguration(node); var client = new ElasticLowLevelClient(config); var myJson = @”{ “”hello”” : “”world”” }”; client.Index(“myindex”, “1”, myJson); var myJson = new { hello = “world” }; client.Index(“myindex”, “1”, PostData.Serializable(myJson)); […]
-
Time:2021-2-23
phenomenon When installing git, SVN and other tools through the scoop command, the right-click shortcut options will be lost Repair method Win key + R to open the operation window Enter regedit to open the registry In the registry editor interface HKEY_ CLASSES_ If there is no shell folder in the background directory, a new […]
-
Time:2021-2-14
Build Vue project The project starts with Vue cli, including Vue cli + vue3.0 + vuex + Vue router + Axios+ Element UI), including custom methods, etc. Layman will present the detailed process in this article.I put the new project into my library, and I can do it by myself if I need ithttps://github.com/webwjg/newVue.git 1. […]
-
Time:2021-2-14
preface Spring MVC is a lightweight web framework that implements web MVC design pattern. Like the previous struts 2 framework, it belongs to MVC framework, because its use and performance are better than struts 2, so spring MVC is the mainstream MVC framework. First, briefly summarize the main features of spring MVC It is flexible […]
-
Time:2021-2-9
Picture bitcoin Part 3: how to load a configuration file? ====== Note: for the sake of brevity, this article only deals with some key codes and structures. Recommended download source code, see the detailed implementation. 1.1 INTRODUCTION BTCDJust run the commandbtcd –configfile ./btcd.confAll configuration is done. How is it done? Today’s goal is to put […]
-
Time:2021-2-5
GitHub is a hosting platform for open source and private software projects. It only supports git as the only version library format for hosting. I believe everyone who studies the front end is familiar with GIT and GitHub, but for those who have just come into contact with the front end, they will feel very […]