Python小工具 - BMP转TIFF
使用 VSCode + Copilot 生成的一个小工具,记录下来帮助自己理解 Python (第一个 Python 程序) 环境 Pillow 图像处理库,替代 PIL</
.NET 字符编码
.NET Core/5+ 使用中文编码 异常问题:'GBK' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding
uni-app开发中遇到的问题
node-sass 需要替换为 sass #使用中用cnpm卸载好像不管用 npm uninstall node-sass cnpm install sass
CSS属性
记录一下开发中使用到的CSS属性 transition 可以为一个元素在不同状态之间切换的时候定义不同的过渡效果。它允许在属性值变化时添加动画效果,使变化更加平滑。 /* Apply to 1 property */ /* property name | duration */ transition
JavaScript通用库
记录一下开发中使用到的通用库 日期 Day.js 一个极简的JavaScript库,可以为现代浏览器解析、验证、操作和显示日期和时间。 官方网站 安装 npm ins
MATLAB函数外部使用
项目需要在C#中使用MATLAB函数,根据网上老哥提供的方案查阅资料并记录以下(有部分可能存在认知错误,后面遇到再改) ArrayFire/ Armadillo 未尝试 C++库,对MATLAB函数进行逐句翻译,直接编译成dll。 效率最高(需要硬件支持) ArrayFire ArrayFire
宝塔 - 国际版
宝塔一直需要登录才能用,好在国际版不需要(最新的国际版好像也得登录了) 安装 yum install -y wget && wget -O install.sh http://www.aapanel.com/script/install_6.0_en.sh && bash install.sh aa
Win32API函数
https://learn.microsoft.com/zh-cn/windows/win32/api/ sendMessage 将指定的消息发送到一个或多个窗口。
WPF - 单例程序和系统托盘
记录一下工作中遇到的场景。单例运行程序同时还要将程序隐藏到系统托盘,再次启动程序时如果已存在需要调出隐藏的程序 Mutex 互斥锁 程序启动入口添加互斥锁判断: public System.Threading.Mutex mutex; public static bool AppSingleton