ARP攻击和欺骗原理讲解

  • Post author:
  • Post category:其他

♥️作者:小刘在这里 ♥️每天分享云计算网络运维课堂笔记,努力不一定有收获,但一定会有收获加油!一起努力,共赴美好人生! ♥️夕阳下,是最美的,绽放,愿所有的美好,再疫情结束后如约而至。 1.ARP: 地址解析协议     把已知IP地址,解析成Mac地址     网络通信的基础协议     注:ARP协议分为两种包类型         ARP request       请求包         …

继续阅读 ARP攻击和欺骗原理讲解

tensorflow 2.x下checkpoint转为pb模型

  • Post author:
  • Post category:其他

查询了很多,主要是使用了tf1的方式,此处给出tf2的方式供大家参考: 这里模型会存为4个文件:assets/variables/keras_metadata.pb/saved_model.pb import tensorflow as tf from model_1 import Aggre_model def saved_model(): SEQUENCE = 4000 model = my_…

继续阅读 tensorflow 2.x下checkpoint转为pb模型

ubuntu16.04为gitlab/github配置ssh协议

  • Post author:
  • Post category:其他

目前对gitlab或者github进行代码clone下载主要是通过http协议和ssh协议,本文介绍下如何在ubuntu16.04下为gitlab/github配置ssh协议。 一.首先需要安装ssh服务,默认情况下是没有安装的,可以直接查看:ps -e | grep ssh*,显示sshd表明安装成功,否则需要安装: sudo apt-get install openssh-server sud…

继续阅读 ubuntu16.04为gitlab/github配置ssh协议

ROS中的坐标变换

  • Post author:
  • Post category:其他

参考图书1 简介 坐标系通过三维空间中的一个点来定义,这个点p被称为坐标原点,从坐标原点延伸出来三个向量,n,t,b,分别对应局部坐标系中的x,y,z。向量轴是标准化的,并且符合右手定则: b=n×t b = n × t 。 三个方向的坐标轴变换可以堆在一起,用 3×3 3 × 3 的变换矩阵R表示坐标轴的旋转变换 R=⎡⎣⎢⎢⎢nxnynztxtytzbxbybz⎤⎦⎥⎥⎥ R = [ n x …

继续阅读 ROS中的坐标变换

boost库的添加

  • Post author:
  • Post category:其他

1.去www.boost.org下载最新的boost,我下载了boost_1_46_1.7z 2.(我放在D:/cpp目录下)解压到当前文件夹 3.打开VS2010->VS TOOLS->VS命令提示 4.CD D:/cpp/boost_1_46_1  5.输入bootstrap,便生成bjam.exe文件 6.输入bjam toolset=msvc-10.0 variant=debu…

继续阅读 boost库的添加

centos7修改主机名

  • Post author:
  • Post category:其他

http://www.itzgeek.com/how-tos/linux/centos-how-tos/change-hostname-in-centos-7-rhel-7.html#axzz3M8Skjvq4 After installing the CentOS 7 on my server, i tried to change host name by modifying the /etc/…

继续阅读 centos7修改主机名

BZOJ1042: [HAOI2008]硬币购物

  • Post author:
  • Post category:其他

Description 硬币购物一共有4种硬币。面值分别为c1,c2,c3,c4。某人去商店买东西,去了tot次。每次带di枚ci硬币,买si的价值的东西。请问每次有多少种付款方法。 Input 第一行 c1,c2,c3,c4,tot 下面tot行 d1,d2,d3,d4,s Output 每次的方法数 Sample Input 1 2 5 10 2 3 2 3 1 10 1000 2 2 2 9…

继续阅读 BZOJ1042: [HAOI2008]硬币购物

左右对齐输出三角形

  • Post author:
  • Post category:其他

''' 功能:关于左右对其以 * 的形式输出左右对其的三角形 作者:Sherry 时间:2021.11.18 ''' for i in range(1, 11): #这是给定一个循环次数 10 a = '*' * i #将 * 的数量乘以 i 循环 print(a.rjust(10)) #因为在 rjust 之前必须要有一个str(数据) # #所以我们在上面有一个变量 a #rjust右对齐的时…

继续阅读 左右对齐输出三角形

WAVECOM CDMA AT指令–拨号&挂断

  • Post author:
  • Post category:其他

拨号:   命令:ATD<destination phone number>[;]   返回:       Verbose result codeNumeric code (with ATV0 set)DescriptionOK0Command executed (voice)CONNECT <speed>10,11,12,13,14,15If the call succe…

继续阅读 WAVECOM CDMA AT指令–拨号&挂断

Spring-Mvc配置文件

  • Post author:
  • Post category:其他

Spring-Mvc配置文件: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://w…

继续阅读 Spring-Mvc配置文件