上一页 1 ··· 7 8 9 10 11 12 13 下一页
  2020年4月16日
摘要: 使用 YUM 命令安装 pip。 $ sudo yum install python-pip python-devel 执行下面的 pip 命令安装 python-hwinfo。 $ sudo pip install python-hwinfo 执行下面的命令,检查本地机器现有的硬件。输出很清楚和整 阅读全文
posted @ 2020-04-16 02:03 wakaka_wka 阅读(327) 评论(0) 推荐(0)
摘要: http://kxz.pw/Windows/ISO/ISO-Jetso/ http://down.80vps.com/VirtIO/ 阅读全文
posted @ 2020-04-16 00:45 wakaka_wka 阅读(2201) 评论(0) 推荐(0)
  2020年4月2日
摘要: FilterHeader plugin allows use the following operators: String: =(equals), +(starts with), -(ends with), *(contains), !(doesn't contain) Date: >, <, > 阅读全文
posted @ 2020-04-02 23:05 wakaka_wka 阅读(189) 评论(0) 推荐(0)
  2020年3月25日
摘要: 1 declare @ivt table(Qty int,Code nvarchar(10)) 2 insert into @ivt(Qty,Code) 3 select 7,'a' union 4 select 3,'b' union 5 select 4,'c' 6 select * from 阅读全文
posted @ 2020-03-25 02:41 wakaka_wka 阅读(278) 评论(0) 推荐(0)
  2020年3月19日
摘要: function unique (arr) { return Array.from(new Set(arr)) } var arr = [1,1,'true','true',true,true,15,15,false,false, undefined,undefined, null,null, Na 阅读全文
posted @ 2020-03-19 23:55 wakaka_wka 阅读(119) 评论(0) 推荐(0)
  2020年3月18日
摘要: const el = document.createElement('textarea'); el.value = str; el.setAttribute('readonly', ''); el.style.position = 'absolute'; el.style.left = '-9999 阅读全文
posted @ 2020-03-18 03:55 wakaka_wka 阅读(1912) 评论(0) 推荐(0)
摘要: const counter = (selector, start, end, step = 1, duration = 2000) => { let current = start, _step = (end - start) * step < 0 ? -step : step, timer = s 阅读全文
posted @ 2020-03-18 03:54 wakaka_wka 阅读(356) 评论(0) 推荐(0)
摘要: const getDaysDiffBetweenDates = (dateInitial, dateFinal) => (dateFinal - dateInitial) / (1000 * 3600 * 24); // 事例 getDaysDiffBetweenDates(new Date('20 阅读全文
posted @ 2020-03-18 03:52 wakaka_wka 阅读(278) 评论(0) 推荐(0)
摘要: const get = (from, ...selectors) => [...selectors].map(s => s .replace(/\[([^\[\]]*)\]/g, '.$1.') .split('.') .filter(t => t !== '') .reduce((prev, cu 阅读全文
posted @ 2020-03-18 03:47 wakaka_wka 阅读(255) 评论(0) 推荐(0)
摘要: 平滑滚动到页面顶部 const scrollToTop = () => { const c = document.documentElement.scrollTop || document.body.scrollTop; if (c > 0) { window.requestAnimationFra 阅读全文
posted @ 2020-03-18 03:27 wakaka_wka 阅读(202) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 下一页