CSS外部样式在head里写入用来链接外部CSS文件h3.red用来表示特定的标签div h1用来表示div里的h1标签text-indent首行缩进line-height行高font-size字体大小font-style字体样式 ...
分类:
其他好文 时间:
2020-11-26 14:35:46
阅读次数:
4
#1from turtle import* pensize(8) color("black") up() goto(50,0) down() circle(100) color("blue") up() goto(-170,0) down() circle(100) color("red") up( ...
分类:
其他好文 时间:
2020-11-26 14:11:54
阅读次数:
5
package com.xieh; import java.io.BufferedReader; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.File; import java.io. ...
分类:
编程语言 时间:
2020-11-25 12:49:28
阅读次数:
10
1 #include <stdio.h> 2 #include <wiringPi.h> 3 #include <softPwm.h> 4 5 const int Red_Pin = 9; 6 const int Green_Pin = 10; 7 const int Blue_Pin = 11; ...
分类:
编程语言 时间:
2020-11-25 12:45:11
阅读次数:
8
1.下载CentOS7.9 下载CentOS可以到其官方下载,官方地址:https://www.centos.org/download/ 不过我进到这个网站最终也没找到下载链接。 可以到这个网站 https://freecplus.net/bc14e930a8644f558e46b7411b8ad8 ...
分类:
系统相关 时间:
2020-11-25 12:32:43
阅读次数:
11
HDU2040 亲和数 题目链接 Problem Description 古希腊数学家毕达哥拉斯在自然数研究中发现,220的所有真约数(即不是自身的约数)之和为: 1+2+4+5+10+11+20+22+44+55+110=284。 而284的所有真约数为1、2、4、71、 142,加起来恰好为22 ...
分类:
其他好文 时间:
2020-11-24 12:32:09
阅读次数:
8
uploadFile(event){ let that = this; let file = event.target.files[0]; let fileReader = new FileReader(); fileReader.readAsDataURL(file); //根据图片路径读取图片 ...
分类:
其他好文 时间:
2020-11-24 12:09:24
阅读次数:
5
HBase是一个高可靠、高性能、面向列的,主要用于海量结构化和半结构化数据存储的分布式key-value存储系统。它基于Google Bigtable开源实现,但二者有明显的区别:Google Bigtable基于GFS存储,通过MAPREDUCE处理存储的数据,通过chubby处理协同服务;而HB... ...
分类:
其他好文 时间:
2020-11-20 12:05:39
阅读次数:
11
在实际项目开发中,我们经常需要在项目构建文件监听,已备在项目的源码发生变化时候时,自动重构出新的输出文件。配置代码如下:webpack.config.jsmodule.export={watch:true,watchOption:{ignored:/node_modules///忽略不需要监听的文件aggregationTimeout:300,poll:1000//默认每秒访问1000}}在执行时
分类:
Web程序 时间:
2020-11-20 11:18:24
阅读次数:
11
前面讲了 Eureka 和 Spring Cloud Config,今天介绍一个全能选手 「Consul」。它是 HashiCorp 公司推出,用于提供服务发现和服务配置的工具。用 go 语言开发,具有很好的可移植性。被 Spring Cloud 纳入其中,Eureka 停止新版本开发,更多的想让开 ...
分类:
编程语言 时间:
2020-11-19 12:07:02
阅读次数:
5