The piped stream are bidirectional communcation.Meanwhile they can read and write. Write the NamedPipeServerStream and NamedPipeClientStream in two di ...
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
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
上篇文章scrypt加密password SCrypt对密码进行加密 中使用的是SCrypt,本篇使用SCrypt.Net,其实和SCrypt差不多,只不过是NuGet程序包管理器使用的一个是SCrypt,一个是SCrypt.Net.本文详细介绍SCrypt.Net的使用 1、新建项目Console ...
分类:
其他好文 时间:
2020-06-28 16:45:13
阅读次数:
75
开发时遇到根据不同情况返回错误提示信息的需求,用到了ajax中返回json格式数据的。 前台请求代码: <script type="text/javascript"> function login() { $.ajax({ //几个参数需要注意一下 type: "POST",//方法类型 dataT ...
分类:
Web程序 时间:
2020-06-28 16:44:30
阅读次数:
95
<script type="text/javascript"> document.write("<script src='/echarts/echarts.min.js?"+Math.random()+"'><\/script>"); </script> 加个随机数即可. ...
分类:
其他好文 时间:
2020-06-28 15:04:17
阅读次数:
113