Recently I came across this very funny picture and I would like to share with you. This picture shows totally five different approaches to implement “ ...
分类:
其他好文 时间:
2020-09-08 20:39:18
阅读次数:
51
一、docker安装 VMware centos7 # 卸载原有docker yum remove docker docker-common docker-selinux docker-engine -y # 安装yum工具包(方便配置安装源)和数据存储驱动包 yum install -y yum- ...
分类:
其他好文 时间:
2020-08-28 11:44:28
阅读次数:
56
https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/iproute_bgp/configuration/xe-16/irg-xe-16-book/irg-xe-16-book_chapter_01010101.html Carrying Link-St ...
分类:
其他好文 时间:
2020-08-26 19:00:58
阅读次数:
54
Python有几个相对特殊的函数,他们并不会提高工作效率,但是会使代码优雅简洁,其中包括lambda, map, reduce, filter, yeild。 第一:lambda,贴些代码体会。 1 #lambda 函数 2 def add(x): 3 x += 3 4 return x 5 6 l ...
分类:
其他好文 时间:
2020-08-25 16:03:44
阅读次数:
62
Java对象创建的流程大概如下: 检查对象所属类是否已经被加载解析; 为对象分配内存空间; 将分配给对象的内存初始化为零值; 执行对象的<init>方法进行初始化。 举个例子如下: public class Test { public static void main(String[] args) ...
分类:
其他好文 时间:
2020-08-15 23:52:51
阅读次数:
62
wxml <image wx:for="{{info}}" src="{{item.pic}}" bindtap="preview" data-list="{{item.pic}}" data-src="{{item.pic}}"></image> js Page({ //图片预览 preview: ...
分类:
微信 时间:
2020-08-13 12:33:33
阅读次数:
98
1、centos中firewalld与iptables centos7以前的版本默认使用iptables服务进行管理防火墙规则。centos7以及其以上版本默认使用firewalld服务管理防火墙。所以在centos8中,就使用其默认的firewalld配置防火墙。 firewalld和iptabl ...
分类:
其他好文 时间:
2020-08-11 00:28:58
阅读次数:
103
Yes, even though they probably certainly know that you probabaly wouldn't, they don't certainly know that although you probably wouldn't, there's no p ...
分类:
其他好文 时间:
2020-08-10 19:47:20
阅读次数:
112
国际形势、国内趋势,现在中国数据库市场暗流涌动,这次盛会,让处于中国数据库一线的专家们为你解惑释疑。此次大会由中国计算机学会、开源中国、开源&国产数据库联盟、神脑资讯等单位主办,特邀阿里云、腾讯、迪思杰、亚信科技、苏宁易购、人大金仓、南大通用等企业代表,特邀北京大学、武汉大学、南京财经大学等院校代表,共同探讨国产数据库的发展,为各行各业提供去‘O’的全面解决方案,为现在身为DBA或者即将走
分类:
数据库 时间:
2020-08-10 17:22:57
阅读次数:
90
Vertical Order Traversal of a Binary Tree (M) 题目 Given a binary tree, return the vertical order traversal of its nodes values. For each node at positi ...
分类:
其他好文 时间:
2020-08-08 17:30:42
阅读次数:
51