记录一些平时遇到的比较适用的网站地址,有时候自己经常忘记,想用的时候又找不到,所以单独写个博客来记录一下。 word、表格、PPT模块: 文档之家:http://www.doczj.com/list_203/ 微软官方模块:http://www.officeplus.cn/Template/Home ...
分类:
其他好文 时间:
2020-05-28 00:31:47
阅读次数:
175
spring cloud简介 Spring Cloud是一个分布式框架,Spring Cloud是建立在Spring Boot上面的。 spring cloud组件 Eureka 注册中心 [ju?ri?k?]Feign 调用 [fe?n]Hystrix 容错 [h?st'r?ks]Ribbon 负 ...
分类:
编程语言 时间:
2020-05-27 18:57:10
阅读次数:
98
REST Framework接口规范 一 、发展及其背景介绍# 网络应用程序,分为前端和后端两个部分。当前的发展趋势,就是前端设备层出不穷(手机、平板、桌面电脑、其他专用设备…)。因此,必须有一种统一的机制,方便不同的前端设备与后端进行通信。这导致API构架的流行,甚至出现APIFirst的设计思想 ...
分类:
其他好文 时间:
2020-05-27 18:47:55
阅读次数:
61
1.whille循环语句 while(循环条件){ 循环语句块; } 例如:var i=0; while(i<=5){ document.write(i); i++; } 2.do while循环语句 do{ 循环条件语块; }while(循环条件) 例如:var i=0; do{ document ...
分类:
其他好文 时间:
2020-05-27 17:15:49
阅读次数:
79
网络连接判断,使用WebClient测试获取: 1 public static bool IsWebClientConnected() 2 { 3 try 4 { 5 using (var client = new WebClient()) 6 using (var stream = client. ...
分类:
Web程序 时间:
2020-05-27 15:26:53
阅读次数:
71
方法1: 拷贝文章时,直接把内容赋值给一个变量,保存到一个 .py 文件中。然后在脚本中,导入它。 存储文章的文件 article.py content = """ 复制的文章内容 """ 存储脚本的文件 my_code.py from article import content 方法2: 拷贝文 ...
分类:
编程语言 时间:
2020-05-27 01:24:07
阅读次数:
135
1、添加依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
编程语言 时间:
2020-05-26 20:41:59
阅读次数:
70
微信公众号:码农充电站pro 个人主页:https://codeshellme.github.io 程序 = 算法 + 数据结构 —— Nicklaus Wirth 目录 从这句话程序 = 算法 + 数据结构 可以看出数据结构对于编程的重要性。数据结构就是数据的组织/存储方式。 从本节开始我们将介绍 ...
分类:
编程语言 时间:
2020-05-26 19:55:35
阅读次数:
74
Lesson-3 修改f(selector) 里的判断,新增domReady 我们知道在jQuery中还有一种选择器写法 $(function() { }); 在dom加载完毕后马上就执行,这样的方法会比onload更快,所以domReady对于我们来说一定是必不可少的 我们在init方法中要新增以 ...
分类:
Web程序 时间:
2020-05-26 18:41:26
阅读次数:
68
按下鼠标左键, 连击 按下鼠标右键, 停止 import win32api import time from pynput.mouse import Button, Controller mouse = Controller() while True: if (win32api.GetAsyncKe ...
分类:
编程语言 时间:
2020-05-26 18:22:04
阅读次数:
147