<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[hellcvr的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/hellcvr</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; hellcvr]]></copyright><item><title><![CDATA[543210 项目管理]]></title><link>https://blog.csdn.net/hellcvr/article/details/145711767</link><guid>https://blog.csdn.net/hellcvr/article/details/145711767</guid><author>hellcvr</author><pubDate>Thu, 27 Feb 2025 22:20:50 +0800</pubDate><description><![CDATA[项目：一个临时性的产品 - 独特，临时性过程组：启动、规划、执行、收尾、监控项目管理三重制约：范围、质量、成本。]]></description><category></category></item><item><title><![CDATA[Pandas 数据处理常用方法]]></title><link>https://blog.csdn.net/hellcvr/article/details/127139948</link><guid>https://blog.csdn.net/hellcvr/article/details/127139948</guid><author>hellcvr</author><pubDate>Sun, 02 Oct 2022 10:02:31 +0800</pubDate><description><![CDATA[个人总结的一些常用Pandas使用方法]]></description><category></category></item><item><title><![CDATA[Mybatis Plus 学习笔记]]></title><link>https://blog.csdn.net/hellcvr/article/details/126704606</link><guid>https://blog.csdn.net/hellcvr/article/details/126704606</guid><author>hellcvr</author><pubDate>Mon, 05 Sep 2022 14:30:28 +0800</pubDate><description><![CDATA[Mybatis-plus简述对Mybatis的扩展，不修改，增加功能，为简化而生！官方文档：https://baomidou.com/]]></description><category></category></item><item><title><![CDATA[精通Scrapy网络爬虫 读书笔记]]></title><link>https://blog.csdn.net/hellcvr/article/details/126704479</link><guid>https://blog.csdn.net/hellcvr/article/details/126704479</guid><author>hellcvr</author><pubDate>Mon, 05 Sep 2022 14:25:15 +0800</pubDate><description><![CDATA[Scrapy必知必会的核心框架技术细节]]></description><category></category></item><item><title><![CDATA[MySQL 技术内幕 读书笔记]]></title><link>https://blog.csdn.net/hellcvr/article/details/126704267</link><guid>https://blog.csdn.net/hellcvr/article/details/126704267</guid><author>hellcvr</author><pubDate>Mon, 05 Sep 2022 14:19:16 +0800</pubDate><description><![CDATA[MySQL必知必会核心技术原理]]></description><category></category></item><item><title><![CDATA[王爽-汇编语言 万字学习总结]]></title><link>https://blog.csdn.net/hellcvr/article/details/125381885</link><guid>https://blog.csdn.net/hellcvr/article/details/125381885</guid><author>hellcvr</author><pubDate>Mon, 20 Jun 2022 22:53:33 +0800</pubDate><description><![CDATA[CPU需要和内存交互，用到的是外部总线前提须知：我们对总线描述的多少位、多少宽度指的是CPU对其组件交互的一种能力，是一种能力，外部总线由三部分组成：地址总线地址总线有N条地址线，地址总线宽度为N，拥有最多寻找2^N个地址的能力数据总线数据总线的宽度为N，则可以一次性传输 N / 8 个Byte的数据，比如8086数据宽度为16，则一次可最多传输2个字节的数据控制总线CPU对外部器件的控制是通过控制总线进行的，控制总线是一个总称，总线是一些不同控制线的集合。有多少根控制线总线，就意味着CPU提供了对外多少种]]></description><category></category></item><item><title><![CDATA[一文解决前后端分离导致的跨域问题Vue+Springboot]]></title><link>https://blog.csdn.net/hellcvr/article/details/124416454</link><guid>https://blog.csdn.net/hellcvr/article/details/124416454</guid><author>hellcvr</author><pubDate>Mon, 25 Apr 2022 22:44:03 +0800</pubDate><description><![CDATA[问题：axios访问后端数据导致的跨域以及每次访问session不一样
前端部分
我的vue项目创建命令：
vue init webpack project_name

vue项目创建建议和我的一致，这样才能保证项目目录文件一致。

index.js文件如图：

添加如下：
    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
      'api': {
        tar]]></description><category></category></item><item><title><![CDATA[常见反爬虫策略与绕过方法]]></title><link>https://blog.csdn.net/hellcvr/article/details/123945218</link><guid>https://blog.csdn.net/hellcvr/article/details/123945218</guid><author>hellcvr</author><pubDate>Sun, 03 Apr 2022 21:48:41 +0800</pubDate><description><![CDATA[python3反爬虫绕过笔记
信息校验型反爬


User-Agent反爬
反爬：检测到请求头有python或者其他就禁止访问
解决方法：在请求中添加正常请求头


Cookie反爬
反爬：检测到cookie不符合规则或者没有cookie就禁止访问
解决方法：请求头中加入Cookie，如果解决不了就分析js文件cookie的生成规则，自己实现cookie的规则


签名验证反爬
反爬：在访问中提交其他的参数，类似于cookie反爬
解决方法：分析js文件，自己实现签名验证规则



动态渲染反爬
针对异步请]]></description><category></category></item><item><title><![CDATA[yolov5 教学入门使用]]></title><link>https://blog.csdn.net/hellcvr/article/details/121445060</link><guid>https://blog.csdn.net/hellcvr/article/details/121445060</guid><author>hellcvr</author><pubDate>Sat, 20 Nov 2021 20:37:54 +0800</pubDate><description><![CDATA[安装


先把项目下载到本地
git clone https://github.com/ultralytics/yolov5.git

也可以到网站下载压缩包解压



我用的原生python，希望创造一个独立的虚拟环境，所以这里用到了virtualenv，在你的工作运行
python -m venv yolo

会在当前文件夹创建一个纯净的python环境，以后下载的所有包都在yolo文件夹里，而不会和你原生环境的包版本冲突，当然你也可以跳过这一步，不创建虚拟环境，直接在原生环境安装依赖。
运行成功后进入]]></description><category></category></item><item><title><![CDATA[Sublime下的python配置]]></title><link>https://blog.csdn.net/hellcvr/article/details/108692170</link><guid>https://blog.csdn.net/hellcvr/article/details/108692170</guid><author>hellcvr</author><pubDate>Sun, 20 Sep 2020 13:14:40 +0800</pubDate><description><![CDATA[Sublime下的python配置
1. python配置
打开Sublime选择工具下的编译系统，点击新建编译系统


复制下面的代码，Ctrl+S保存文件，保存到默认的文件夹命名为python3.sublime-build
{

"cmd":["python.exe", "-u", "$file"],
 
"path":"python",
 
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
 
"selector": "source.pytho]]></description><category></category></item></channel></rss>