C++11有了chrono库,可以很容易的实现定时功能。 chrono: chrono库主要包含了三种类型:时间间隔Duration、时钟Clocks和时间点Time point。 Duration: duration表示一段时间间隔,用来记录时间长度,可以表示几秒钟、几分钟或者几个小时的时间间隔, ...
分类:
编程语言 时间:
2020-11-20 11:44:25
阅读次数:
7
Apgar score Apgar is a quick test performed on a baby at 1 and 5 minutes after birth. The 1-minute score determines how well the baby tolerated the bi ...
分类:
其他好文 时间:
2020-10-30 11:36:36
阅读次数:
19
1. 将日期转换为指定的格式:比如转换成 年月日时分秒 这种格式:yyyy-MM-dd hh:mm:ss 或者 yyyy-MM-dd。当然是网上的方法,只是总结下。 可以为Date原型添加如下的方法: Date.prototype.format = function(fmt) { var o = { ...
分类:
Web程序 时间:
2020-08-29 16:38:37
阅读次数:
159
Manual upgrade to Oracle 19c (CDB/PDB) spa Oracle 19c, Oracle Database 20/12/2019 8 Minutes manually to 19c …. Actually it is very cool to do everythi ...
分类:
数据库 时间:
2020-07-30 10:45:05
阅读次数:
83
范例 LoadingCache<Key, Graph> graphs = CacheBuilder.newBuilder() .maximumSize(1000) .expireAfterWrite(10, TimeUnit.MINUTES) .removalListener(MY_LISTENER ...
分类:
系统相关 时间:
2020-07-17 16:20:30
阅读次数:
82
计算时间差.#!/bin/bashSTART_SEC=$SECONDSsleep 65END_SEC=$SECONDSDIFF=$((END_SEC-START_SEC))echo "$(($DIFF / 3600)) hours $(($DIFF % 3600 / 60)) minutes and... ...
分类:
其他好文 时间:
2020-07-16 00:00:31
阅读次数:
78
(一)时间戳转为当前时间 var a = 1594810549 console.log(timestampToTime(a)) //2020-07-15->18:55:49 function timestampToTime(timestamp){ var date = new Date(timest ...
分类:
其他好文 时间:
2020-07-15 15:09:09
阅读次数:
68
Angle Between Hands of a Clock (M) 题目 Given two numbers, hour and minutes. Return the smaller angle (in degrees) formed between the hour and the minut ...
分类:
其他好文 时间:
2020-07-15 10:47:17
阅读次数:
102
## springboot的定时任务 ### 两步编码实现定时任务。 - 开启定时任务注解 :打开冰箱门 @enableScheduling - 设置定时时间,corn表达式。 @scheduled - corn表达式 -- http://cron.qqe3.com corn表达式:空格区分组成部分 ...
分类:
编程语言 时间:
2020-07-14 18:42:27
阅读次数:
75
之前学习docker的时候,全部通过mysql原生的脚本运行脚本,太久没动之后脚本可能都忘记了。 就是说不方便操作。换了个人操作之后,还需要交付脚本。而docker有个编排插件docker-compose就是专门干这事情的。百度了下还挺多文章的。 然后依葫芦画瓢来一个,对比。 准备资料: 服务器一台 ...
分类:
数据库 时间:
2020-06-19 16:15:36
阅读次数:
75