制作Windows启动盘
制作Windows启动盘, 来源Dell
配置IIS反向代理教程
假设将域名www.helloworld.com
代理到本地的8080
端口
Node.js require 缓存
在Node环境, 使用require
多次加载模块时, 返回的都是同一个对象, 通过require.cache
可以迭代查看所有require缓存的对象.
ASP.Net 应用配置HTTP代理
在 web.config
文件新增以下配置, 即可设置代理(假设代理服务地址为 http://localhost:3210
):
如何使用命令行创建带有多个子模块的Maven项目
In this guide, we learn how to create Maven Multi-Module using Command Line with very easy steps. A multi-module project is defined by a parent POM referencing one or more sub-modules. In this example, we will create a blogger web application with different modules. Let's create a blogger as parent project and it's 3 sub-modules are blogger-core, blogger-common, blogger-web.
Real-world examples of maven multi-module projects are:
解决 Windows 环境中 git log 命令中文编码问题
在Windows系统中使用git命令,如果想正确显示UTF-8字符,需要执行以下命令设置环境变量:
set LC_ALL=C.UTF-8
$env:LC_ALL='C.UTF-8'
添加Windows开启启动程序
从Windows 95开始, 只需要将程序的快捷方式拖到Windows的“启动”文件夹即可。
Docker时区设置
下面介绍几个常用基础镜像(Alpine,Ubuntu,Debian 和 CentOS)如何设置时区。
解决 NPM 安装应用出现 ERESOLVE 错误
今天在项目里执行 npm i
出现以下错误:
Git Tags 使用简介
添加 tag
git tag your_tag_name
git tag -a your_tag_name -m "tag describe"
Docker配置镜像加速
通过修改Docker的/etc/docker/daemon.json
配置文件里的 registry-mirros
配置节,可是设置Docker的镜像服务:
国内开源镜像站点
国内开源镜像加速站点
Chromium 所有开关(flag)列表
Docusaurus 配置 GitHub Action 自动发布
原文 - Deploying to GitHub Pages
记录一下我是如何利用 GitHub Action,自动发布我的 Docusaurus(以下简称Doc) 博客的。