hcia测试题

  • Post author:
  • Post category:其他

1、华为设备的RIP进程下,宣告网络10.1.1.1/30时,下列配置正确的是(CD)。 A. network 10.1.1.0 B. undo summary network 10.1.1.0 C. network 10.0.0.0 D. undo summary network 10.1.0.0 2、VRP系统中的登陆超时时间需要在VTY接口下配置。(B) A.正确 B.错误 vrp系统中的登…

继续阅读 hcia测试题

微信小程序云函数绕过https和备案

  • Post author:
  • Post category:小程序

微信小程序云函数 demo地址 在微信小程序中,只要牵扯到请求Api的问题,微信必要这些域名备案,https等等。 但是有的国外的Api你又不能去备案,那么如何操作呢? 使用云开发中转 [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Of0MmaJS-1592922565323)(http://myblogoss.aimezhao.online/20200519203…

继续阅读 微信小程序云函数绕过https和备案

对于vue中$emit的理解

  • Post author:
  • Post category:vue

$emit emit的意思是发出、射出。 子组件可以通过props接收父组件传递过来的数据。 子组件也可以用过$emit来触发父组件的自定事件,再说的通俗易懂一些就是子组件可以调用父组件的方法。 用法 $emit( eventName, […args] ) eventName:这是一个事件名,会绑定一个方法。当组件触发事件后,将调用这个方法。 […args]:附加的参数,会被抛出,由上述绑定的方法…

继续阅读 对于vue中$emit的理解

CentOS dnsmasq 功能外篇——配置PXE服务并使用kickstart安装配置系统

  • Post author:
  • Post category:其他

放大招,师父的blog. PXE: http://debugo.com/dnsmasq-pxe/ KICKSTART: http://debugo.com/kickstart-install-centos/ 一、PXE篇 1.配置PXE服务的工作都在/etc/dnsmasq.conf文件里: # 【A】配置DHCP启动的程序 # Set the boot filename for netboot/…

继续阅读 CentOS dnsmasq 功能外篇——配置PXE服务并使用kickstart安装配置系统

【ZOJ3916 2016年浙大2月月赛B】【贪心 STL-SET】Buy Cakes n蛋糕k张折扣券蛋糕双价最多能买蛋糕数

  • Post author:
  • Post category:其他

Buy Cakes Time Limit: 2 Seconds Memory Limit: 65536 KB Andy is always a hungry man. He never stopped eating something sweet, expecially cakes. Yesterday his mother gave him some pocket money, and now,…

继续阅读 【ZOJ3916 2016年浙大2月月赛B】【贪心 STL-SET】Buy Cakes n蛋糕k张折扣券蛋糕双价最多能买蛋糕数

IntelliJ IDEA 配置go语言环境(图文教程)

  • Post author:
  • Post category:其他

首先确保你电脑安装了go并配置了环境变量,我这是Win10,golang版本1.17.3。cmd输入go version 回车,出现版本信息,说明本地环境没问题。 配置 Idea 我的 idea版本2019.3.5发行的。 选择File-》settings-》Plugins-》搜索go插件,点击install(可能要重启)。 最后别忘了apply和ok。 File -》Create New Pro…

继续阅读 IntelliJ IDEA 配置go语言环境(图文教程)

STM32串口空闲中断,中断标志位无法清除

  • Post author:
  • Post category:其他

本节目录 今天想使用STM32的串口空闲中断作接收,调了1个小时,发现串口空闲中断无法被清除,网上搜索半天发现,能用清除的库函数清除该中断。我又回头看了一下手册。果真如此,问题已解决。 这是该文章链接 版权声明:本文为qq_26849933原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。原文链接:https://blog.csdn.net/qq_26849933…

继续阅读 STM32串口空闲中断,中断标志位无法清除

用命令行cmd编译C++ in android 应用

  • Post author:
  • Post category:其他

地址: http://docs.opencv.org/doc/tutorials/introduction/android_binary_package/android_dev_intro.html 标题:building application native part from command line 注:强烈建议使用cmd.exe而不是使用cygwin。 1打开平台,到应用的根目录, 2运行…

继续阅读 用命令行cmd编译C++ in android 应用

VIM输入特殊字符

  • Post author:
  • Post category:其他

VIM输入特殊字符 二合字母 digraph digraphs Digraphs 二合字母用来输入不能用普通键盘输入的字符。它们通常是可显示的非 ASCII 字符。二 合字母比用 CTRL-V 输入十进制编码更方便记忆 (见 |i_CTRL-V|)。 用户手册 |24.9| 有二合字母的简短介绍。一个替代方案是用 ‘keymap’ 选项。 定义二合字母 |digraphs-define| 使用二合…

继续阅读 VIM输入特殊字符

memcached的安装(centOS7)

  • Post author:
  • Post category:其他

安装libevent,命令如下 yum install libevent libevent-devel 安装memcached wget http://memcached.org/latest tar -zxvf latest cd memcached-1.4.24/ ./configure --prefix=/usr/local/memcached make && make in…

继续阅读 memcached的安装(centOS7)