上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
  2022年10月20日
摘要: 统是Centos7. 一、创建一个任务文件 1、命令行输入crontab -e会自动打开一个空文件: 比如输入以下内容: SHELL=/bin/bashPATH=/sbin:/bin:/usr/sbin:/usr/bin 0 0,12 * * * certbot renew --quiet 二、保存 阅读全文
posted @ 2022-10-20 16:14 wakaka_wka 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 安装 先安装 snapd,使用 snap 安装 certbot 可以隔离环境影响 yum install snapd # 设置为开机启动并立即启动 sudo systemctl enable --now snapd # 建立软链接 sudo ln -s /var/lib/snapd/snap /sn 阅读全文
posted @ 2022-10-20 14:52 wakaka_wka 阅读(326) 评论(0) 推荐(0) 编辑
  2022年10月17日
摘要: 在HttpWebRequest前设置代码 ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtoco 阅读全文
posted @ 2022-10-17 12:29 wakaka_wka 阅读(269) 评论(1) 推荐(0) 编辑
  2022年9月15日
摘要: CSS: .x-column-header-text-inner{ color:red; } JS: $('.x-column-header-text-inner').filter(function(){ return (/启用/i).test($(this).text())}).css('colo 阅读全文
posted @ 2022-09-15 21:26 wakaka_wka 阅读(17) 评论(0) 推荐(0) 编辑
  2022年9月8日
摘要: xtype 类 box Ext.BoxComponent button Ext.Button colorpalette Ext.ColorPalette component Ext.Component container Ext.Container cycle Ext.CycleButton dat 阅读全文
posted @ 2022-09-08 09:32 wakaka_wka 阅读(17) 评论(0) 推荐(0) 编辑
  2022年9月1日
摘要: (function () { let request = ELECTRON.remote.net.request('URL what you want'); request.on('response', function (response) { console.log(response.statu 阅读全文
posted @ 2022-09-01 15:28 wakaka_wka 阅读(950) 评论(0) 推荐(0) 编辑
  2022年8月19日
摘要: select * from syscolumns where ID in (SELECT id FROM sysobjects as a WHERE OBJECTPROPERTY(id, N'IsProcedure') = 1 and id = object_id(N'[dbo].[你的存储过程名] 阅读全文
posted @ 2022-08-19 18:53 wakaka_wka 阅读(19) 评论(0) 推荐(0) 编辑
  2022年8月3日
摘要: gc.addDocked(new Ext.Toolbar({ items: [ { xtype: 'button', text: 'Test add docked' } ]}), 0); 阅读全文
posted @ 2022-08-03 18:22 wakaka_wka 阅读(13) 评论(0) 推荐(0) 编辑
  2022年7月26日
摘要: allowExponential: false Ext.application({ name : 'Fiddle', launch : function() { Ext.create('Ext.form.Panel', { title: 'On The Wall', width: 300, body 阅读全文
posted @ 2022-07-26 17:02 wakaka_wka 阅读(204) 评论(0) 推荐(0) 编辑
  2022年4月25日
摘要: panel.getEl().show()/hide()/toggle() 阅读全文
posted @ 2022-04-25 11:59 wakaka_wka 阅读(110) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页