今日内容 文件处理基础 Linux系统的目录结构 window系统 linux系统 文件夹 目录window系统:多根目录(顶级文件夹有多个) C:\a\b\c\d.txt D:\xxx\yyy\zzz.txtlinux系统:单根结构(顶级文件夹有一个) /a/b/c/d.txt 绝对路径和相对路径 ...
分类:
其他好文 时间:
2021-06-24 17:38:58
阅读次数:
0
jenkins部署vue项目 安装nodejs 配置nodejs的源,去官网查看需要安装的版本和介绍 V8.x: # curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - yum安装node.js yum ins ...
分类:
其他好文 时间:
2021-06-23 17:07:38
阅读次数:
0
软件官网:http://www.calculix.de/ 一、安装 1.进入Github下载一个zip文件 如github进不去,这里是我下载好的,但是版本可能不是最新 (1)点击https://github.com/calculix/cae (2)点击Downnloads (3)下载这个zip 2 ...
问题一:启动的时候 解决方案: 在命令行中输入如下命令即可: 1. redis-cli.exe 2. shutdown 3. exit 4. redis-server.exe redis.windows.conf ...
分类:
其他好文 时间:
2021-06-22 18:23:41
阅读次数:
0
Chromium Embedded Framework (CEF)是个基于Google Chromium项目的开源Web browser控件,支持Windows, Linux, Mac平台。除了提供C/C++接口外,也有其他语言的移植版。 因为基于Chromium,所以CEF支持Webkit & C ...
分类:
其他好文 时间:
2021-06-21 20:37:00
阅读次数:
0
ssa2 = location.read_locationa(row[4]) datajson["weather"]=ssa2['weather'] datajson["temperature"]=ssa2['temperature'] datajson["windpower"]=ssa2['win ...
分类:
Web程序 时间:
2021-06-21 20:16:26
阅读次数:
0
url的hash和HTML5的history URL的hash URL的hash也就是锚点(#), 本质上是改变window.location的href属性. 我们可以通过直接赋值location.hash来改变href, 但是页面不发生刷新 history H5的history接口是HTML5新增 ...
分类:
Web程序 时间:
2021-06-21 20:05:45
阅读次数:
0
函数获取使用高德天气接口 import requests 爬取数据 def read_location(name): centerurl = "https://restapi.amap.com/v3/config/district?keywords=" centerurl2 = "&subdistr ...
分类:
其他好文 时间:
2021-06-21 20:05:25
阅读次数:
0
在页面中植入下列代码,即可防止页面加载及跳转 <script type="text/javascript"> if (window.stop) window.stop(); else document.execCommand("Stop"); </script> ...
分类:
Web程序 时间:
2021-06-21 19:54:58
阅读次数:
0
编译不出Makefile的原因 window 系统上我不安装了VS2017和TDM-GCC 而默认情况就给我生成vs2017 中的对应工程东西。 这个并不是我需要的。 我需要的是自动生成Makefile 错误提示 更加网络使用命令 cmake . -G "Unix Makefiles" //这个命令 ...