深入理解 Mysql 索引底层原理 深入理解 Mysql 索引底层原理 - https://zhuanlan.zhihu.com/p/113917726 2019-10-18 数据库 > MySQL #数据库 #MySQL
Redis 高可用解决方案总结 Redis 高可用解决方案总结:https://mp.weixin.qq.com/s?__biz=MzI3ODcxMzQzMw==&mid=2247487221&idx=1&sn=1c3182ad46e8781a04f49ec8ad53f482&chksm=eb538bc3dc2402d5df24a37ec0c0c31099d152df6d3b62380ccebf7 2019-10-18 数据库 > Redis #数据库 #Redis
win10设置ubuntu系统root账户密码 一、安装ubuntuubuntu安装docker官方文档: https://docs.docker.com/install/linux/docker-ce/ubuntu/ 二、修改root账户的密码在win10商店下载ubuntu,安装docker后,每次使用docker命令都需要输入sudo,不使用sudo会报错 1Cannot connect to the Docker daemon at t 2019-09-05 ubuntu #ubuntu
is()和hasClass() is()和hasClass() jq中的is()有判断元素是否含有某个class的属性,但是hasClass()没有效果。下面是我找的对应的官方的文档,注意仔细阅读文档里面的小demo,并且注意里面的细微区别。 is() 123https://api.jquery.com/is/Description: Check the current matched set of elements agai 2019-09-03 前端 #前端
HTTP 返回码详解 HTTP状态码(HTTP Status Code)是用以表示网页服务器HTTP响应状态的3位数字代码。它由 RFC 2616 规范定义的,并得到RFC 2518、RFC 2817、RFC 2295、RFC 2774、RFC 4918等规范扩展。 ##1xx(临时响应)表示临时响应并需要请求者继续执行操作的状态代码。 100(继续)请求者应当继续提出请求。 服务器返回此代码表示已收到请求的第一部 2019-09-03 计算机相关 > HTTP #计算机相关 #HTTP
HTTPS 比 HTTP 更安全 为什么 HTTPS 比 HTTP 更安全?:https://mp.weixin.qq.com/s/xAXiY_7Lvog-Xrq6qEokUQ?client=tim&ADUIN=1348954449&ADSESSION=1561252296&ADTAG=CLIENT.QQ.5603_.0&ADPUBNO=26882 2019-09-03 计算机相关 > HTTP #计算机相关 #HTTP
TensorFlow学习笔记2 Session的两种使用方式 1234567891011121314151617181920import tensorflow as tfmatrix1 = tf.constant([[3,3]])matrix2 = tf.constant([[2,2]])product = tf.matmul(matrix1,matrix2) # matrix multiply np.dot(m1,m2)# 2019-09-03 计算机相关 > TensorFlow #计算机相关 #TensorFlow
TensorFlow学习笔记1 自己构建一些数据,来实现一个简单函数的模拟学习 1234567891011121314151617181920212223242526272829303132333435import tensorflow as tfimport numpy as np# create datax_data = np.random.rand(100).astype(np.float32)y_data = x_dat 2019-09-03 计算机相关 > TensorFlow #计算机相关 #TensorFlow
TensorFlow学习笔记3 Variable变量的简单使用 在 Tensorflow 中,定义了某字符串是变量,它才是变量,这一点是与 Python 所不同的 1234567891011121314151617181920212223import tensorflow as tfstate = tf.Variable(0,name = 'counter')print(state.name)one = tf 2019-09-03 计算机相关 > TensorFlow #计算机相关 #TensorFlow