My first ASP.NET Project summary

My first ASP.NET Project summary Recently, I was busy at the end of the term and didn't have time to update my blog. Here's one I'll do for myself ASP.NET Project (equipment management system) to summarize, the page template is the master, which greatly reduces the amount of code. Finally, the source code and database of the project are atta ...

Posted by stanleyg on Thu, 25 Jun 2020 23:34:59 -0700

Wechat authentication authorization detailed code example

Wechat authentication authorization detailed code example background The company has an H5 page that doesn't display pictures after sharing to wechat, and the style is different from the sharing cards of other applications. Later it was found that the reason is that the unified sharing interface of ...

Posted by axo on Tue, 09 Jun 2020 22:29:42 -0700

Java File class, do you know what api methods are there?

If you think this article is helpful to you, welcome old fellow to praise you. Your support is the biggest driving force for my creation. Article catalog 1 foreword 2 File class 3 create a File object 4 common methods in file object 5 File usage instance 5.1 basic use of file 5.2 obtaining failed ...

Posted by Marino on Sat, 06 Jun 2020 02:08:45 -0700

From enterprise wechat robot to Xiaoai classmate, use Serverless to realize life intelligence!

Through timing trigger, an enterprise wechat robot can be customized simply and quickly. We can use it to realize small functions such as drinking water, eating reminder, etc., and also to push news, weather and even monitor alarm regularly. Use enterprise wechat robot In enterprise wechat, select Add robot: After that, we can customize the ba ...

Posted by EvilPrimate on Wed, 27 May 2020 05:58:34 -0700

String, file, stream MD5 encryption

Article catalog MD5 introduction use MD5 introduction MD5 message digest algorithm * * (English: MD5 message digest algorithm), a widely used cryptographic hash function, can generate a 128 bit (16 byte) hash value to ensure the integrity and consistency of information transmission. MD5 was designed by Ronald Lin Rives ...

Posted by Madzz on Thu, 21 May 2020 07:47:29 -0700

WeChat official account development study (1) -- official account number and server configuration

A new WeChat official account has been applied for. 1. Apply for the account of wechat public platform, and then apply for Tencent cloud recommended by him to do demo 2. After applying for centos host, get the public ip and password. After ssh login, follow the demo prompt 3. Install web.py. wget -c http://webpy.o ...

Posted by gjb79 on Mon, 27 Apr 2020 08:21:54 -0700

JS-SDK + PHP developed by WeChat to realize recording, uploading and speech recognition

First look at the effect picture: first record, after the recording is successful, add the recording to the list, click the list to play; after the recording is completed, upload the recording, and then voice recognition.   Official wechat documents https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html Implementation process ...

Posted by tolputt-craig on Fri, 17 Apr 2020 08:34:00 -0700

The way of configuration management under Android: apk signature correlation

How to generate apk signature key file # Build key method: sub='/C=CN/ST=ShangHai/L=ShangHai/O=example/OU=CM/CN=example/emailAddress=buildfarm@example.com' for key in platform shared media testkey;do ./development/tools/make_key $key "$sub" done How to re sign an apk The command is as follows: java -Xmx2048m -ja ...

Posted by SmokyBarnable on Fri, 03 Apr 2020 22:53:48 -0700

Knowledge point 031 - batch installation of. xsh files by using WIN version of python

1. Baidu goes to python's official website, downloads the software selected in the figure above, creates a new folder xshell in the local disk D of the computer, enters the xshell folder, creates a new IP.txt file, and inputs 6 servers you want to log in to 10.0.84.151 10.0.3.127 10.0.3.128 10.0.3.129 10.0.3.130 10.0.3.131 2. Open xshell, c ...

Posted by rhosk on Thu, 02 Apr 2020 02:04:28 -0700

php implementation of websocket real-time message push

1, Brief introduction of socket protocol What is WebSocket and what are its advantages WebSocket is a persistent protocol, which is relative to http non persistent. Application layer protocol For example, the life cycle of http1.0 is defined by request, that is, a request and a response. For HTTP, this session between client and server ends ...

Posted by edontee on Tue, 10 Mar 2020 03:01:08 -0700