javascript时间戳和字符的转换,折腾了半个小时,其实很简单。。。。。
2020-06-21 作者: yeakyang 分类:Javascript浏览:292顶 (0)
// 获取当前时间戳(以s为单位) var timestamp = Date.parse(new Date()); timestamp = timestamp / 1000; //当前时间戳为:1403149534 console.log("当前时间戳为:" + timestam...
2020-06-21 作者: yeakyang 分类:Javascript浏览:292顶 (0)
// 获取当前时间戳(以s为单位) var timestamp = Date.parse(new Date()); timestamp = timestamp / 1000; //当前时间戳为:1403149534 console.log("当前时间戳为:" + timestam...
2020-06-03 作者: yeakyang 分类:Linux浏览:281顶 (1)
wget下载一个最新版本的openssh https://openbsd.hk/pub/OpenBSD/OpenSSH/portable/ tar -xvf openssh-7.9p1.tar.gz cd openssh-7.9p1 ./configure make &&...