commonJs+AMD+CMD+ES6 modularization

Write the directory title here nodejs CommonJS Export of modules Import of modules The problem with browser-side modularity AMD CMD ES6 import and export Basic export and import of modules Default import and export nodejs Install nodejs Official website address: https://nodejs.org/zh-cn/ The browser runs the html page and loads the js introduced through the script […]

[Comprehensive explanation of Linux commands] 137.firewall-cmd: New firewall software on Linux

Article directory firewall-cmd Additional information Command format General options status options Log options Example Disguise IP port forwarding Port forwarding can also be used for traffic distribution Learn `python` from scratch firewall-cmd New firewall software on Linux, a tool similar to iptables Supplementary instructions firewall-cmd is the character interface management tool of firewalld. firewalld is […]

Error: Command failed: C:\windows\system32\cmd.exe /s /c

1. Scenario Encountered when installing front-end projects, I have tried cnpm install, npm install, and even fanqiang’s method, but still got an error PS D:\Users\Administrator\IdeaProjects\web\src\web\control> npm install > [email protected] postinstall D:\Users\Administrator\IdeaProjects\web\src\web\control\\ ode_modules\gifsicle >nodelib/install.js connect ETIMEDOUT 192.168.0.1:443 gifsicle pre-build test failed compiling from source Error: Command failed: C:\Windows\system32\cmd.exe /s /c “autoreconf -ivf” ‘autoreconf’ е ? at […]

The android system and adb execute multiple consecutive cmd commands

android system android_C code development Android Skia2D engine library deeply optimized algorithm, perfect rendering system and refined code framework Android graphics display system AndroidlibJpeg library decoding OpenCL optimization adb and other tools adb download address https://dl.google.com/android/repository/platform-tools-latest-linux.zip https://dl.google.com/android/repository/platform-tools_r29.0.2-linux.zip https://dl.google.com/android/repository/platform-tools_r26.0.2-linux.zip https://dl.google.com/android/repository/platform-tools_r24.0.2-linux.zip https://dl.google.com/android/repository/platform-tools_r16.0.1-linux.zip * Android SDK LINUX version address: https://dl.google.com/android/android-sdk_r29.0.2-linux.tgz tar -zxvf decompression, including adb tools, etc. * […]

Rockchip customizes vendorstorages data and then u-boot passes the data to the kernel through cmdline

Recently I have been thinking about some interesting functions, such as customizing logos, dynamically updating screen parameters, dynamically switching dts and other functions (although I have done it on the mtk platform before, but the platform is different and it has been a long time ago), so I have been researching it for the past […]

Terminal (cmd) DOS commands

1. Start->Run->CMD 2. Enter a certain disk, directly drive letter code: such as D:, do not use the CD command to switch 3. Enter the folder below the root directory cd folder path. For example, if I want to enter E:/Program Files/PHP, just Enter E: Enter Note: You cannot run CD E:/Program Files/PHP when you […]

Blue Whale 7.0-CMDB–MongoDB backup and synchronization

This article is from Tencent Blue Whale Zhiyun community user: fadwalk Foreword Blue Whale’s configuration platform (CMDB) uses Mongodb as data storage at the bottom layer. Its advantages needless to say, I believe those who have used it will find the design very flexible and convenient. However, the container version of Mongo deployed by Blue […]

nginx obtains conf information through ngx_get_conf, and ngx_set_worker_processes is called through cmd->set(cf, cmd, conf)

1. Get conf information: ccf = (ngx_core_conf_t *) ngx_get_conf(cycle->conf_ctx, ngx_core_module); The prototype of ngx_get_conf is: #define ngx_get_conf(conf_ctx, module) conf_ctx[module. index] So module.index is actually ngx_core_module.NGX_MODULE_V1.NGX_MODULE_UNSET_INDEX ngx_module_t ngx_core_module = { NGX_MODULE_V1, &ngx_core_module_ctx, /* module context / ngx_core_commands, / module directives / NGX_CORE_MODULE, / module type / NULL, // init master / NULL, // init module / […]