vscode voice annotation to enrich information

vscode voice annotation to enrich information (Part 2)prefaceThe last article in this series is mainly about recording audio & audio file storage. At that time, I was in no mood for voice annotation for a week because of a bug in the recording.1, MP3 file storage locationVoice notes usage scenarioUse voice notes for individual items.Multipl ...

Added by isign4jc on Wed, 23 Feb 2022 03:45:56 +0200

JavaScript and node JS brief introduction

JavaScript tutorial Introduction to JavaScript JavaScript is a high-level programming language, which is executed by interpretation. It is a dynamic type, object-oriented (prototype based) interpretation language. JavaScript is a language based on prototype and function first. It is a multi paradigm language. It supports object-oriented progr ...

Added by samrat_php on Sun, 20 Feb 2022 13:35:25 +0200

nodeJS reading notes

background knowledge node.js founder Ryan Dahl. 2009.2 create a Web server and provide a library in your blog for the first time. The initial version was released in GitHub in May. event driven After registering an event, wait for the event to trigger execution without relying on its own order of occurrence. With limited resour ...

Added by panoramical on Sun, 20 Feb 2022 13:02:25 +0200

vscode voice annotation to enrich information

vscode voice annotation to enrich information (Part 1)In this series, I will share the whole process of making my "voice annotation" plug-in, or is that sentence "process" more interesting than "result".Usage displayDownload: voice annotationConfigure + create voice file storage addressRight click to call out 'reco ...

Added by jonathanellis on Sun, 20 Feb 2022 11:47:52 +0200

nodeJS Series II http module; Create the most basic web server; Modular development; Module scope;

----------------------------http module---------------------------- 4.1 what is the http module In the network node, the computer responsible for consuming resources is called the client; The computer responsible for providing network resources is called a server. The http module is node JS official module for creating web server. http provi ...

Added by geetakhurana on Sat, 19 Feb 2022 21:34:00 +0200

laf.js - open source cloud development framework (README.md)

laf.js cloud development frameworkOnline documentation: https://docs.lafyun.com/Online experience: https://www.lafyun.com/introducelaf.js is a set of out of the box, complete, open source, cloud development framework based on serverless mode and js programming.With the familiar js, you can easily handle the overall business of the front and bac ...

Added by mbdonner on Sat, 19 Feb 2022 13:12:52 +0200

Node.js source code analysis - start with the main function

title: Node.js source code analysis - start with the main functiondate: 2018-11-27 21:30:15tags:- Node.js - Node.js Source code analysis - Source code analysiscategories:- Node.js Source code analysis This article was first published on the personal website four years ago, and is now migrated to this site for re posting. The original link is: h ...

Added by GaryE on Fri, 18 Feb 2022 14:38:17 +0200

Advanced series of large front end -- realize your own scaffold from zero

preface With the increasing complexity of front-end development, a large number of js frameworks have emerged, and almost every one is equipped with supporting construction tools, such as Vue cli, create react AP, @ angular/cli, @ nestjs/cli and so on. These scaffolds can quickly help developers initialize configuration, build directory struct ...

Added by adige on Fri, 18 Feb 2022 03:09:54 +0200

nodejs01 - installation and use, server and client, commonjs specification, use of fs module (file operation and directory operation), stream and buffer

Installation and use of nodejs Server and client commonjs specification Use of fs module (file operation and directory operation) stream buffer // Node.js introduction Node.js was born in 2009, node JS is written in C + + language and is a JavaScript running environment. Node.js is a JavaScript running environment based on Chrome V8 engine, ...

Added by smeagal on Thu, 17 Feb 2022 21:39:51 +0200

koa onion model

I What is an onion model? Look first 🌰 const Koa = require('koa'); const app = new Koa(); const PORT = 3000; // #1 app.use(async (ctx, next)=>{ console.log(1) await next(); //Pause the current program console.log(1) }); // #2 app.use(async (ctx, next) => { console.log(2) await next(); console.log(2) }) app.us ...

Added by fabby on Tue, 15 Feb 2022 09:31:47 +0200