Mac development environment deployment
1. Install Xcode command line tools
xcode-select --install
2. Install Homebrew
Xcode Command Line Tools must be installed before installing Homebrew.
Run the following command in terminal to install homebrew:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Next, we need to do one thing so that the sta ...
Added by Das Capitolin on Sun, 01 Mar 2020 08:51:58 +0200
Cartographer installation and simulation test
Installation and configuration of cartographer
Reference Official Handbook of cartographer
According to the official Manual of cartographer, the installation of cartographer cannot be completed, mainly because the ceres library cannot be downloaded (the reason is very simple.. We all know that some fa ...
Added by neoboffins on Fri, 28 Feb 2020 13:01:30 +0200
Machine Learning Case: Boston House Price Prediction - Optimized Based on Regular Equation and Gradient Decline (with Source Code)
Boston House Price Prediction:Optimization Based on Normal Equation and Gradient Decline
Data Code Download Address
Project Link + Source Code: https://github.com/w1449550206/Boston-house-price-forecast.git
Article Directory
Boston House Price Prediction:Optimization Based on Normal Equation and G ...
Added by phpvn.org on Wed, 26 Feb 2020 03:09:25 +0200
Travis CI monitors github warehouse changes and deploys to ECS
Preface
In the previous blog, we mainly talked about how to deploy hexo to the cloud server locally, but we don't want to write an md file locally and then deploy the server once. How to deploy it automatically?The answer is Travis CI
thinking
1. Create a new public warehouse in our github warehous ...
Added by wit77 on Sun, 23 Feb 2020 08:46:21 +0200
golang | windows platform golang environment building (after passing the pit)
background
My environment
Windows 10 (detailed version doesn't matter)
go latest version
vscode editor (not IDE, IDE needs money for goland)
Guangzhou China Mobile Network
golang installation
download
The official website https://golang.org can't be opened in China. All the reasons are clear.
Do ...
Added by Crysma on Fri, 14 Feb 2020 13:40:11 +0200
How to write an application of asp.net as a websocket server
Recently, a problem with WebSockets has plagued me for a long time. One requirement is to set up a websocket service on a web site.The client establishes a connection with the server through a web page, and the server sends information to the client web page based on ip.
In fact, this requirement is not difficult, but at first you don't know mu ...
Added by markmil2002 on Fri, 14 Feb 2020 05:44:02 +0200
Repost:Common GIT Commands
Common GIT Commands
2017-12-20 10:17 by Genius Wolong, 51982 Read, 7 Comments, Collection, edit
Learn endlessly and strive for perfection!
Ten years east and ten years west, don't deceive young people into poverty!
Education represents your past, ability represents your present, and learning represents your future!
Th ...
Added by root on Wed, 12 Feb 2020 18:16:12 +0200
Gets the list of parameters passed in a Windows batch script (. bat)
I want to find the Windows batch copy, which corresponds to Bash's $@, which contains a list of all the parameters passed to the script.
Or do I have to shift?
#1 building
The method to retrieve all parameters in the script is as follows:
@ECHO off
ECHO The %~nx0 script args are...
for %%I IN (%*) DO ECHO %%I
pause
#2 building
...
Added by R_P on Wed, 12 Feb 2020 16:06:34 +0200
Jenkins+Gitlab for continuous integration
1, Jenkins and continuous integration
1) What is Jenkins?
Jenkins is an open source software project, which aims to provide an open and easy-to-use software platform and make continuous integration of software possible. Jenkins is a continuous integration tool developed based on Java, which is used to monitor continuous and repeated work. Its ...
Added by ferozsho on Tue, 11 Feb 2020 16:09:03 +0200
WSL CONDA Caffe foster RCNN CPU version installation
Catalog
Preface
Creating a virtual environment with conda
Git download fast RCNN Library
Install python dependencies
Compile configuration modification
Remove notes
Configure Python path (based on Anaconda3 python2.7)
Add hd5f library path
Compile lib
Compile Caffe
test
Preface
In this paper, ...
Added by chenggn on Mon, 10 Feb 2020 09:55:13 +0200