My Tools
Column Concator This tool is used to concat text by columns. It’s great for generating similar lines that only have a few different fields. It can split yo… 阅读更多 »My Tools
Column Concator This tool is used to concat text by columns. It’s great for generating similar lines that only have a few different fields. It can split yo… 阅读更多 »My Tools
Update packages: npm install -g npm-check-updates ncu -u Delete node_modules folder npm install Rollback webpack: npm remove webpack npm install webpack@3.… 阅读更多 »Few things to do to fix ng build –prod issues
Error: The code is generated using ng new command, not modified. ng build works well. The reason is that the package file generated with ng new is not usin… 阅读更多 »ng build –prod not working
/usr/local/bin/az: line 6: python3: command not found Haven't used az command for a while. I recently migrated from azure container instance to azure l… 阅读更多 »az command stop working
One of the best things of using azure file is that you can backup so easily. Before you doing a upgrade of wordpress, it's a good idea to backup your f… 阅读更多 »Backup wordpress before updating
I have a website running in azure container instance. I noticed that container instance is not cheaper than a linux VM. I would like to migrate to linux VM… 阅读更多 »Use Azure file as docker volumn on Azure linux VM
https://hub.docker.com/r/fennng/fiddler-orchestra/ This .net core version of fiddler which can be run in a docker container. It can also connect to Fiddl… 阅读更多 »Fiddler-Orchestra in docker
JetBrains dotPeek is a really good tool to view code in a dll. I used it to find out that Fiddler Orchestra is hardcode to listen to localhost only. And… 阅读更多 »JetBrains dotPeek
To build a docker image, you only need a single docker file Dockerfile From microsoft/aspnetcore:2.0 RUN apt-get update && DEBIAN_FRONTEND=nonint… 阅读更多 »Build and publish a docker image to docker hub
When we build to docker container using Visual studio, Visual studio will create a new network for the .net core app. You can also setup db in the yml fil… 阅读更多 »Access DB from .Net Core Docker build