Ora2Pg tool migrates Oracle to openGauss

hello! Hello everyone, I am [IT Bond], known as jeames007 in the world. I have more than 10 years of experience in DBA and big data work. A highly motivated [blogger in the field of big data]! Member of China DBA Alliance (ACDU), currently serving the industrial Internet Specialized in mainstream Oracle, MySQL, PG, Gaussian […]

When I tried to migrate the old project Webpack to Vite, I found that it was not so fragrant.

If you are interested in front-end eight-part essays, you can pay attention to the Gongzhong account: Code Farmer Supply Station, there is always the useful information you want. Background Recently, I made a collection of pain points and optimizable items in the front-end development process. Among them, the words “time-consuming to build and slow project […]

33 | Should I migrate to HTTP/2?

This lecture is the last lecture of “Flying”, and all the knowledge about HTTP is almost finished. We have seen the new HTTP/2 and HTTP/3 protocols before, and understood their characteristics and working principles. If we contact the HTTPS in the “Security Chapter” a few days ago, you may ask questions: “I just spent a […]

29 | Should I migrate to HTTPS?

Today is the last lecture of “Security”. We have learned most of the knowledge related to HTTPS and TLS. However, you may still have some confusion: “HTTPS is so complicated. Should I migrate to HTTPS? What benefits can it bring? How should I implement the migration specifically?” These questions are not only for you, but […]

Migrate third-party libraries to OpenHarmony applications

Third-party libraries refer to services or modules provided by other companies or organizations, such as the common open source OpenCV and libcurl libraries. Migrating third-party libraries to OpenHarmony will contribute to the ecological construction of the system. This article first takes the third-party library curl as an example to give the process of porting curl […]

Element-UI + Vue2 Migrate from Vue-cli to Vite

One: Delete related dependencies in the package.json file 1: Delete vue-cli related dependencies “@vue/cli-plugin-babel”: “~4.5.0”, “@vue/cli-plugin-eslint”: “~4.5.0”, “@vue/cli-service”: “~4.5.0”, 2: Delete babel related dependencies “babel-eslint”: “^10.1.0”, “babel-plugin-component”: “^1.1.1”, “babel-plugin-lodash”: “^3.3.4”, “@babel/plugin-syntax-dynamic-import”: “^7.8.3”, “@vue/babel-helper-vue-jsx-merge-props”: “^1.2.1”, “@vue/babel-preset-jsx”: “^1.2.4”, 3: Delete webpack related dependencies “hard-source-webpack-plugin”: “^0.13.1”, “compression-webpack-plugin”: “^6.1.1”, “lodash-webpack-plugin”: “^0.11.6”, “webpack-bundle-analyzer”: “^4.4.2” “webpack-cli”: “^4.3.0” Two: Install pnpm pnpm […]

Migrate kubelet, docker and containerd working directories

Article directory Problem background migrate Docker Stop the Docker service Change setting Move files Restart the Docker service containerd Out of service Change setting Move files Restart service kubelet (encountered problems to be solved) Out of service Change setting Move files (encounter problems to be solved) Restart service version used Problem background The working directories […]

Offline reasoning project migrated to mindspore (3) – code migration

Offline reasoning project migrated to mindspore (3) – code migration Links: Previous article: Offline inference project migrated to mindspore (2) – model loading 5 Code migration In the previous article, the model migration part has been completed. Of course, the entire migration project is not over yet. This article mainly focuses on migrating the code […]

Teach you step by step how to migrate from webpack to vite in just 6 steps~!

Article directory Comparison of startup time Steps 1. Modify index.html 2. Modify package.json 3. Reinstall dependencies 4. Create vite.config.js 5. Modify require import 6. Modify environment variable judgment Advantages of Vite Vite Development Quick Start Comparison of startup time Webpack takes about 23 seconds to start: Vite takes about 0.5s to start: The advantages are […]