【多子级路由共享父级资源】不同子路由局域网打印机共享、文件共享

要求:能保证每台PC网络的正常使用,不会发生地址的冲突。不添加其他设备。 思路:将副路由器的交换机功能打开,关闭DHCP,进而关闭子路由分配和管理IP地址的功能。 缺点:丧失子路由的WiFi。 实现过程:副路由器LAN口直连主路由器的LAN口,进入副路由管理界面,关闭副路由器的DHCP。将副的当作交换机使用即可。这样子路由仅有交换机功能。
分类: 编程语言 发布时间: 06-18 10:10 阅读次数: 0

下周要去女朋友家,第一次去应该给未来老丈人带什么礼物合适,要轻奢、时尚有独特性的,求推荐?

没什么好推荐的,直接介绍一下我当时是怎么做的给你参考哈。 具体过程: 一.去之前要准备好的: 1.了解习俗,礼仪,家庭情况 比如祝酒词,餐桌礼仪,不要坐上方,最好等长辈先落座!了解父母职业,家庭状态(如是否退休),业务爱好,会接触的家庭成员等! 2.着装得体! 去女友家做正式拜访的前一天,一定要洗澡,如果在女方家里见面,那么整齐的休闲装就可以了。如果是约在酒店或者茶社见面,那最好还是穿正式的西装+皮鞋。 切记,男孩们要把自己收拾的干净利索,指甲缝不要有污垢、皮鞋要擦亮、头发整齐最好不要用发胶、
分类: 编程语言 发布时间: 06-18 10:10 阅读次数: 0

经典算法,历久弥新—ORBSLAM的EPNP算法理论与应用

三步走,全都有!!! 第一篇博客: 深入EPnP算法 第二篇博客: ORBSLAM2中的EPnP算法 第三篇博客: 一起学ORBSLAM2(9)ORBSLAM的PNP解决方案
分类: 编程语言 发布时间: 06-18 10:10 阅读次数: 0

自动化运维工具ansible之playbook的使用

playbook? 1.简介 Playbooks是一种完全不同的运用Ansible的方式,而且是非常之强大的;也是系统ansible命令的集合,其利用yaml语言编写,运行过程,ansbile-playbook命令根据自上而下的顺序依次执行。 简单来说,Playbooks 是一种简单的配置管理系统与多机器部署系统的基础。与现有的其他系统有不同之处,且非常适合于复杂应用的部署。 同时,Playbooks开创了很多特性,它可以允许你传输某个命令的状态到后面的指令,如你可以从一台机器的文件中抓取内容
分类: 其他 发布时间: 06-18 10:10 阅读次数: 0

年薪50W的Java程序员转大数据学习路线

Java是全世界使用人数最多的编程语言。不少程序员选择Java作为编程第一语言,随之而来的是Java程序员接近饱和的人才市场。由此,随着大数据时代的到来,有很多Java程序员想要转行大数据。不得不说,大数据行业可以说是为Java程序员量身打造的一个朝阳行业!为什么呢?
分类: 企业开发 发布时间: 06-18 10:10 阅读次数: 0

网狐6603编译某些子游戏的时候,出现fatal error LNK1179:错误

fatal error LNK1179: invalid or corrupt file: duplicate comdat “XXX” 解决方法,找到(ocx和dll都是类似的) \6603_VS2013\游戏组件\开发库\Include\ShareControlHead.h #import “Flash.ocx” named_guids 改为 #import “Flash.ocx” named_guids, exclude(“IFlashObjectInterface”), exclude
分类: 其他 发布时间: 06-18 10:02 阅读次数: 0

网狐6603程序代码编译环境配置

程序代码编译环境配置 1.配置visual studio2003编译环境 编译代码前,需要先对VC环境进行配置。 首先,代码需要用到“Directx SDK 9.0c”这个库,因此在编译前请把这个库放在D盘的根目录下。在“运营版\整理好的6603源码”目录下,将Directx SDK 9.0c文件夹拷贝到D盘根目录。 打开Microsoft Visual Studio .NET2003,选择“工具->选项->项目->VC++目录”,增加“包含文件”目录“D:\Directx SDK 9.0c\
分类: 其他 发布时间: 06-18 10:02 阅读次数: 0

skynet编译错误解决方法

得解决方案如下 安装autoconf,libreadline-dev apt-get install autoconf apt-get install libreadline-dev
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

Emacs Python 自动补全--Elpy

转载自:https://www.cnblogs.com/asmer-stone/p/5619015.html 安装方法: 首先,安装一些依赖包: # Either of these pip install rope pip install jedi # flake8 用来检查语法错误 pip install flake8 # importmagic 用来自动引入需要的包 pip install importmagic # autopep8 用来检查PEP8规范 pip install auto
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

在windows下emacs使用tramp时打开远程shell需要增加额外配置

加入下面的配置 (setq explicit-shell-file-name "/bin/bash")
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

emacs 修改buffer编码

转载自https://blog.csdn.net/liumf2005/article/details/6400576 查看当前buffer的编码:M-x describe-coding-system 按C-x <RET> r <TAB> 列出所有编码 以指定编码重读当前buffer:C-x <RET> r utf-8,(revert-buffer-with-coding-system) 改变当前buffer的编码:C-x <RET> f uft-8,(set-buffer-file-codin
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

golang websocket 跨域问题

转载自:https://blog.csdn.net/imliutao2/article/details/80838975 现象:request origin not allowed by Upgrader.CheckOrigin 解决办法:修改golang中的websocket upgrader 配置如下 var upgrader = websocket.Upgrader{ // 解决跨域问题 CheckOrigin: func(r *http.Request) bool { return t
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

Selenium 学习笔记,第一个例子就报错,解决方法

from selenium import webdriver from selenium.webdriver.common.keys import Keys driver = webdriver.Firefox() driver.get("http://www.python.org") assert "Python" in driver.title elem = driver.find_element_by_name("q") elem.clear() elem.send_keys("pyc
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

树莓派 使用python face_recognition做人脸识别

原文地址:https://www.pyimagesearch.com/2018/06/25/raspberry-pi-face-recognition/ In last week’s blog post you learned how to perform Face recognition with Python, OpenCV, and deep learning. But as I hinted at in the post, in order to perform face recogn
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

用树莓派几分钟搭建一个网络监控

原文地址:https://pimylifeup.com/raspberry-pi-webcam-server/ This Raspberry Pi webcam server tutorial will take you through on how to have your very own Webcam that is visible on a web page. If you’re after more of a security like system, then check out
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

python人脸识别模块 face_recognition

Project description Face Recognition Recognize and manipulate faces from Python or from the command line with the world’s simplest face recognition library. Built using dlib’s state-of-the-art face recognition built with deep learning. The model has
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

python pynput 实现键鼠录制

#-*- coding:utf-8 -*- from pynput.mouse import Listener as Mouse_Listener from pynput.keyboard import Key from pynput.keyboard import Listener as Keyboard_Listener import pickle import threading import time from pynput.mouse import Button lock = t
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

Golang(go语言)http上传图片和显示图片

转载自:https://aiezu.com/article/go_image_upload_and_show.html package main; import ( "fmt" "io" "io/ioutil" "os" "path" "net/http" "errors" "strings" ) func main() { http.HandleFunc("/upload/", uploadHandle) // 上传
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

facenet 搭建人脸识别库

转载自:https://www.cnblogs.com/gmhappy/p/9472387.html 选择的方式是从百度下载明星照片 照片下载,downloadImageByBaidu.py # coding=utf-8 """ 爬取百度图片的高清原图 """ import re import sys import urllib import os import requests def get_onepage_urls(onepageurl): if not onepag
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0

python使用requests爬虫抓取美女图片网站图片

import requests from lxml import etree from urllib.request import urlretrieve url = 'https://www.2717.com' show_num = 0 for page_num in range(217): page = 'https://www.2717.com/ent/meinvtupian/list_11_' + str(page_num+1) + '.html' result
分类: 其他 发布时间: 06-18 10:01 阅读次数: 0