and folders windows access

C#复制Access数据库表结构和数据到另一个数据库表

一、参考资料(以下为AccessSQL语句) 参考原文链接 1.1.复制表 select * into table2 from table1 --创建了一张新表:table2 ,把table1表中的所有数据 连同表结构都一并复制 到table2中 --可以再通俗的理解为,先复制了个一模一样的表,然后 ......
数据 数据库 结构 Access

Windows 借助 Snipaste 实现定时截图

一、介绍 借助 Snipaste 软件实现连续定时截取屏幕。 截图间隔(可自己修改):5s 截图时间段(可自己修改):早上 8, 9, 10, 11;下午 13, 14, 15, 16, 17, 18 辅助软件(需要自行下载):https://www.snipaste.com/ 辅助脚本(见下文): ......
截图 Snipaste Windows

Windows PowerShell Compatibility

背景 Win11 21H2(OS Build 22000.2124) Windows PowerShell 7.3.5 简述 在试用 PowerShell 7.x 时,部分命令仍需 PS 5.1 . 具体来说,是指 %windir%\system32\WindowsPowerShell\v1.0\M ......
Compatibility PowerShell Windows

Window启用podman

1、初始化 podman machine init 2、开启服务 podman machine start 这步骤没有会报错:Error: failed to connect: dial tcp [::1]:62830: connectex: No connection could be made ......
Window podman

NET6的net6.0-windows10.xxx文件夹

通常使用.NET6 生成window程序默认在bin下会生成对应系统的net6.0-windows10.xxxx之类的文件夹。如果不喜欢 的可以在项目文件中编辑 增加 <PropertyGroup> <AppendTargetFrameworkToOutputPath>false</AppendTa ......
文件夹 windows 文件 NET6 net6

windows环境下使用Jenkins部署.net core

前言 之前学习了windows环境下使用Jenkins配置dotnet core极简入门 - chenxizhaolu - 博客园 (cnblogs.com) 又学习了Windows下使用docker部署.Net Core - chenxizhaolu - 博客园 (cnblogs.com) 现在将 ......
windows Jenkins 环境 core net

Windows 资源管理器 开启

有时候任务管理器不小心关闭其Windos资源管理器 然后导致桌面直接黑屏 例: 启动文件资源管理器 Ctrl + Shift + Esc 启动任务管理器 Win11 点击运行新任务 输入explorer.exe 即可恢复 Win10 同win11即可恢复 ......
资源管理 Windows 资源

windows nginx 开机启动

1、首先下载 winsw 下载地址:https://github.com/kohsuke/winsw/releases winse.NET4.exe 或百度云盘:链接: https://pan.baidu.com/s/1-G1dyl1y_WA5ziGV07AHpQ 提取码: j8fy 或:https ......
windows nginx

c++ std::execution::par in for_each and write files

#include <algorithm> #include <chrono> #include <cstdint> #include <execution> #include <fstream> #include <future> #include <iomanip> #include <iostr ......
execution for_each files write each

场景报错解决方案Error -27492: "HttpSendRequest" failed, Windows error code=12029 (cannot connect) and retry limit (0) exceeded for URL=""

解决方法1: 今天在调试Loadrunner HTTP/HTML脚本的时候出现报错Error -27492,通过将HTTPS请求修改为HTTP请求,问题得到解决。 Action.c(206): Error -27492: "HttpSendRequest" failed, Windows error ......

Windows下Tomcat的安装配置

#### 一、下载相应的JDK以及Tomcat的版本 JDK:jdk-8u131-windows-x64 tomcat:apache-tomcat-8.5.23-windows-x64.zip #### 二、JDK的安装 请参考: #### 三、Tomcat的安装 ##### 第一步:从官网下载ap ......
Windows Tomcat

windows2008r2通过组策略进行时间同步

1、 https://www.yii666.com/article/320508.html?action=onAll 在windows2008r2域控的环境下进行时间同步的配置(当已经拥有可以使用的ntp服务器,并知晓ip,客户端到其网络正常): 客户端的配置过程如下: 1、搜索窗口输入 gpedi ......
进行时 策略 windows 2008r 2008

windows10/11关闭更新

windows10/11关闭更新1. regedit打开注册表2. 依次打开:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings3. 新建DWORDS32位值-- >>键名: FlightSettingsMaxPauseDa ......
windows 10 11

windows上传app到构建版本的方法

ios打包好ipa文件后,ipa文件需要上架到app store,用户才能安装。而在app store里,无法直接将ipa上传,需要使用工具上传,但是官方提供的工具,比如xcode等只能安装在苹果电脑上。 我们这篇文章,重点将介绍如何使用windows电脑将ipa文件上传app store的构建版... ......
windows 版本 方法 app

window、Linux简单提权 7

首先把拿到授权资产或客户给的域名 1、信息收集; a.服务器的相关信息 真实ip、C段、系统版本、开放端口等 b.网站指纹; cms、cdn、证书、dns记录等 c.whois信息 姓名、电话、邮箱、备案 //可以扔到社工库去查询 d.扫描网站目录结构,爆破后台 2、漏洞测试; SQL注入、XSS、 ......
window Linux

【每日一题】Problem 476B. Dreamoon and WiFi

[原题](https://codeforces.com/problemset/problem/476/B) #### 解决思路 ##### 数学 不管 **recv** 字符串如何,最终的结果一定满足以下条件: 1. '+' 数量与 **send** 字符串相同 2. '-' 数量与 **send* ......
Dreamoon Problem WiFi 476 and

python: more Layer Architecture and its Implementation in Python

sql server: --学生表 DROP TABLE DuStudentList GO create table DuStudentList ( StudentId INT IDENTITY(1,1) PRIMARY KEY, StudentName nvarchar(50), StudentN ......

牛客练习赛112 B qsgg and Subarray

这里介绍两种解法,贪心和二分 核心:只要某一个区间和为0,则所有包含该区间的和都为0 贪心 根据题意是求出所有⊕和为0的子区间的个数,我们按a[i]来分类,每次求出以a[i]为末尾,区间和为0的区间个数,对于a[i]来说,要想u~i的区间和为0,则需要包含所有a[i]中位为1都有0与之对应,如果u~ ......
练习赛 Subarray qsgg 112 and

AGC012E Camel and Oases

## 题意 有一个数轴上有 $n$ 个点。一开始有一个参数 $v$,你可以进行任意次移动,直到 $v = 0$: - 移动到一个距离当前点不超过 $v$ 的点,$v$ 不变。 - 移动到任何一个点,使得 $v \gets \lfloor\dfrac{v}{2}\rfloor$。 现在对于每个起点,问 ......
Camel Oases 012E AGC 012

Switches and Lamps 题解

[题目传送门](https://www.luogu.com.cn/problem/CF985B) 一道枚举题。 首先我们需要知道什么开关才能被去掉,题目要求去掉这个开关后所有的灯依然能够开启。也就是说,**这个开关能打开的所有灯都可以由其它开关代替**。 思路清晰了,就比较好做。我们可以用一个数组存 ......
题解 Switches Lamps and

windows server 安装.net 3.5

从windows swerver2008以后,.net 3.5 的离线安装都需自己提供安装包 安装流程 1. 从iso或其他途径提取到sxs安装包 2. 安装 管理员权限运行cmd,输入 : dism /online /enable-feature /featurename:NetFx3Server ......
windows server net 3.5

Windows10安装

最近电脑频繁重启,我怀疑是更新电脑某些方面不兼容导致的, 于是我想将系统条回到Windows10。 OS下载:https://www.microsoft.com/zh-cn/software-download/windows10 注:回调系统会删除系统盘数据(C),其他盘不受影响 ......
Windows 10

django部署到windows服务器上

使用Waitress pip install waitress 在项目的根目录下穿件一个server.py 内容为 from waitress import servefrom django的项目名称.wsgi import application if __name__ == '__main__' ......
windows 服务器 django

django项目在windows的部署(apach+Mod_wsgi+django)

如果django项目如果要正式使用,我们需要将项目部署到开发环境上去。django项目自带的服务不支持多线程,会出现多个用户访问时,页面卡死,半天打不开的问题。所以, 该如何部署django项目呢?下边是我的部署经验,实测有效。 如果可以的话,尽量部署到linux上,但是我的系统中涉及到一些wind ......
django Mod_wsgi windows 项目 apach

nextjs项目引入vconsole报错处理:ReferenceError: window is not defined

引入文件(nextjs项目): import Vconsole from 'vconsole' 报错: 处理: let Vconsole if (typeof window !== 'undefined') { Vconsole = require('vconsole') } 打开调试: if (t ......

引入jweixin文件报错处理(window is not defined)

引入文件(nextjs项目): import wx from './jweixin-1.6.0.js' 报错: 处理: let wx if (typeof window !== 'undefined') { wx = require('./jweixin-1.6.0.js') } 接下来正常处理wx ......
jweixin defined 文件 window not

虚拟机中安装Windows系统

### 一、虚拟机中安装Windows系统 1. 第一步新建虚拟机 ![image](https://img2023.cnblogs.com/blog/2731637/202306/2731637-20230628145057062-187266868.png) 2. 选择典型安装 ![image] ......
Windows 系统

LLMs and SQL

https://blog.langchain.dev/llms-and-sql/ LLM生成SQL很容易 解决的问题是如果让LLM生成的SQL,是valid并且结果正确的 模拟人是如何写SQL的,本身人也是要上下文的, 那么问题就是需要什么上下文,并且如何组织 比较直觉的是,给出schema和几条真 ......
LLMs and SQL

windows配置时间服务器 linux配置从windows同步时间

## 背景 两台服务器,其中windows能够联网,linux不能联网 windows为windows server 2016 linux为centos7 ## 配置windows时间服务 配置HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ ......
windows 时间 服务器 linux

二、Windows11平台下Visual Studio 2022配置32位汇编环境

## 1. [下载Visual Studio 2022](https://visualstudio.microsoft.com/zh-hans/vs/) ![image](https://img2023.cnblogs.com/blog/1452265/202306/1452265-20230628 ......
Windows 环境 Visual Studio 平台