High quality picture interface
The blogger intended to build a navigation page for the service he mounted on vps, so he wrote a static page and posted several hyperlinks
Later, I felt it was not beautiful, so I put some pictures
The pictures stored in the server are tired of reading after several times, so I found an api for high-quality pictures, and every tim ...
Posted by MNS on Mon, 30 Dec 2019 23:18:41 -0800
Learn from me about Spring Cloud AlibabaNacos service registration and discovery
Service registration and discovery, service discovery is mainly used to achieve automatic registration and discovery of individual micro-service instances. It is the core of micro-service governance. To learn Spring Cloud Alibaba, first of all, you need to understand the service registration and discovery component in the framework, Nacos.
1. S ...
Posted by Grimloch on Tue, 24 Dec 2019 17:55:27 -0800
Can I specify multiple users for myself in. gitconfig?
At ~ /. gitconfig, I have my personal email address at [user], because this is the address I want to use for the Github repository.
However, I recently started working with GIT. My company's git repo allows me to submit, but when it posts new changesets, it says they come from anonymous users because it doesn't recognize my. gitconfig email ...
Posted by raven_web on Tue, 24 Dec 2019 01:52:29 -0800
Front end - GitHub easy homepage production
The static style effect of landing page and home page after landing has been done, without hyperlinks or clicking effect,
First on the renderings:
Then the green login button can jump to the home page (without checking the account password, you can jump if it is empty):
The main purpose is to practice the layout and s ...
Posted by GaryE on Thu, 19 Dec 2019 09:59:46 -0800
The way of springboot for beginners and the construction of background restfull API
0. Preface
In the development system, the front and back ends are separated, and the back end generally returns RESTfull API. The front end calls API to build UI, which is separated from each other and completely independent from each other;
In the background API, we generally return the result code, prompt information and data, as shown in t ...
Posted by sssphp on Wed, 18 Dec 2019 14:48:56 -0800
Android studio 3.2 version custom apk name compilation exception
When the project is upgraded from version 3.x to version 3.2, the original code of custom output apk name is invalid, and the new writing method is changed to
//This script is written in a project level gradle file
// AS3.2 version / / output apk custom name
android {
applicationVariants.all { variant ->
...
Posted by djmc48 on Wed, 18 Dec 2019 08:59:34 -0800
Dynamically defining variables (process control statements) in jenkins pipeline
Scenario: define different code warehouse addresses and branches based on job names
Solution: use script to include the whole code download process
The conventional way of writing is as follows:
pipeline
{
agent { label 'test' }
stages
{
stage('DownloadCode')
{
steps
{
...
Posted by developer on Mon, 16 Dec 2019 12:01:52 -0800
Git Push Error'[[Remote Deny] Host - > Host (Branch currently checked out)''
Yesterday, I published a post about how to Git Repository from one of my computers Problem cloning to another computer , How do I "git clone" from another computer? .
Now I can successfully clone the Git repository from the source (192.168.1.2) to the target (192.168.1.1).
However, when I was on a file, git commit-a-m "t ...
Posted by hennety on Sat, 14 Dec 2019 18:53:33 -0800
Go basic learning record - write Web application - Some Thoughts on Routing and program startup
In recent years, I have reconsidered my Web application. First of all, in the main.go file of program startup, there is not too much problem in the temporary route adding. However, according to the previous project development experience, if this system is shared with others, then when making a large project, there will be many routes added, an ...
Posted by TechGnome on Sat, 14 Dec 2019 09:54:08 -0800
Install alirocketmq version from scratch on CentOS7: release-4.0.1
Install alirocketmq version from scratch on CentOS7: release-4.0.1 [pro test ha ha]
Install git
# Update package
$ yum update
# Install git
$ yum install git
# Verify git installation success
$ git --version
# So git can be installed successfully
Install wget dependency package
# Update package
$ yum install wget
# You can ...
Posted by SCRUBBIE1 on Thu, 12 Dec 2019 08:46:41 -0800