码迷,mamicode.com
首页 >  
搜索关键字:open stack    ( 34043个结果
通过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
汇编语言
assume cs:code,ss:stack stack segment db 128 dup (0) stack ends code segment start: mov ax,stack mov ss,ax mov sp,128 call copy_boot ;设置CS:IP为0:7e00h ...
分类:编程语言   时间:2021-03-11 20:35:32    阅读次数:0
Redis 安装配置
Redis 安装 安装准备: redis 压缩包 官网下载地址:https://redis.io/download 安装步骤: 第一步:安装 gcc 编译器 官网发布的 Redis 压缩包是 C 语言源码文件,要安装 Redis 需要 gcc 编译器来编译源码 输入安装 gcc 命令,如下: [ro ...
分类:其他好文   时间:2021-03-10 13:27:29    阅读次数:0
PHP配置 3. 配置open_basedir
open_basedir将网站限定在指定的目录,做目录的隔离 先在php.ini中设置open_basedir: # vim /usr/local/php/etc/php.ini //搜索open_basedir,改成如下 open_basedir = /usr/local/apache2.4/do ...
分类:Web程序   时间:2021-03-10 13:11:22    阅读次数:0
django error: django.db.utils.IntegrityError: NOT NULL constraint failed
用了一段时间的 python 的 django 框架,在修改 sqlite 数据库的时候遇到如下错误:django.db.utils.IntegrityError: NOT NULL constraint failed: new__ImageRecognition_answercx.user_id ...
分类:数据库   时间:2021-03-10 13:09:41    阅读次数:0
34043条   上一页 1 ... 29 30 31 32 33 ... 3405 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!