码迷,mamicode.com
首页 >  
搜索关键字:remote desktop services 拒绝5    ( 13094个结果
base64转换
import os, base64,reli=os.listdir(r'C:\Users\lenovo\Desktop\allsvg')os.chdir(r'C:\Users\lenovo\Desktop\allsvg')print(li)for i in li: with open(i,mode= ...
分类:其他好文   时间:2020-12-04 11:38:25    阅读次数:7
redis批量删除指定前缀key四种方法
第一种: Linux服务器上安装redis,然后进入到bin目录,执行如下命令 ./redis-cli -h IP -p PORT -a PASSWORD keys 'key*' | xargs ./redis-cli -h IP -p PORT -a PASSWORD del IP:redis服务 ...
分类:其他好文   时间:2020-12-04 10:58:03    阅读次数:7
python3 守护进程
code macname@MacdeMBP Desktop % macname@MacdeMBP Desktop % cat test.py import time from multiprocessing import Process def func(name, sec): print(name ...
分类:编程语言   时间:2020-12-03 11:51:59    阅读次数:5
shell sed 多行执行多个命令
code macname@localhost Desktop % cat content fox jumps over the lazy dog. fox jumps over the lazy dog. fox jumps over the lazy dog. fox jumps over the ...
分类:系统相关   时间:2020-12-01 12:32:52    阅读次数:24
Web应用和Web框架
一、Web应用 1、什么是Web应用?Web应用程序是一种可以通过Web访问的应用程序,特点是用户很容易访问,只需要有浏览器即可,不需要安装其他软件。 2、Web应用程序的模式 应用程序有两种模式,即C/S、B/S两种,C/S是客户端/服务器端程序,这类程序一般独立运行;而B/S就是浏览器端/服务器 ...
分类:Web程序   时间:2020-12-01 12:05:16    阅读次数:11
shell 循环打印出文件所有行
code macname@localhost Desktop % cat test.sh while read line;do echo $line; done < a.txt macname@localhost Desktop % macname@localhost Desktop % cat a ...
分类:系统相关   时间:2020-11-30 16:14:46    阅读次数:16
shell 查看本机的Linux版本和内核信息
code macname@localhost Desktop % echo `uname -a` Darwin localhost 19.6.0 Darwin Kernel Version 19.6.0: Thu Oct 29 22:56:45 PDT 2020; root:xnu-6153.141 ...
分类:系统相关   时间:2020-11-30 16:12:29    阅读次数:12
Unable to locate package python3 错误解决办法
##错误 huny@DESKTOP-N1EBKQP:/mnt/c/Users/Administrator$ sudo apt-get install python3 Reading package lists... Done Building dependency tree Reading stat ...
分类:编程语言   时间:2020-11-30 15:30:15    阅读次数:8
PyCharm远程开发和调试
配置远程Python解释器 选择File-->Settings-->Project: xxxx-->Project Interpreter, (xxxx是项目根目录), 然后在右边, 点击小齿轮设置, 点击"Add Remote", 勾选SSH Credentials, 配置相关信息: Host: ...
分类:其他好文   时间:2020-11-27 11:35:08    阅读次数:8
.Net Core Json 中文乱码
Startup.cs ConfigureServices 添加配置 services.AddControllers().AddJsonOptions(options => { options.JsonSerializerOptions.Encoder = JavaScriptEncoder.Crea ...
分类:Web程序   时间:2020-11-27 11:34:27    阅读次数:9
13094条   上一页 1 ... 24 25 26 27 28 ... 1310 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!