Learn webpack again -- configuration files implement different export types

The most basic configuration of webpack is to export a static object, but because our business is complex, we often need to dynamically configure webpack to build object code. Fortunately, webpack provides us with support for dynamically configuring webpack files. The following describes the various configuration types of webpack. 1. Export ...

Added by liro on Tue, 11 Jan 2022 04:22:07 +0200

002 - Code of the first kernel module

What is a kernel module Kernel module can be simply understood as a program running in kernel space. Like user space applications, it has a fixed pattern. First kernel module Let's start with a standard application HelloWorld.c #include "stdio.h" int main(int argc, char** argv) { printf("Hello World!"); } The above code will not be stra ...

Added by menelaus8888 on Sat, 23 Oct 2021 12:30:26 +0300