<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weixin_30242907的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weixin_30242907</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weixin_30242907]]></copyright><item><title><![CDATA[10.1 叉积 ，极角排序，扫描法求凸包]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101981123</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101981123</guid><author>weixin_30242907</author><pubDate>Tue, 01 Oct 2019 14:59:00 +0800</pubDate><description><![CDATA[凸包：用一个凸多边形将所有点围起来，这个凸多边形就是凸包

1.先要引入一个数学工具，向量叉积




 |c|=|a×b|=|a| |b|sinα （α为a，b向量之间的夹角）
则 |c| 为向量a ，b所组成的平行四边形的面积
这里是用叉积判断两向量的相对位置关系（非常有用！）



则 a x b &lt; 0 (a在b的逆时针方向 ）...]]></description><category></category></item><item><title><![CDATA[Kubernetes中的PV和PVC]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101785412</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101785412</guid><author>weixin_30242907</author><pubDate>Sun, 29 Sep 2019 17:24:00 +0800</pubDate><description><![CDATA[K8s引入了一组叫作Persistent Volume Claim(PVC)和Persistent Volume（PV） 的API对象，大大降低了用户声明和使用持久化Volume的门槛
在Pod的Volumes中，只要声明类型是persistentVolumeClaim，指定PVC的名字，当创建这个PVC对象，k8s就自动为它绑定一个符合条件的Volume，这个Volume，从PV来
P...]]></description><category></category></item><item><title><![CDATA[span标签]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/102159312</link><guid>https://blog.csdn.net/weixin_30242907/article/details/102159312</guid><author>weixin_30242907</author><pubDate>Sun, 29 Sep 2019 16:59:00 +0800</pubDate><description><![CDATA[&lt;span&gt;在行内定义一个区域，也就是一行内可以被&lt;span&gt;划分成好几个区域，从而实现某种特定效果。&lt;span&gt;本身没有任何属性。
&lt;span&gt; 与&lt;div&gt;
&lt;span&gt;在CSS定义中属于一个行内元素，而&lt;div&gt;是块级元素，我们可能通俗地理解为&lt;div&gt;为大容器，大容器当然可以放一个...]]></description><category></category></item><item><title><![CDATA[HTML5中table标签与form标签的区别]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/102159311</link><guid>https://blog.csdn.net/weixin_30242907/article/details/102159311</guid><author>weixin_30242907</author><pubDate>Sun, 29 Sep 2019 16:30:00 +0800</pubDate><description><![CDATA[html中form表示一个表单,用来把一系列的控件包围起来,然后再统一发送这些数据到目标,比如最常见的注册,你说需要填写的资料,都是被封装在form里的,填写完毕后,提交form内的内容,如果不再form内则不会提交。
table 则是用来布局的 当你填写资料的时候 你有没有发现页面所提供的文本框,文字,按钮之类的..都摆放的非常整齐 这就是table的作用,一行一行的以表格的形式...]]></description><category></category></item><item><title><![CDATA[HTML代码中<%%>、<%=%>、<%:%>各是什么意思?分别用来实现什么的?<%@ %>请问在@里面可以包含些什么内容...]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/102159310</link><guid>https://blog.csdn.net/weixin_30242907/article/details/102159310</guid><author>weixin_30242907</author><pubDate>Sun, 29 Sep 2019 10:59:00 +0800</pubDate><description><![CDATA[&lt;%这里可以写程序语言，如C#后台程序%&gt;， &lt;%=这里可以取到后台非私有的变量值%&gt;
=====================================================
&lt;%%&gt;之间可以写服务器端代码，比如&lt;%for(var i=0;i&lt;10;i++){//执行循环体}%&gt;又如&lt;%for(var i...]]></description><category></category></item><item><title><![CDATA[Kubernetes的Deployment对象使用]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101785407</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101785407</guid><author>weixin_30242907</author><pubDate>Sat, 28 Sep 2019 14:12:00 +0800</pubDate><description><![CDATA[一、什么是Deployment对象
明明ReplicaSet已经可以控制pod的数量了，为什么还需要Deployment？
简单的说，Deployment控制ReplicaSet的多个版本，ReplicaSet控制Pod个数

Deploymen实际上一个两层控制器，遵循一种滚动更新的方式来实升级现有的容器，这个能力的实现，依赖的就是ReplicaSet这个对象
当我们修改了Deploy...]]></description><category></category></item><item><title><![CDATA[Kubernetes的三种探针]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101785405</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101785405</guid><author>weixin_30242907</author><pubDate>Sat, 28 Sep 2019 12:49:00 +0800</pubDate><description><![CDATA[k8s支持存活livenessProbe和就绪readinessProbe两种探针
两种探针都支持以下三种方式
1.exec
通过执行shell命令的方式，判断退出状态码是否是0
示例
      exec:
        command:
        - cat
        - /tmp/healthy
2.tcp
通过TCP请求的方式，是否能建立tcp连接
示例
     ...]]></description><category></category></item><item><title><![CDATA[Kubernetes的ConfigMap对象使用]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101785403</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101785403</guid><author>weixin_30242907</author><pubDate>Sat, 28 Sep 2019 01:20:00 +0800</pubDate><description><![CDATA[ConfigMap和Secret几乎一样，只是Secret会用base64加密，创建方式也可以彩yaml或者文件方式
下面演示一下通过文件创建configmap
创建配置文件my.yaml
name: chenqionghe
light.weight: baby
gym: muscle
通过文件创建ConfigMap
kubectl create configmap my-config ...]]></description><category></category></item><item><title><![CDATA[Kubernetes的Secret对象使用]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101785400</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101785400</guid><author>weixin_30242907</author><pubDate>Fri, 27 Sep 2019 23:53:00 +0800</pubDate><description><![CDATA[Secret可以把想要访问的加密数据，存放到Etcd中，然后Pod可以通过的Volume的方式，访问到Secret保存的信息 ，每当数据修改的时候，Pod挂载的Secret文件也会被修改，特别适合用来存放账户密码
一、创建Secret对象
1. 通过文件创建
生成两个文件，分别是username.txt和password.txt
echo "chenqionghe" &gt; ./use...]]></description><category></category></item><item><title><![CDATA[oracle的jdbc.properties文件配置]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/102159309</link><guid>https://blog.csdn.net/weixin_30242907/article/details/102159309</guid><author>weixin_30242907</author><pubDate>Thu, 26 Sep 2019 20:26:00 +0800</pubDate><description><![CDATA[----------Oracle
#do Oracle JDBC jdbc.driverClassName=oracle.jdbc.driver.OracleDriverjdbc.url=jdbc:oracle:thin:@localhost:1521:orcl jdbc.username=//用户名jdbc.password=//密码jdbc.dialect=org.hibernat...]]></description><category></category></item><item><title><![CDATA[使用vux的x-input组件中show-clear=“true”清除icon点击失效的问题]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101542723</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101542723</guid><author>weixin_30242907</author><pubDate>Thu, 26 Sep 2019 18:36:00 +0800</pubDate><description><![CDATA[问题场景：
在电脑浏览器点击清除icon正常
在手机浏览器，手机微信，微信开发者工具中点击清除icon失效

查看vux中的x-input组件中的源码发现，清除icon使用了v-show显示与隐藏，对应源码如下所示：
在电脑浏览器中，使用触发点击的那一刻，v-show为true，此时可执行clear事件，然后v-show变成false，是正常的。
在手机浏览器，手机微信，微...]]></description><category></category></item><item><title><![CDATA[PowerDesigner使用方法]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/102159308</link><guid>https://blog.csdn.net/weixin_30242907/article/details/102159308</guid><author>weixin_30242907</author><pubDate>Wed, 25 Sep 2019 16:07:00 +0800</pubDate><description><![CDATA[URL:https://cloud.tencent.com/developer/article/1412515

转载于:https://www.cnblogs.com/curedfisher/p/11585370.html]]></description><category></category></item><item><title><![CDATA[PHPstudy2018 后门简单使用]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/102378548</link><guid>https://blog.csdn.net/weixin_30242907/article/details/102378548</guid><author>weixin_30242907</author><pubDate>Wed, 25 Sep 2019 13:53:00 +0800</pubDate><description><![CDATA[首先声明，仅为记录使用。测试用例php-5.4.45 + Apache




index.php



使用Firefox浏览器，可以编辑并且重发http请求





打印出“netuser” base64加密后的密文











本地 “net user”


...]]></description><category></category></item><item><title><![CDATA[为什么Kubernetes使用Pod作为最小调度单元]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101785396</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101785396</guid><author>weixin_30242907</author><pubDate>Sat, 21 Sep 2019 16:49:00 +0800</pubDate><description><![CDATA[一、Pod说明
Pod只是一个逻辑概念，一个原子调度单位，其优势在于

可以统一调度一组容器到指定的node上
共享资源：Pod的容器可以使用localhost进行通信，使用volume进行文件共享、使用socket文件进行本地通信，减少频繁的远程网络请求网络
使容器A和容器B不依赖启动顺序（通过使用infra容器，解决docker volume-from存在的容器启动的先后顺序问题，）...]]></description><category></category></item><item><title><![CDATA[layui模块化使用]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101909193</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101909193</guid><author>weixin_30242907</author><pubDate>Fri, 20 Sep 2019 01:11:00 +0800</pubDate><description><![CDATA[layui模块化使用分为两部分：
　　1.自身模块的设置与使用。2.自定义模块的设置与使用。直接上案例吧
　　　　《a》加载入口模块与自定义模块设置：
　　　　　　　　
　　　　《b》自定义模块名
　　　　　　　　
　　　　《c》使用模块
　　　　　　　　


转载于:https://www.cnblogs.com/changxue/p/11553543.html...]]></description><category></category></item><item><title><![CDATA[spring AOP]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101080704</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101080704</guid><author>weixin_30242907</author><pubDate>Thu, 19 Sep 2019 22:43:00 +0800</pubDate><description><![CDATA[转载于:https://www.cnblogs.com/wangcp-2014/p/11553102.html]]></description><category></category></item><item><title><![CDATA[nginx 设置只能通过域名访问，禁止通过ip访问]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101487696</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101487696</guid><author>weixin_30242907</author><pubDate>Thu, 19 Sep 2019 19:23:00 +0800</pubDate><description><![CDATA[实测效果：
　　

方法：
　　在ngnix的配置文件nginx.conf中,增加如下判断：　　
　　　　if ($host != '域名'){			　　　　　　return 444;		　　　　}
具体位置：



　　


转载于:https://www.cnblogs.com/irishua/p/11551907.html...]]></description><category></category></item><item><title><![CDATA[SpringBoot入门篇--使用IDEA创建一个SpringBoot项目]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101080714</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101080714</guid><author>weixin_30242907</author><pubDate>Thu, 19 Sep 2019 17:07:00 +0800</pubDate><description><![CDATA[随着技术的更新对于开发速度的追求，我们越来越不能忍受的是Spring框架对于集成开发以后大量的配置问题。所以SprigBoot应运而生，SpringBoot框架其实就是在Spring框架的外边包裹上了一层纸，包括减少配置文件，内置Tomcat服务器等等。在这里我们就使用IDEA工具为代表讲解一下SpringBoot在开发过程中会使用到的开发技术。官方推荐的编辑器是STS，STS就是对E...]]></description><category></category></item><item><title><![CDATA[python免密远程执行shell]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101785411</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101785411</guid><author>weixin_30242907</author><pubDate>Thu, 19 Sep 2019 13:54:00 +0800</pubDate><description><![CDATA[使用paramiko库：https://github.com/paramiko/paramiko
简单封装SSH类
import paramiko


class SSH:

    def __init__(self, host, port, user, ssh_key_path, timeout=1800):
        self.host = host
        self...]]></description><category></category></item><item><title><![CDATA[spring入门篇]]></title><link>https://blog.csdn.net/weixin_30242907/article/details/101080713</link><guid>https://blog.csdn.net/weixin_30242907/article/details/101080713</guid><author>weixin_30242907</author><pubDate>Thu, 19 Sep 2019 13:32:00 +0800</pubDate><description><![CDATA[转载于:https://www.cnblogs.com/wangcp-2014/p/11548849.html]]></description><category></category></item></channel></rss>