自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 问答 (2)
  • 收藏
  • 关注

原创 基于docker的mysql8主从复制

1. 环境 centos8环境。在virtualBox上使用vagrant安装方便快捷。 网络使用桥接方式 vagrantbox库https://app.vagrantup.com/boxes/search #安装 vagrant init generic/centos8 #启动 若启动异常可能存在旧的Vagrantfile产生冲突,删除即可 vagrant up #连接 vagrant ssh 使用静态ip #(ping不通)关闭防火墙 systemctl disable firewalld.ser

2022-04-19 19:48:50 2867

原创 ts版LRU

interface Node { k: number; v: number ; prev: Node | undefined; next: Node | undefined; } class DoubleLink { head: Node tail: Node constructor() { this.head = this.buildNode(-1, -1); this.tail = this.buildNode(-

2022-03-28 17:55:27 212

原创 日期 去时分秒 签到

new LocalDate(signInTime).toDateTimeAtStartOfDay()去时分秒 final Map<String, Object> map = new HashMap<>(5); map.put("last", Instant.ofEpochMilli(signInTime).toDateTime().toString("yyyy-MM-dd HH:mm")); final int days = Days.standardDaysIn(new Perio

2022-03-19 18:27:33 295

原创 easyui datagrid 跨行

// author: junson //attention: 跨行前需要对数据进行排序 //date: $(&amp;amp;amp;amp;amp;amp;amp;amp;amp;quot;#id&amp;amp;amp;amp;amp;amp;amp;amp;amp;quot;).datagrid({ onLoadSuccess : function(data) { var position = 0; var id; data.rows.forEach(function

2018-11-16 15:34:44 557

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除