JavaScript foundation details
Summary
1. What is JavaScript
JS is a scripting language, an object-oriented language based on objects, or an interpretive language. Its basic structure is similar to other programming languages, such as C and VB, but it needs to be compiled before execution. It supports the development of client ...
Added by mgason on Tue, 04 Feb 2020 07:04:53 +0200
Manage Python virtual environments created by Conda
Manage Python virtual environments created by Conda
Download Installation
Download Anaconda
Install Anaconda
New Virtual Environment
Change the location of the new virtual environment.
Switching virtual environments
Adding packages to a virtual environment
Download pygame installation package
`c ...
Added by baccarak on Tue, 04 Feb 2020 04:54:03 +0200
Applet date selection component
Applet date selection component (for hotel check-in date)
Note: 13:08:00, February 3, 2020
Today, the weather is overcast. Affected by the new coronavirus, the company postponed work and was bored at home. Write down the first blog, sort out the components written before, which will be used in the f ...
Added by RadiationHazard on Mon, 03 Feb 2020 08:45:07 +0200
Raspberry pie Python 3.7 voice assistant Development Notes
Raspberry pie Python 3.7 voice assistant development notes (5)
Then there's the chat module, the Turing Robot module in the Big Guy post, with little change.
def Turing(text_words=""):
req = {
"reqType":0,
"perception": {
"inputText": {
"text": text_words
},
...
Added by ricmch on Mon, 03 Feb 2020 05:36:33 +0200
REST / SOAP endpoint of WCF service
I have one. WCF Service, I want to use it as REST full services and SOAP Service disclosure. Has anyone done such a thing before?
#1 building
MSDN now seems to have an article:
https://msdn.microsoft.com/en-us/library/bb412196(v=vs.110).aspx
Introduction:
By default, Windows Communica ...
Added by ajlisowski on Sat, 01 Feb 2020 08:02:47 +0200
Web service network request in Android
There are many articles about using web service in Android, here is just a brief introduction.
Here you need to first introduce the package of webservice (click download: Ksoap2.jar ), why soap? It's a long story. SOAP Protocol directly asks Du Niang.
The next step is to use:
First, there should be a url like this (http://ip ...
Added by jc94062 on Fri, 31 Jan 2020 06:19:55 +0200
Alicloud Internet of things platform custom Topic script parsing function demonstration
Summary
Before, all the customized topics on the Internet of things platform were used for direct transmission of messages, instead of data script analysis similar to the model of things. The latest self defined Topic script parsing function of the platform. The device reports data through the self-defined Topic with the parsing mark (? sn=defa ...
Added by ojeffery on Thu, 30 Jan 2020 06:41:58 +0200
Use BeetleX.NetBenchmark to test TCP,HTTP, and Websocket services
NetBenchmark is an open source component tailored for network service pressure testing, which provides TCP,HTTP, and Web ocket stress testing infrastructure; in order to better meet business requirements, components do not provide a way to configure the source of UI information (after all, this can only be a limited test), but rather users deve ...
Added by jmugambi on Tue, 28 Jan 2020 05:40:38 +0200
Introduction to Spring Boot Starters
Article Directory
Web Start
Test Starter
Data JPA Starter
Mail Starter
conclusion
Dependencies are a very important aspect of any complex project that requires attention and information. Important as they are, we don't need to spend too much time on them, because dependencies are just a framework. ...
Added by haironfire on Thu, 23 Jan 2020 03:04:14 +0200
[code Chapter] build your own golang framework step by step from scratch
The last article mentioned that the configuration and log have been initialized, and then the database and redis have been initialized.
Initialize database
I choose xorm for database orm. First, add the corresponding database configuration in config.json and config.go.config.json:
"db_config": {
"db_host": "127.0.0.1",
"db_port": "33 ...
Added by kendallkamikaze on Wed, 22 Jan 2020 17:44:42 +0200