码迷,mamicode.com
首页 >  
搜索关键字:open ssh    ( 40947个结果
简单的python爬虫图片获取
# 图片爬取 import re import urllib import urllib.request def gethtml(url): page=urllib.request.urlopen(url) html=page.read() return html def getimg(html): ...
分类:编程语言   时间:2021-03-16 14:08:34    阅读次数:0
程序的修改!
一、 系统环境: Windows xp以上版本,电脑 二、 设计内容: 程序一共定义五个类,继承关系如图所示 首先我进行了主菜单主函数,会员登录,书记信息查看,购书。又在这些主菜单上进行相对应的子菜单的函数。主菜单如下: #include<string> #include<iostream> #in ...
分类:其他好文   时间:2021-03-16 14:02:51    阅读次数:0
OSI Model
https://www.imperva.com/learn/application-security/osi-model/ What Is the OSI Model The Open Systems Interconnection (OSI) model describes seven layer ...
分类:其他好文   时间:2021-03-16 14:01:01    阅读次数:0
文件操作
# 1. 文件操作# 一个函数: open()函数,创建一个文件对象# 三个方法:read/write/close # 2.open()函数# 默认以只读方式r打开文件,并返回文件对象# open(filename, mode) filename文件名 mode访问模式# 2.1 打开文件# fil ...
分类:其他好文   时间:2021-03-16 12:01:10    阅读次数:0
通过VS Code实现markdown文件的预览
通过VS Code来实时预览markdown文件的效果,操作如下 新建一个文本文件,然后将其后缀名改成.md 然后用VS Code打开文件 打开命令行,在上菜单栏的view->command palette 或者用快捷键Ctrl+Shift+p 在命令行中输入Markdown: Open Previ ...
分类:其他好文   时间:2021-03-15 11:31:18    阅读次数:0
地址经纬度解析
python\小脚本\地址经纬度解析.py # -*- coding: utf-8 -*- """ Created on Thu Nov 24 10:10:13 2016 @author: Acer """ # -*- coding: utf-8 -*- #import sys, urllib, u ...
分类:其他好文   时间:2021-03-15 11:02:26    阅读次数:0
4-文件与os
文件备份与重命名 # 2种方式打开文件、备份文件、 import os # 打开文件 class FileOpen: @staticmethod def file_open1(file): fp = open(file, "w+", encoding="utf-8") # 无需flush,因为clo ...
分类:其他好文   时间:2021-03-15 10:54:22    阅读次数:0
ESLint is disabled since its execution has not been approved or denied yet
VS Code 装好ESLint 插件报黄线的问题,具体解决方法如下所示: ESLint is disabled since its execution has not been approved or denied yet. Use the light bulb menu to open the ...
分类:移动开发   时间:2021-03-15 10:51:43    阅读次数:0
MSF原则
一、MSF原则概述 1 、推动信息共享与沟通( Foster open communication ) 2 、为共同的远景工作( Work toward a shared vision ) 3 、充分授权和信任( Empower team members ) 4 、各司其职,对项目共同负责( Est ...
分类:其他好文   时间:2021-03-12 14:07:48    阅读次数:0
nginx 1.8编译安装
##安装依赖 yum install gcc gcc-c++ automake pcre pcre-devel zlip zlib-devel openssl openssl-devel ##解压 tar xf nginx-1.18.0.tar.gz -C /data/ ##创建虚拟用户 usera ...
分类:其他好文   时间:2021-03-12 13:27:36    阅读次数:0
40947条   上一页 1 ... 30 31 32 33 34 ... 4095 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!