09 2022 档案

htm 使用 head meta refresh url 实现自动跳转 备忘
摘要:将以下代码存为 .html 或 .jsp 替换首页即可: <html> <head> <meta http-equiv="Refresh" content="1;url=/stgl/#/login" /> </head> <body> </body> </html> 阅读全文

posted @ 2022-09-29 16:11 空明流光 阅读(43) 评论(0) 推荐(0) 编辑

centos 任务管理器 htop
摘要:一、以yum方式安装 1、yum -y install epel-release.noarch 2、yum -y install htop 二、源码方式安装 1、安装gcc、内核库依赖库 yum install -y gcc ncurses-deve 2、下载源码 wget http://sourc 阅读全文

posted @ 2022-09-25 18:50 空明流光 阅读(321) 评论(0) 推荐(0) 编辑

postgresql 备忘
摘要:查看postgresql版本:select version() 1. postgresql 查询多行合并成一行 SELECT string_agg (DISTINCT relname, ',' order by relname ASC) FROM pg_stat_user_tables WHERE 阅读全文

posted @ 2022-09-16 15:33 空明流光 阅读(123) 评论(0) 推荐(0) 编辑

c# 获取当前时区时间
摘要:获取当前时区时间 time (东八区默认会减去8小时): var time = new Date(new Date().getTime() + (new Date().getTimezoneOffset() / 60) * 24 * 60 * 1000); 获取当前时区当前时间 time 字符串: 阅读全文

posted @ 2022-09-13 16:06 空明流光 阅读(1591) 评论(0) 推荐(0) 编辑

fiddler 使用备忘
摘要:fiddler2 只适用于 xp 及以下系统,以后续系统有很多限制,高版本使用fiddler4 1. fiddler 就是一个代理服务器,默认本机8888端口,可以在 Tool\Options\Connections 中更改 2.fiddler 对 https 默认不开启捕获,需要在 Tools \ 阅读全文

posted @ 2022-09-11 08:10 空明流光 阅读(26) 评论(0) 推荐(0) 编辑

centos 查看磁盘占用情况命令
摘要:最易理解的结果,命令:df -h 阅读全文

posted @ 2022-09-09 17:23 空明流光 阅读(89) 评论(0) 推荐(0) 编辑

javascript 动态添加 get set 方法
摘要:var temp = window; Object.defineProperty(temp, "myprop", { get: function () { return null; }, set: function (val) { window.alert("myprop:" +val); } }) 阅读全文

posted @ 2022-09-08 15:45 空明流光 阅读(234) 评论(0) 推荐(0) 编辑

导航