配置示例 # setting.py配置如下 ## 访问 http://IP/static/***.css STATIC_URL = '/static/' ## python manage.py collectstatic时,把所有静态文件聚集到此目录下 STATIC_ROOT = os.path.j ...
分类:
其他好文 时间:
2021-06-10 17:37:06
阅读次数:
0
#encoding=utf-8 import pandas as pd import os import csv def concat_csv(filename,dirpath): with open(filename,'w') as f: cw=csv.writer(f) cw.writerow( ...
分类:
其他好文 时间:
2021-06-09 15:30:20
阅读次数:
0
Prerequisites: Node OS IP k8s-master CentOS7 192.168.137.161 k8s-node1 CentOS7 192.168.137.162 Now we have 2 working CentOS virtual machine, which can ...
分类:
其他好文 时间:
2021-06-08 23:40:34
阅读次数:
0
import multiprocessing, time, os# def pro(name):# print('hello', name, time.ctime())## if __name__ == '__main__':# l = []# for t in range(4):# t = mul ...
分类:
系统相关 时间:
2021-06-08 23:20:39
阅读次数:
0
URL: https://www.sheffield.ac.uk/FRAX/tool.aspx?country=2 country=2代表中国 F12打开开发者模式 Network——XHR Headers是浏览器向服务器发送的消息 python第一行加上 # -*- coding: utf-8 - ...
分类:
Web程序 时间:
2021-06-08 23:04:07
阅读次数:
0
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:
编程语言 时间:
2021-06-07 20:42:48
阅读次数:
0
# # Django_静态文件夹的配置 # settings文件夹配置内容 # # STATIC_URL = '/static/' #别名,引用名 为了后端的更改不会影响前端的引入,避免造成前端大量修改 # STATICFILES_DIRS = ( # os.path.join(BASE_DIR," ...
分类:
其他好文 时间:
2021-06-07 20:39:36
阅读次数:
0
Docker和传统虚拟机相比,有轻量化,灵活,但是安全性隔离性更差的特点。 这个轻量化,灵活,平常我们从整个应用层面上讲,因为Docker把底层的OS给下线了,只保留应用需要的库和组件,所以从隔离机制来讲,安全性也更差。那我们有没有更深入的理解呢,当然是有的。 Docker的所有镜像包(Image) ...
分类:
其他好文 时间:
2021-06-07 20:18:48
阅读次数:
0
Cortex-M3 系列处理器是基于 ARMv7-M 架构的处理器,应用非常广泛,为了能够深入的分析在此平台上跑 RTOS 的各种细节,所以有必要写一篇关于 CM3 处理器的结构相关的文章(CM4 类似),在 OS 调度初始化、系统调用、进程调度等方面的细节均是和具体处理器息息相关,所以先让我们来看 ...
分类:
其他好文 时间:
2021-06-07 20:06:56
阅读次数:
0
2021-06-06 关键字:Shell具体应用 需求:在指定目录中查找文件名包含指定字符的文件 - 支持自定义关键字查找 - 支持自定义查找路径及查找关键字 使用方式: 假设这个工具的名称为:fgtool.sh (取意 shell tool for find and grep)。 直接运行此工具, ...
分类:
系统相关 时间:
2021-06-06 19:18:00
阅读次数:
0