[Environment] go mod--a love-hate package management tool

Why do we need package management Python has pip, Nodejs has npm.Is there a package management tool in other languages, so go needs it?Of course not, let's look at the following code: import ( "github.com/TomatoMr/something" ) This is how go references packages, which is obviously a third-party package, so how exactly is it found on our m ...

Posted by bdbush on Tue, 14 Jan 2020 09:18:17 -0800

Source reading of ONNX Runtime: overview of model reasoning process

brief introduction The ONNX Runtime is an engine for ONNX(Open Neural Network Exchange) model reasoning. Microsoft, together with Facebook and other companies, launched an in-depth learning and machine learning model format standard - ONNX in 2017. Along the way, it provides an engine dedicated to ONN ...

Posted by Replika on Tue, 14 Jan 2020 03:50:57 -0800

Using Zxing to scan QR code and generate QR code for front camera in Android

Now the use of QR code is more and more widely, and it can be seen almost everywhere, and almost all of the company's related projects are related to QR code scanning, so summarize your own experience of using QR code, and always feel that something should be done to record your growth, so that your gro ...

Posted by samirk on Tue, 14 Jan 2020 03:08:04 -0800

Download of python 3.x crawler Jinjiang novel (use cookie to get VIP chapter)

Preface As a girl, I like to read novels in Jinjiang. However, the website of Jinjiang is very magical. The article says that we can only write a crawler program to save novels At first, I chose the format of txt to save the novel. Later, I decided to save the novel in the format of epub. Because I ...

Posted by maxic0 on Mon, 13 Jan 2020 07:48:52 -0800

Fastdfs distributed file system installation configuration ubuntu

** Installation and configuration of Fastdfs in Ubuntu environment ** FastDFS [1]: Contents: I. Preface 2, FastDFS introduction 3, FastDFS download and installation 4, Configure tracker and storage Five, test Six, summary1, Foreword: This paper implements the installation and test of FastDFS System en ...

Posted by JonathanS on Mon, 13 Jan 2020 04:49:29 -0800

Simple use of AspectJ in AOP

Personal blog http://www.milovetingting.cn Simple use of AspectJ in AOP Definition of AOP AOP is the abbreviation of Aspect Oriented Programming, which means: a technology to realize the unified maintenance of program functions through precompiling and dynamic agent during operation. The above definition of AOP is quoted from Baidu Encyclope ...

Posted by Delcypher on Mon, 13 Jan 2020 02:43:50 -0800

Generating a hash from a string in a Java script

I need to convert the string to some form of hash. Is this possible in JavaScript? I don't use the server-side language, so I can't do that. #1 building edit According to my jsperf test, the acceptable answer is actually faster: http ://jsperf.com/hashcodelordvlad original If anyone is interested, this is an improved (faster) ...

Posted by pnj on Sun, 12 Jan 2020 23:54:34 -0800

Practical test of video high level feature classification

meet Last article: https://blog.csdn.net/SPESEG/article/details/103875916 Use the jitter video data to test our video and see how it works. Strategy: randomly select 20-40 frames, stack all frames, select the frames according to the index, then enter the integration V3 model as a whole, and then en ...

Posted by Ben5on on Sun, 12 Jan 2020 23:44:17 -0800

Introduction to Tablestore - UpdateRow interface details

The introduction manual series of table store mainly introduces various functional interfaces and applicable scenarios of table store to help customers understand and use table store. This paper introduces the UpdateRow interface of table store, including its parameters, function examples, usage scenarios, etc. Interface Overview The UpdateRow ...

Posted by crwtrue on Sun, 12 Jan 2020 22:41:59 -0800

Benchmarking for MySQL

What is a benchmark When we optimize the database, we only know if the optimization is effective by measuring the performance of the system. This measurement is benchmarking.Benchmark tests are defined as follows: Benchmarking is the activity of measuring and evaluating software performance indicators to establish a performance benchmark at a ...

Posted by dsdsdsdsd on Sun, 12 Jan 2020 08:50:37 -0800