<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[Jennifering的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/Jennifering</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; Jennifering]]></copyright><item><title><![CDATA[【shell】 屏幕录制与回放]]></title><link>https://blog.csdn.net/Jennifering/article/details/132055376</link><guid>https://blog.csdn.net/Jennifering/article/details/132055376</guid><author>Jennifering</author><pubDate>Wed, 02 Aug 2023 09:56:48 +0800</pubDate><description><![CDATA[1）开始录制终端会话：script -t 2> timing.log -a output.session。3）播放命令序列及输出：scriptreplay timing.log output.session。timing.log：存放时序数据（script将结果时序数据发送到stdout，并重定向至此文件中）output.session：存放终端会话输入命令及输出的结果展示。script命令：录制击键以及击键时机，并将输入和输出结果保存在对应的文件中。2）退出录制会话：exit。]]></description><category></category></item><item><title><![CDATA[系统管理命令 （ps 和 kill）]]></title><link>https://blog.csdn.net/Jennifering/article/details/131082903</link><guid>https://blog.csdn.net/Jennifering/article/details/131082903</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:25:43 +0800</pubDate><description><![CDATA[查找指定进程格式：ps -ef | grep 进程关键字(使用管道|将结果输入到grep 进程关键程序中 ，管道:把一个程序的输出直接连接到另一个程序的输入，而不经过任何中间文件；-aux 除-ef多有内容外，还可显示CPU及内存占有率、进程状态（显示所有包含其他使用者的进程）kill 特定信号指定为PID进程，（可能的信号：进程挂起、等待、中止等，常用的杀死进程）-ef 查看所有进程及其PID进程号、 系统时间、命令详细目录、执行者等。ps 显示当前系统有该用户运行的进程列表。]]></description><category></category></item><item><title><![CDATA[文件目录相关命令]]></title><link>https://blog.csdn.net/Jennifering/article/details/131088932</link><guid>https://blog.csdn.net/Jennifering/article/details/131088932</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:24:34 +0800</pubDate><description><![CDATA[：到匹配正则表达式的行结束；· [-]：范围，如[A-Z]，即 A、B、C 一直到 Z 都符合要求；ln 的链接又软链接和硬链接两种： 软链接就是上面所说的 ln -s ** **，它只会在用户选定的位置上生成一个文件的镜像， 不会重复占用磁盘空间，平时使用较多的都是软链接；ln 为某文件在另一个位置建立一个符号链接，当需要在不同的目录用到相同的文件 时，Linux 允许用户不用在每一个需要的目录下都存放一个相同的文件，而只需将其他目录 下文件用 ln 命令链接即可，这样就不必重复地占用磁盘空间。]]></description><category></category></item><item><title><![CDATA[磁盘挂在命令 mount]]></title><link>https://blog.csdn.net/Jennifering/article/details/131088028</link><guid>https://blog.csdn.net/Jennifering/article/details/131088028</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:22:26 +0800</pubDate><description><![CDATA[f, --fake              空运行；-l, --show-labels       也显示文件系统标签（列出当前已挂载的设备，文件系统名称和挂载点）-r, --read-only         以只读方式挂载文件系统(同 -o ro)-B, --bind              挂载其他位置的子树(同 -o bind)-O, --test-opts <列表>  限制文件系统集合(和 -a 选项一起使用)-w, --rw, --read-write  以读写方式挂载文件系统(默认)]]></description><category></category></item><item><title><![CDATA[磁盘相关命令 free du df fdisk]]></title><link>https://blog.csdn.net/Jennifering/article/details/131086462</link><guid>https://blog.csdn.net/Jennifering/article/details/131086462</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:22:20 +0800</pubDate><description><![CDATA[b, --bytes           等价于 "--apparent-size --block-size=1"--max-depth=0 等价于 --summarize。所显示的数值的单位是 --block-size 选项的参数、DU_BLOCK_SIZE、BLOCK_SIZE。-d, --max-depth=N     仅当目录（指定了 --all 时也包括文件）深度小于或等于。可用的单位有 K、M、G、T、P、E、Z、Y（1024 的幂）以及 KB、MB、...（1000 的幂）。]]></description><category></category></item><item><title><![CDATA[Linux命令：查看环境变量]]></title><link>https://blog.csdn.net/Jennifering/article/details/131080913</link><guid>https://blog.csdn.net/Jennifering/article/details/131080913</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:16:35 +0800</pubDate><description><![CDATA[每个shell有自己特有的变量（set）显示的变量，这个和用户变量是不同的，当前用户变量和使用的是什么shell无关，不管使用什么shell都在，比如HOME，SHELL等这些变量，但shell自己的变量不同shell是不同的，比如BASH_ARGC，BASH等，这些变量只有set才会显示，是bash特有的，export不加参数的时候，显示哪些变量被导出成了。echo $MAIL 此命令指当前用户的邮件存放目录，仅root下可查看，普通用户下查看不到。的变量，包括当前用户的变量;]]></description><category></category></item><item><title><![CDATA[用户管理设置]]></title><link>https://blog.csdn.net/Jennifering/article/details/131083026</link><guid>https://blog.csdn.net/Jennifering/article/details/131083026</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:10:14 +0800</pubDate><description><![CDATA[useradd在创建新用户时，不会为用户创建主目录，不会为用户指定shell版本，不会为用户创建密码，如下图。需要使用adduser创建用户即不会出现以上问题，创建成功后，如下图。（useradd 和 passwd）]]></description><category></category></item><item><title><![CDATA[su:认证失败 linux系统设置root初始化密码]]></title><link>https://blog.csdn.net/Jennifering/article/details/131080380</link><guid>https://blog.csdn.net/Jennifering/article/details/131080380</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:09:16 +0800</pubDate><description><![CDATA[其原因：安装好Linux后第一次使用，此时未设置root的密码，需要以user用户对其进行设置。2.提示输入新的密码，就是root用户密码，此时密码不会显示，需要盲输后回车。1.user用户命令窗口输入 sudo passwd ，回车。3.提示确认密码，输入第2步输入的密码要一致，需要盲输后回车。4.提示更新密码成功后，再次输入su root，回车。5.提示输入密码，此时输入刚才设置的新密码即可。3.未输入密码一直操作会出现最后两项错误提示。6.提示成功后，即已进入到root用户。1.密码不少于8位字符。]]></description><category></category></item><item><title><![CDATA[accept: Bad address]]></title><link>https://blog.csdn.net/Jennifering/article/details/131060740</link><guid>https://blog.csdn.net/Jennifering/article/details/131060740</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:09:11 +0800</pubDate><description><![CDATA[hello是服务端与客户端对接成功后，从客户端传递而来的。]]></description><category></category></item><item><title><![CDATA[connect: Connection refused]]></title><link>https://blog.csdn.net/Jennifering/article/details/131064426</link><guid>https://blog.csdn.net/Jennifering/article/details/131064426</guid><author>Jennifering</author><pubDate>Wed, 07 Jun 2023 20:05:43 +0800</pubDate><description><![CDATA[客户端报错：原因：服务端未启动。]]></description><category></category></item><item><title><![CDATA[server 端：Socket operation on non-socket 错误]]></title><link>https://blog.csdn.net/Jennifering/article/details/131055000</link><guid>https://blog.csdn.net/Jennifering/article/details/131055000</guid><author>Jennifering</author><pubDate>Mon, 05 Jun 2023 19:53:34 +0800</pubDate><description><![CDATA[问题原因：创建socket时，少括号，导致符号优先级不正确，sockfd拿到的值不正确，所以bind绑定时会失败。修改优先级，sockfd拿到正确的值，可以绑定成功，服务端开启监听状态。]]></description><category></category></item><item><title><![CDATA[像素间的基本关系——邻域与邻接]]></title><link>https://blog.csdn.net/Jennifering/article/details/115241646</link><guid>https://blog.csdn.net/Jennifering/article/details/115241646</guid><author>Jennifering</author><pubDate>Fri, 26 Mar 2021 14:06:20 +0800</pubDate><description><![CDATA[像素间的基本关系
图像由像素组成，像素在图像和空间上按规律排列，相互之间有一定的联系

像素的邻域与邻接：
邻域：在一定条件下，与某一像素相邻的像素的集合，反应像素间的空间关系，

4邻域——N4(p)，像素间距离为1


			　
			
			
			(x,y+1)
			
			
			　
			
		
			(x-1,y)
			
			
			p(x,y)
			
			
			(x+1,y)
			
		
			　
			
			
			(x,y-1)
			
			
			　
			...]]></description><category></category></item><item><title><![CDATA[图像数字化]]></title><link>https://blog.csdn.net/Jennifering/article/details/115237240</link><guid>https://blog.csdn.net/Jennifering/article/details/115237240</guid><author>Jennifering</author><pubDate>Fri, 26 Mar 2021 14:03:28 +0800</pubDate><description><![CDATA[图像的数字化
将模拟图像经离散化后，所得到数字表示的图像

   模拟图像数字化：

采样，将在空间上连续的图像转换成离散的采样点（即像素）集操作，样间隔即周期：太大：会发生信息混叠，导致细节无法辨认， 太小：增大数据量

一维采样定理：采样频率与信号频率的关系

二维采样定理：在一维采样定理基础上直接推导出来

量化，把采样后所得的各种像素的灰度值从模拟量化到离散量的转换称为图像灰度的量化。

 两级图像：二值图像，非黑即白

 当图像的采样点数一定时，采用不同量化级数的图像...]]></description><category></category></item><item><title><![CDATA[数字图像处理基本概念]]></title><link>https://blog.csdn.net/Jennifering/article/details/115236766</link><guid>https://blog.csdn.net/Jennifering/article/details/115236766</guid><author>Jennifering</author><pubDate>Fri, 26 Mar 2021 12:24:50 +0800</pubDate><description><![CDATA[数字图像处理的基本概念的理解：

一、图像：是一种图形化描述；也可以说是一个二维的亮度函数，像平面；可以描述客观存在的物体，但描述不完全，不精确

数学角度：I=f(x,，y，,λ，t) （x,y）空间坐标，λ波长，t时间，I光强度

静止的，单色的平面表达式：I=f(x,，y)

二、数字图像：是图像的数字化表示，

    最小单位是像素 I=(m,n) 其中，m,n为坐标，是整数；I为光强度，灰度值表示，非负的整数（像素：颗粒状的）

灰度图像，单色的数字图像，像素可以很小，放大后可以观察...]]></description><category></category></item><item><title><![CDATA[Java连接SQL sever2008数据库]]></title><link>https://blog.csdn.net/Jennifering/article/details/90320737</link><guid>https://blog.csdn.net/Jennifering/article/details/90320737</guid><author>Jennifering</author><pubDate>Sat, 18 May 2019 21:31:14 +0800</pubDate><description><![CDATA[一．安装好SQL Server 2008后，运行 开始 → 所有程序 → Microsoft SQL Server 2018 → 配置工具 →SQL Server配置管理器，如下图所示：打开的窗口如上图所示。在左边栏找到 SQL Server网络配置选项，点开它的小箭头，会看到“【使用的数据库名称】的协议” （图中是AURORA的协议），选中它，看右边栏。将Named Pipes右击启用，同样...]]></description><category></category></item><item><title><![CDATA[Java面向对象三大基本特征]]></title><link>https://blog.csdn.net/Jennifering/article/details/86670673</link><guid>https://blog.csdn.net/Jennifering/article/details/86670673</guid><author>Jennifering</author><pubDate>Mon, 28 Jan 2019 00:43:25 +0800</pubDate><description><![CDATA[三大特征：封装，继承，多态

目录

特征一：封装 

封装是什么：

封装的含义：

实现封装的目的

关键字：---&amp;gt;访问控制符

getter和setter方法：

特征二：继承

在Java中类的继承：

继承的对象：

继承的使用----&amp;gt;Java是单继承，可多层继承    

继承中修饰符protected的使用：

  方法重写与方法重载的区别：

抽象类abstract...]]></description><category></category></item><item><title><![CDATA[Java基础语法总结（一）——类与对象]]></title><link>https://blog.csdn.net/Jennifering/article/details/86609490</link><guid>https://blog.csdn.net/Jennifering/article/details/86609490</guid><author>Jennifering</author><pubDate>Wed, 23 Jan 2019 14:25:21 +0800</pubDate><description><![CDATA[ 


	类和对象的区别

	
				区别
				
				
				类
				
				
				对象
				
			
				抽象和具体
				
				
				抽象的
				
				
				具体的
				
			
				状态
				
				
				静态(static)--&amp;gt;属性和方法适于本类的所有对象
				
				
				动态--&amp;gt;属性随着方法...]]></description><category></category></item><item><title><![CDATA[图片的旋转木马特效所涉及内容]]></title><link>https://blog.csdn.net/Jennifering/article/details/82227726</link><guid>https://blog.csdn.net/Jennifering/article/details/82227726</guid><author>Jennifering</author><pubDate>Mon, 03 Sep 2018 19:10:29 +0800</pubDate><description><![CDATA[旋转木马所需要用到的有关属性和方法：

       HTML DOM 元素对象:querySelector()返回匹配指定 CSS 选择器元素的第一个子元素。

       HTML DOM 元素对象:是 HTML5中引入的新方法，返回文档中匹配的CSS选择器的所有元素节点列表，因此在使用该方法时需要注意HTML中所设的节点元素。

       HTML DOM 元素对象:addEventL...]]></description><category></category></item><item><title><![CDATA[利用js、jQuery编写轮播图]]></title><link>https://blog.csdn.net/Jennifering/article/details/82226669</link><guid>https://blog.csdn.net/Jennifering/article/details/82226669</guid><author>Jennifering</author><pubDate>Mon, 03 Sep 2018 19:05:09 +0800</pubDate><description><![CDATA[ 旋转木马的实现代码：

&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
           &amp;lt;meta charset=&quot;utf-8&quot;&amp;gt;
           &amp;lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&amp;gt;
           &am]]></description><category></category></item><item><title><![CDATA[JavaScript学习笔记]]></title><link>https://blog.csdn.net/Jennifering/article/details/82154270</link><guid>https://blog.csdn.net/Jennifering/article/details/82154270</guid><author>Jennifering</author><pubDate>Thu, 30 Aug 2018 19:10:37 +0800</pubDate><description><![CDATA[12.字符串String方法：

charAt():返回索引指定的字符所在的位置的字符

       Eg:  var str=&quot;abcdef&quot;;

        document.write(str.charAt(“下标”));

            如果下标为0，则页边上的值为a

            如果下标为1，则页边上的值为b           

            ...]]></description><category></category></item></channel></rss>