@TOCDoccker简介 Docker是一个开源的应用容器引擎,基于Go语言并遵从Apache2.0协议开源。 Docker可以让开发者打包他们的应用以及依赖包到一个轻量级、可移植的容器中,然后发布到任何流行的Linux机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口(类似iPhone的app),更重要的是容器性能开销极低。&e
主窗口效果 主窗口代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; u ...
如果你还没有使用过消息中间件,这篇文章可以带你初步感受一下消息中间件。下面就带大家简单测试一下ActiveMq; 一、第一部分下载以及安装: 1、首先ActiveMq属于Apache下,下载路径:http://activemq.apache.org/ Classic(经典的) 2、这里有Window ...
分类:
其他好文 时间:
2020-06-09 18:39:52
阅读次数:
59
1.示意图 2.结构 3.wave.html代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS实战 - 波浪</title> <style type="text/css"> .wave-box{ b ...
分类:
Web程序 时间:
2020-06-09 18:16:38
阅读次数:
83
Spring is a popular Java application framework for creating enterprise applications. Spring Boot is an evolution of Spring framework which helps creat ...
分类:
数据库 时间:
2020-06-09 16:47:47
阅读次数:
72
本系列文章描述了离线环境下以 UPI (User Provisioned Infrastructure) 模式安装 Openshift Container Platform (OCP) 4.4.5 的步骤,我的环境是 VMware ESXI 虚拟化,也适用于其他方式提供的虚拟机或物理主机。离线资源包 ...
分类:
其他好文 时间:
2020-06-09 14:52:38
阅读次数:
105
如下代码内容是关于C++霍夫曼编码(Huffman Coding)的代码。 #include<iostream> #include<string> #include<queue> using namespace std; class node{ public: content=con; weight ...
分类:
编程语言 时间:
2020-06-09 12:58:15
阅读次数:
88
##提交代码一般流程(不推荐使用. 泛指需要提交的文件) git add . git commit -m 'some message' git pull origin master git push origin master ##设置用户名和密码 git config --global user. ...
分类:
其他好文 时间:
2020-06-09 09:41:41
阅读次数:
102
数据库连接方式 Spring.datasource.url=jdbc:mysql://location/mydb Spring.datasource.username=root Spring.datasource.password= 显示数据库:show databases; 创建数据库:creat ...
分类:
数据库 时间:
2020-06-08 19:23:03
阅读次数:
89
node.js原?驱动 // mysql.js const mysql = require("mysql"); // 连接配置 const cfg = { host: "localhost", user: "root", password: "example", // 修改为你的密码 databas ...
分类:
其他好文 时间:
2020-06-08 14:29:24
阅读次数:
63