Loading

上一页 1 2 3 4 5 6 7 ··· 30 下一页
摘要: 更新记录 点击查看 2024年3月2日 发布。 执行SQL select * from information_schema.processlist; 使用APM工具 常用的性能检测工具可以提供这个功能。 阅读全文
posted @ 2024-03-02 10:01 重庆熊猫 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 更新记录 点击查看 2024年3月2日 发布。 开启和关闭日志记录(临时) 默认情况下mysql是不会记录最近执行sql语句的,需要手动开启才能记录。 另外sql语句有两种方式记录,记录到table,记录到文件。 另外开启日志记录多少会占用性能,适合开发测试环境使用。 -- 临时设置,重启MySQL 阅读全文
posted @ 2024-03-02 10:00 重庆熊猫 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 更新记录 点击查看 2024年3月1日 更新常见问题。 2024年2月29日 发布。 安装需要使用到的命令和包 如果有就不用安装了。 yum -y install tar yum -y install vim yum -y install net-tools yum -y install libnc 阅读全文
posted @ 2024-03-01 09:21 重庆熊猫 阅读(169) 评论(0) 推荐(1) 编辑
摘要: 更新记录 点击查看 2024年2月29日 初始化。 解决办法 进入网卡配置文件 # 进入网络配置文件存放文件夹 cd /etc/sysconfig/network-scripts/ # 然后查看对应的网口文件 ls -l # 然后编辑网口文件 vi ifcfg-ens33 # 注意:这里每个人的文件 阅读全文
posted @ 2024-02-29 15:04 重庆熊猫 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 更新记录 点击查看 2024年2月28日 优化并迁移。 官网 https://axios-http.com/ 安装 npm install axios 使用格式 axios.method({configs}) .then(function(response){ // }) .catch(functi 阅读全文
posted @ 2024-02-28 15:33 重庆熊猫 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 更新记录 更新记录 2024年3月7日 更新/优化内容。 2023年5月28日 初始化。 Pinia 是什么 状态管理包,允许跨组件/页面共享状态。 Pinia 和 Vuex 对比 最大最大的区别,Pinia没有mutations概念,这个东西真的很恶心。 从ExtJS转过来,看Pinia不要太爽, 阅读全文
posted @ 2024-02-28 11:33 重庆熊猫 阅读(126) 评论(0) 推荐(0) 编辑
摘要: Animate.css + Vue2 包:https://www.npmjs.com/package/vue2-animate 安装: npm install --save vue2-animate 导入: import 'vue2-animate/dist/vue2-animate.min.css 阅读全文
posted @ 2024-02-06 14:33 重庆熊猫 阅读(19) 评论(0) 推荐(0) 编辑
摘要: using System; namespace ConsoleApp2 { class Program { static void Main(string[] args) { //十进制转为二进制 string result1 = Convert.ToString(100, 2); Console. 阅读全文
posted @ 2024-02-06 14:20 重庆熊猫 阅读(7) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 获得一个19位长的序列,8346734568923542345,生成1亿次都不会出现重复。 /// </summary> /// <returns></returns> public static string GenerateIntID() { byte[] b 阅读全文
posted @ 2024-02-06 14:20 重庆熊猫 阅读(21) 评论(0) 推荐(0) 编辑
摘要: //选择列 DataGridViewCheckBoxColumn checkBoxColum = new DataGridViewCheckBoxColumn(); checkBoxColum.HeaderText = "选择"; this.dataGridView1.Columns.Add(che 阅读全文
posted @ 2024-02-06 14:19 重庆熊猫 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 更新记录 2024年2月6日 迁移。 查看Vue项目使用的Webpack的配置项信息 vue inspect > output.js 每个配置项的具体信息:https://cli.vuejs.org/config/ 修改配置项,定义vue.config.js文件,写入配置即可 module.expo 阅读全文
posted @ 2024-02-06 14:17 重庆熊猫 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 更新记录 ``` 2024年2月6日 发布。 2023年11月1日 迁移。 ``` 创建Vue应用 方式1:直接引入 根据官方文档引入js文件即可。 方式2:VueCLI 安装 npm install -g @vue/cli 创建项目 vue create projectName //或者 npm 阅读全文
posted @ 2024-02-06 14:15 重庆熊猫 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 更新记录 2024年1月31日 初始化。 ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html 页面单文件写法 ExtJS用官方脚手架(SenchaCMD)生成页面,在默认情况下会生成三个文件(View、ViewController、Vi 阅读全文
posted @ 2024-01-31 19:59 重庆熊猫 阅读(50) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Linq; using System.Text.RegularExpressions; namespace ConsoleApp2 { class Program { static void Main(string[] args) { //匹配汉 阅读全文
posted @ 2024-01-31 19:50 重庆熊猫 阅读(49) 评论(0) 推荐(0) 编辑
摘要: # 安装ssh-server sudo apt update sudo apt install openssh-server #验证 SSH 是否正在运行 sudo systemctl status ssh #UFW打开 SSH 端口 sudo ufw allow ssh 好了可以连接了。 阅读全文
posted @ 2024-01-13 11:08 重庆熊猫 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 用这个特性修饰方法即可。 [Obfuscation(Feature = "virtualization", Exclude = false)] 官方文档 https://learn.gapotchenko.com/eazfuscator.net/docs/virtualization/how-to- 阅读全文
posted @ 2024-01-13 11:05 重庆熊猫 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 依赖项 Microsoft Visual C++ 2015-2019 Redistributable 64 位 https://aka.ms/vs/16/release/vc_redist.x64.exe 32 位 https://aka.ms/vs/16/release/vc_redist.x86 阅读全文
posted @ 2024-01-13 11:05 重庆熊猫 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html 转载请注明出处:https://www.cnblogs.com/cqpanda/p/17653469.html 更新记录 2023年8月24日 从代码迁移到博客。 ExtJS目前已经躺 阅读全文
posted @ 2023-08-24 10:18 重庆熊猫 阅读(122) 评论(0) 推荐(0) 编辑
摘要: ## 关闭safe-updates模式 ```sql SET SQL_SAFE_UPDATES = 0; 或 SET SQL_SAFE_UPDATES = false; ``` ## 打开safe-updates模式 ```sql SET SQL_SAFE_UPDATES = 1; 或 SET SQ 阅读全文
posted @ 2023-08-07 07:57 重庆熊猫 阅读(68) 评论(0) 推荐(0) 编辑
摘要: ```bash @echo off set dn=Info set dn2=ShellFolder set rp=HKEY_CURRENT_USER\Software\Classes\CLSID :: reg delete HKEY_CURRENT_USER\Software\PremiumSoft 阅读全文
posted @ 2023-05-21 09:37 重庆熊猫 阅读(335) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 30 下一页