作者|ABHISHEK SHARMA 编译|VK 来源|Analytics Vidhya 大约十年前,当谷歌的人还在试验一辆原型车时,我预见了自己的第一辆自动驾驶汽车。当时我立刻被这个想法迷住了。不可否认,我不得不等待一段时间,直到这些概念向社区开放,现在看来等待确实是值得的! 我最近试验了一些与计 ...
分类:
其他好文 时间:
2020-06-19 13:36:59
阅读次数:
66
import numpy from matplotlib import pyplot x=numpy.linspace(-3,3,50) y=2*x+1 pyplot.figure(num=1,figsize=(5,5)) pyplot.plot(x,y,linewidth=10) ax=pyplo ...
分类:
其他好文 时间:
2020-06-19 11:53:20
阅读次数:
38
/var/log : where the linux put the logs /var/log/cron on system cron tasks /var/log/cups/ something about the printer /var/log/dmesg/ system self chec ...
分类:
系统相关 时间:
2020-06-18 19:21:13
阅读次数:
56
安装很简单,执行如下指令即可: wget https://www.cpan.org/src/5.0/perl-5.28.0.tar.gz # tar -zxvf perl-5.28.0.tar.gz cd perl-5.28.0 ./Configure -des -Dprefix=/usr/loca ...
分类:
其他好文 时间:
2020-06-16 14:51:38
阅读次数:
48
.net core 使用Redis安装包:Microsoft.Extensions.Caching.Redis 注册Redis(已经引用了Autofac) public void ConfigureServices(IServiceCollection services) { // 这个是之前使用S ...
分类:
Web程序 时间:
2020-06-16 13:23:39
阅读次数:
67
1.python3.8 + django3.0.7 使用pymysql报错: django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.2 2.报错原因:是dj ...
分类:
数据库 时间:
2020-06-16 13:12:42
阅读次数:
111
0. Ioc https://docs.spring.io/spring-framework/docs/current/spring-framework-reference/core.html#beans-introduction 主要是实现一个控制反转,耦合性大大降低。 1. 建maven项目 建 ...
分类:
编程语言 时间:
2020-06-15 15:49:27
阅读次数:
64
查看docker教学视频,请点击 《狂神说java》: https://www.bilibili.com/video/BV1og4y1q7M4?p=1 记得投币三连呀~~ 容器数据卷 什么是容器数据卷 docker的理念回顾 将应用和环境打包成一个镜像! 数据?如果数据都在容器中,那么我们容器删除, ...
分类:
其他好文 时间:
2020-06-14 18:49:31
阅读次数:
90
import matplotlib.pyplot as pltimport numpy as npgs = plt.GridSpec(3,3)fig = plt.figure(figsize=(6,6))x1 = np.array([1,3,2,5])y1 = np.array([4,3,7,2]) ...
分类:
其他好文 时间:
2020-06-14 13:08:02
阅读次数:
69
import matplotlib.pyplot as pltimport numpy as npfig = plt.figure()ax = fig.add_axes([0.1,0.1,0.8,0.8])inner_ax = fig.add_axes([0.6,0.6,0.25,0.25])x1 ...
分类:
其他好文 时间:
2020-06-14 12:45:50
阅读次数:
70