Add confusion and precautions before Android application release

Code confusion Java code is confused with Native code, resource file drawable, xml, etc. 1. Functions: code compression, code obfuscation, resource compression and other optimization processes; Code compression: obfuscation process removes unused classes, class members, methods and properties from the main project and depend ...

Added by satya61229 on Thu, 02 Jan 2020 20:27:13 +0200

Redis cluster command line deployment tool

Preparation before use: 1) Configure the public redis.conf file unrelated to the port, and place it in the same directory as the tool 2) Configure the PORT related template redis-PORT.conf file, and put it in the same directory as the tool (PORT will be replaced with specific PORT number during deployment) 3) Configure the node ...

Added by tony.j.jackson@o2.co.uk on Thu, 02 Jan 2020 08:13:53 +0200

Android prompt dialog lightweight prompt box, loading, success, failure, warning, etc

Android-PromptDialog Project address: limxing/Android-PromptDialog  Introduction: lightweight prompt box, loading, success, failure, warning, etc., as well as dialog box, non composite frame, customized ImageView implementation, thank you star Prompt box - loading - dialog box - bottom option box - Homepage advertisement- P ...

Added by twigletmac on Thu, 02 Jan 2020 01:58:42 +0200

Three level linkage effect of provincial and urban areas, using city picker

City picker can help us to complete the three-level linkage effect of provincial and urban areas conveniently and quickly. It is simple and fast. We can download the plug-in on the official website: http://tshi0912.github.io/city-picker/ Download this: city-picker-master.zip After decompression: Copy the contents of dist to ...

Added by L0j1k on Thu, 02 Jan 2020 00:33:11 +0200

Spring cloud war package deployment causes the service not registered to Nacos normally

Recently, a spring boot project has been connected to microservice, using spring boot 2.1.9.release and spring cloud greenwich.sr3. Local tests are normal, but after going online, there is a situation like this: There is no statement like Nacos registry in the log, and there is no exception information, just like there is no microservice config ...

Added by csteff24 on Mon, 30 Dec 2019 14:49:19 +0200

canvas realizes the effect of spider web dynamic background

Let's talk about the effect first (funny) https://jc1144096387.github.io/canvas_nest/ The first time I saw this special effect, I was shocked. I played it silently for a few minutes = =. Unfortunately, that website only has compressed code, and the background special effect of search connection can only find similar ones. The ...

Added by marco839 on Fri, 27 Dec 2019 18:15:33 +0200

Super easy to parse JSON package GJSON with Golang

Basic overview People who have used dynamic languages believe that it is very easy to parse JSON. You only need a few lines of code to get the parsed JSON object. For example, Python parses JSON as follows result = {"name": "Bob", "age": 18} print(result["name"]) // "Bob" The simple data structure in Golang language can use map[string] ...

Added by youropensource on Fri, 27 Dec 2019 10:58:09 +0200

swift carousel + network request + custom cell

Paging controller 1. Paging controller Import third party PagingMenuController Third party links: https://github.com/kitasuke/PagingMenuController Import links using third-party methods: http://www.hangge.com/blog/cache/detail_1656.html Using PagingMenuController ViewController.m ViewController1,ViewController2,ViewController3,V ...

Added by R4nk3d on Fri, 27 Dec 2019 00:47:19 +0200

What is the smart pointer of c/c + + standard library

What is the smart pointer of standard library 1, Why is there a smart pointer??? c + + programmers need to deal with their own dynamic development of memory, once they forget to release, memory will leak. Smart pointers can help programmers "free up" their own memory. 2, Where do you see intelligence??? int *p = new int(11); auto_ptr& ...

Added by akillez on Thu, 26 Dec 2019 00:11:02 +0200

Using canvas to realize the special effect of scraping card

Canvas is widely used. It can not only be used for drawing, making tables with ECharts, but also for playing games. But this time, I will share an application of using canvas to realize the special effect of scraping card If you don't know the basics of canvas, please read my blog The beginning and introduction of canvas Here's ...

Added by DBookatay on Wed, 18 Dec 2019 22:32:32 +0200