一、准备工具 windowslinux系统win10centos7软件远程桌面连接(自带)xrdp(epel库提供):开源的远程桌面协议(RDP)服务二、Linux(被连接端)2.1 添加epel库rpm -Uvh https://mirrors.tuna.tsinghua.edu.cn/epel/epel-release-latest-7.noarch.rpm2.2 安装xrdpyum -y install x...[继续阅读]
海量资源,尽在掌握
一、准备工具 windowslinux系统win10centos7软件远程桌面连接(自带)xrdp(epel库提供):开源的远程桌面协议(RDP)服务二、Linux(被连接端)2.1 添加epel库rpm -Uvh https://mirrors.tuna.tsinghua.edu.cn/epel/epel-release-latest-7.noarch.rpm2.2 安装xrdpyum -y install x...[继续阅读]
最近写爬虫遇到一个网站带有防止CSRF攻击机制,该接口为POST请求,用PostMan测试后发现需要请求头的Cookie和FormData里面的一个_token参数才能发起正确的请求,这两个参数缺一不可而且有效时间只有一天,因为爬虫是做成定时任务的,...[继续阅读]
import bpyfrom bpy import context as Cfrom mathutils import *sns=C.screenareas=sns.areasarea=Nonefor i in areas: if i.type=='VIEW_3D': area=i break spaces=area.spacesfor i in spaces: if i.type=='VIEW_3D': space=i break region=space.region_3d...[继续阅读]
当 WPF 客户端需要实现插件系统的时候,一般可以基于容器或者进程来实现。如果需要对外部插件实现异常隔离,那么只能使用子进程来加载插件,这样插件如果抛出异常,也不会影响到主进程。WPF 元素无法跨进程传输,但是窗口...[继续阅读]
利用 Windows API 读写配置文件。using System;using System.Runtime.InteropServices;using System.Text;using System.Windows.Forms;using System.IO;namespace CS读写配置文件{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } ...[继续阅读]
对于windows api中创建的窗口,可以通过SetWindowLong函数修改其样式。函数声明为:LONG SetWindowLongA(HWND hWnd,int nIndex,LONG dwNewLong);第二个参数nIndex表示样式的类别,最常见的两个取值为GWL_EXSTYLE (扩展样式)和 GWL_STYLE(样式),分别包括:PS:...[继续阅读]
Pre-Reading:PXE(Pre-boot Execution Environment)是由 Intel 设计的一种网络协议,它可以使计算机通过网络启动。协议分为 client 和 server 两端,PXE client 端集成在网卡 ROM 中(即 PXE 启动需要网卡 ROM 的支持),当 Client 端计算机启动时,BIOS...[继续阅读]
StopWatch 在 using System.Diagnostics 命名空间,需先引用。using System;using System.Diagnostics;namespace StopWatch计时{ static class Program { static void Main() { //▼ 创建一个Stopwatch实例 Stopwatch stopWatch = new Stopwatch(); ...[继续阅读]
Build Error: go build -o D:SRYP32.sqlscriptgo__debug_bin.exe -gcflags all=-N -l d:SRYP32.sqlscriptgodirectory . outside available modules (exit status 1)解决方案d:SRYP32.sqlscriptgo=>路径不要用中文,不要有.,不要有其他特殊符号。d:SRYP32.sqlscriptgo=>d:SRYP3sqlscriptgo 这...[继续阅读]