09 2024 档案
摘要:在 Visual Studio Code (VSCode) 中,可以使用 nodemon 来监听代码的变动并自动重启 Node.js 服务器。nodemon 是一个工具,它可以监控文件的变化并在检测到变化时自动重启 Node.js 应用程序。 安装 nodemon 你需要在项目中安装 nodemon
阅读全文
摘要:将 div1 设置为Grid容器,并使用 place-items 属性来居中。 div1 { display: grid; place-items: center; height: 300px; /* 假设的高度 */ } div2 { width: 100px; height: 100px; }
阅读全文
摘要:水豚鼠标助手 用于做屏幕指导比较方便,鼠标换肤,屏幕画笔 https://shuitunapp.com/?from=txc //官网下载 pixpin下载地址 这是一款好用的屏幕截图,贴图,gif制作 小工具 https://pixpinapp.com/
阅读全文
摘要:http://t.csdnimg.cn/18URX 原文链接,这个csdn作者描写的很详细
阅读全文
摘要:安装扩展 npm i vite-plugin-vue-setup-extend 修改配置文件 接下啦就可以直接在标签中写name了
阅读全文
摘要:1.vscode-icons 区别各个类型文件 2. live server 自动刷新html 插件 3.Vetur:这是VSCode中最受欢迎的Vue插件之一,提供了语法高亮、智能感知、Emmet、linting/错误检查、格式化、自动补全、调试等功能。它的linting功能可以帮助检查代码
阅读全文
摘要:npm error code ECONNRESET npm error syscall read npm error network This is a problem related to network connectivity. npm error network In most cases
阅读全文
摘要:今天准备学习electron时,安装electron总是卡住不动了,看了网上诸多文章后解决了,这是因为安装的镜像地址不对。 解决方法是在项目根目录下新建.npmrc文件,里面写上ELECTRON_MIRROR="https://npmmirror.com/mirrors/electron/"。 然后
阅读全文
摘要:背景 当您在使用npm时遇到 npm ERR! code CERT_HAS_EXPIRED 错误时,这通常是因为您的本地计算机上的根证书已过期。这个错误可能是由于您的操作系统或Node.js环境中的证书问题导致的。本文将介绍如何解决这个常见的问题,以确保您可以顺利使用npm进行包管理。 原文链接:h
阅读全文
摘要:原文链接:https://www.cnblogs.com/lg-lg/articles/17803347.html 开源.net 混淆器ConfuserEx介绍 下载地址:https://github.com/yck1509/ConfuserEx/releases 第一步: 第二步: 第三步: 当日
阅读全文
摘要:``` //// 将 Timer 定义为类的成员变量 private Timer myTimer; //点击响应触发器 private void uiSwitch1_ValueChanged(object sender, bool value) { if (uiSwitch1.Active) //
阅读全文
摘要:引用 using System.Data.SqlClient; // 创建连接字符串 string connectionString = $"Server={ip},{port};Database={database};User Id={username};Password={password};"
阅读全文
摘要:using System; using System.Collections.Generic; using System.Configuration; using System.IO; using System.Reflection; class Program { static void Main
阅读全文