码迷,mamicode.com
首页 >  
搜索关键字:firefox os    ( 145269个结果
个人冲刺(四)——体温上报app(二阶段)
冲刺任务:完成用户注册功能和数据库类 RegisterActivity.java package com.example.helloworld; import android.content.Intent; import android.os.Bundle; import android.text. ...
分类:移动开发   时间:2021-06-11 18:08:57    阅读次数:0
django static/media配置
配置示例 # 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
使用pandas合并结构相同的csv文件
#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
5 - CentOS system configuration before k8s installation
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
多进程的调用(multiprocessing.Process)
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
Selenium+WebDriver 各浏览器对应驱动下载与使用
WebDriver驱动下载与使用 1. Firefox(火狐)浏览器驱动 下载地址:https://github.com/mozilla/geckodriver/releases/ 2. Chrome浏览器驱动 下载地址:http://chromedriver.storage.googleapis. ...
分类:Web程序   时间:2021-06-08 23:11:55    阅读次数:0
改造 Firefox 浏览器——GitHub 热点速览
作者:HelloGitHub-小鱼干 上周推荐了一个可以在浏览器上用 VS Code 的项目,这次 Firefox-UI-Fix 带你给 Firefox 来个大变身,在它现有 Proton UI 下进行你的 UI 改造。当然浏览器在 GitHub 上的玩法并不只有这一种,gotty 能让你将浏览器当 ...
分类:其他好文   时间:2021-06-08 22:47:02    阅读次数:0
python解压zip文件
@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_静态文件
# # Django_静态文件夹的配置 # settings文件夹配置内容 # # STATIC_URL = '/static/' #别名,引用名 为了后端的更改不会影响前端的引入,避免造成前端大量修改 # STATICFILES_DIRS = ( # os.path.join(BASE_DIR," ...
分类:其他好文   时间:2021-06-07 20:39:36    阅读次数:0
使用firefox打开网页报错——Error: no display specified
想在linux环境下打开一个网页,环境描述:在窗口模式下,打Terminal,然后从本地服务器ssh到了另一个服务器,想执行firefox命令打开一个网页,如下 [root@pc207 ~]# firefox http://www.a.com Error: no display specified ...
分类:Web程序   时间:2021-06-07 20:34:32    阅读次数:0
145269条   上一页 1 ... 4 5 6 7 8 ... 14527 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!