我们的目标是提高编程技术能力。或是面向兴趣编程。高效的工具才能发挥最大的效率。
分类:
其他好文 时间:
2020-03-19 09:19:39
阅读次数:
70
(1)在pom.xml中引入ActiveMQ起步依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> </dependency ...
分类:
其他好文 时间:
2020-03-18 17:12:43
阅读次数:
48
1.hashtable 1 class Node: 2 def __init__(self,key,val): 3 self.pair=(key,val) 4 self.next=None # next仍指向一个Node 5 6 class MyHashMap(object): 7 8 def __ ...
分类:
其他好文 时间:
2020-03-16 18:54:13
阅读次数:
66
Kubernetes系列之Kubernetes资源管理Kubernetes从创建之初的核心模块之一就是资源调度。想要在生产环境使用好Kubernetes,必须对它的资源模型以及资源管理非常了解。这篇文章算是对散布在网络上的Kubernetes资源管理内容的一个总结。干货文章,强列推荐一读。Kubernetes资源简介什么是资源?在Kubernetes中,有两个基础但是非常重要的概念:Node和Po
分类:
Web程序 时间:
2020-03-16 09:24:55
阅读次数:
98
作者:iCoding91地址:https://blog.csdn.net/caoxiaohong1005 转发的公众号地址,有其他设计模式介绍:https://mp.weixin.qq.com/s/ZqK5-2T3jZ9JTCdRA_st4w Spring中涉及的设计模式总结 1.简单工厂(非23种 ...
分类:
编程语言 时间:
2020-03-15 13:33:35
阅读次数:
72
0x01 根据favicon.ico生成hash python2,想改python3折腾了半天不得 import mmh3 import requests response = requests.get('https://www.baidu.com/favicon.ico') favicon = r ...
分类:
Web程序 时间:
2020-03-15 11:18:00
阅读次数:
109
@[toc] 0. Abstract We trained a large, deep convolutional neural network to classify the 1.2 million high resolution images in the ImageNet LSVRC 2010 ...
分类:
Web程序 时间:
2020-03-14 19:53:58
阅读次数:
70
trace是分布在不同的应用中的,最常用的远程调用方式就是Http。 在这种情况下,我们通常通过增加额外的Http Header传递Trace信息,然后将其组织起来。 本部分通过构建一个目前最火的SpringBoot服务端,然后通过OkHttp3进行调用,来展示分布式调用链的组织方式。 需要的知识: ...
分类:
编程语言 时间:
2020-03-14 14:48:13
阅读次数:
244
rtems 4.6 chain.h (cpukit\libcsupport\include)提供用户程序接口,用户程序接口无下划线开头,内核程序使用下划线开头 /* chain.h * * This include file contains all the constants and struct ...
分类:
其他好文 时间:
2020-03-14 13:20:32
阅读次数:
61
https://developers.arcgis.com/labs/pro/build-a-map-layout/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using ...
分类:
其他好文 时间:
2020-03-14 01:10:44
阅读次数:
115