全栈的自我修养: 使用@vue/cli进行vue.js环境搭建 Success, real success, is being willing to do the things that other people are not. 成功,真正的成功,是愿意做别人不愿意做的事情。 Table of C ...
分类:
编程语言 时间:
2020-06-29 15:09:32
阅读次数:
80
安装依赖环境 yum -y install gcc gcc-c++ automake pcre pcre-devel zlib zlib-devel openssl openssl-devel 1、下载安装包: #cd /usr/local/src #wget http://nginx.org/do ...
分类:
其他好文 时间:
2020-06-29 13:47:25
阅读次数:
61
DateTime t1= DateTime.Now; DateTime t2= Convert.ToDateTime(endTime); if(DateTime.Compare(t1, t2) > 0) { Console.WriteLine(" t1 > t2 "); } if(DateTime. ...
Using the Power Apps visual Let's look at the steps required to use the Power Apps visual in your Power BI report. Power Apps visual is available by d ...
分类:
移动开发 时间:
2020-06-29 11:30:50
阅读次数:
107
在一次项目中,由于没有开启模板缓存,每次都是重新编译模板输出,在多进程情况下,就有可能会发生同时写入一个文件的情况,就会发生“缓存写入失败”的错误。 开启模板缓存可以缓解这个错误,但是在缓存失效,重新编译时,又有可能发生这个错误。 所以,可以通过给文件加锁来解决,当前进程加锁,正常写入,其他进程阻塞 ...
分类:
Web程序 时间:
2020-06-29 11:22:02
阅读次数:
76
今日学习内容 # Ajax: # 免费网站空间 :http://free.3v.do/ # Wampserver 配置方法 1. 修改:httpd-vhosts.conf文件,增加Require all granted 使用#关闭Require local或直接删除即可 #Require local ...
分类:
其他好文 时间:
2020-06-29 11:16:53
阅读次数:
68
1.从键盘上输入一个字符,判断这个字符是数字,还是大写还是小写字母,还是符号。 [char]$unknown = Read-Host("请输入一个字符")[int]$num = $unknownif($num -ge 48 -and $num -le 57){ Write-Output("输入的字符 ...
分类:
系统相关 时间:
2020-06-29 00:33:05
阅读次数:
82
# -*- coding: utf-8 -*- import pandas as pd from collections import defaultdict import json from pathlib import Path DATA = "6.28" dd = defaultdict(li ...
分类:
编程语言 时间:
2020-06-28 20:42:59
阅读次数:
55
安装 dashboard 1.1 下载 yaml 文件 [root@uk8s-a ~]# mkdir web-ui [root@uk8s-a ~]# cd web-ui/ [root@uk8s-a web-ui]# wget https://raw.githubusercontent.com/kub ...
分类:
其他好文 时间:
2020-06-28 20:12:10
阅读次数:
130
一。for循环 for(① ; ② ; ③){ ④ } 第一步,执行① 第二步,执行②,如果判断结果为true,执行第三步,如果判断结果为false,执行第五步 第三步,执行④ 第四步,执行③,然后重复执行第二步 第五步,退出循环 我国最高山峰是珠穆朗玛峰,8848米。现在我有一张足够大的纸,它的厚 ...
分类:
其他好文 时间:
2020-06-28 18:55:51
阅读次数:
56