and folders windows access

windows docker 占用端口

查看 netsh interface ipv4 show excludedportrange protocol=tcp 避开这些端口就好了 ......
端口 windows docker

Windows Service Wrapper(winsw.exe)

用winsw让任何Windows程序都能运行为服务 详解Windows Service Wrapper(winsw.exe)及应用场景 ......
Windows Service Wrapper winsw exe

Windows 10 docker一直显示 starting

1.原因一 Ubuntu子系统没安装好 我的是因为装了两个Ubuntu, 打开另一个Ubuntu应用后docker可正常启动 然后把没用的卸载了 2.原因二 docker版本不支持当前系统版本, 下载新的docker installer或者更新系统 ......
starting Windows docker 10

PaddleOCR 安装与简单使用(windows)

文章转载自: https://blog.csdn.net/f2315895270/article/details/128147744 前提 已经安装好Python环境 PaddleOCR官方主页:https://www.paddlepaddle.org.cn/ GitHub地址:https://gi ......
PaddleOCR windows

Python环境安装(Windows)

准备Python环境 通过官方推荐的安装Anaconda工具包来集成Python环境,推荐对Python不熟练的都使用这种方式,因为他会自动帮我们安装很多依赖包,省去了很多的麻烦 安装Anaconda Anaconda的安装很简单,一般都不会出问题,所以我就直接把官方的步骤写在下面清华大学的镜像地址 ......
Windows 环境 Python

DevOps, HybridOps and AIOps浅谈

DevOps, HybridOps and AIOps浅谈 DevOps的概念出现比较久了,很多的IT项目也都在实际的运用中。AIOps概念作为DevOps的升级版,也得到了很广大的关注,也出现了很多AIOps 相关的理论参考模型。但是,在当前的技术发展及应用现状下,HybridOps这个从项目实践 ......
HybridOps DevOps AIOps and

Windows 11 如何安装 WSL2

安装 WSL 2 需要满足以下要求: 64 位版本的 Windows 10,包括:家庭版、专业版、企业版或教育版,版本号 1903 或更高版本,或者 Windows Server 2019 或更高版本。 启用了 WSL 的选项。 至少 4 GB 的 RAM 在 Windows 11 上安装 WSL ......
Windows WSL2 WSL 11

windows查看端口

参考链接 首先我们得找出占用这个端口的值。 1、首先我们打开CMD,用管理员身份打开,然后输入netstat -ano,列出所有端口的情况。 2、查看被占用端口对应的PID,输入命令:netstat -aon|findstr "8000",回车,记下最后一位数字,即PID,如果是2839。 3、(可 ......
端口 windows

The Predictron: End-To-End Learning and Planning

**发表时间:**2017(ICML 2017) **文章要点:**这篇文章设计了一个叫Predictron的结构,在abstract的状态上进行学习,通过multiple planning depths来使得model self-consistent,进行端对端的学习。这里的设定是MRP,不是MD ......
Predictron End-To-End End Learning Planning

Elasticsearch(es)查询报错:Result window is too large, from + size must be less than or equal to: [10000] but was [20000

{"error":{"root_cause":[{"type":"query_phase_execution_exception","reason":"Result window is too large, from + size must be less than or equal to: [10 ......
Elasticsearch Result window 10000 20000

开发者需掌握的超实用VS Code for Windows快捷键

链接|https://dev.to/devland/100-crucial-keyboard-shortcuts-for-vs-code-users-4474 作者|Thomas Sentre 翻译|Seal软件 原文作者已授权。 在软件开发的世界里时间是非常宝贵的。随着项目的堆积和发布日期的临近, ......
快捷键 开发者 Windows Code for

EME 10 Communication, team and conflict management

Communication, team and conflict management Improve group working. Analyze the coordination needs of a project. Select the best communication genres t ......
Communication management conflict team EME

[LeetCode] 2300. Successful Pairs of Spells and Potions

You are given two positive integer arrays spells and potions, of length n and m respectively, where spells[i] represents the strength of the ith spell ......
Successful LeetCode Potions Spells Pairs

分治(Divide and Conquer)算法之归并排序

顾名思义,分治问题由“分”(divide)和“治”(conquer)两部分组成,通过把原问题分为子问题,再将子问题进行处理合并,从而实现对原问题的求解。我们在排序章节展示的归并排序就是典型的分治问题,其中“分”即为把大数组平均分成两个小数组,通过递归实现,最终我们会得到多个长度为1 的子数组;“治” ......
算法 Conquer Divide and

JNDI(Java Naming and Directory Interface–Java命名和目录接口)

JNDI(Java Naming and Directory Interface,Java命名和目录接口)为应用程序提供了一种通过网络访问远程服务的方式。本节我们学习如何通过JNDI API注册和访问JDBC数据源对象。读者如果需要了解更多JNDI相关细节,则可参考JNDI规范文档。 JNDI AP ......
Java Directory Interface 接口 目录

【THM】Windows Fundamentals 3(Windows基础知识3)-学习

本文相关的TryHackMe实验房间链接:https://tryhackme.com/room/windowsfundamentals3xzx 本文介绍:本文所涉及的内容是 Windows 基础模块的第 3 部分,了解有助于保护设备安全的内置 Microsoft 工具,例如 Windows 更新、W ......

Wine 8.5 发布,Windows 应用的兼容层

Wine 8.5 已发布,用于在 Linux 和其他平台下运行 Windows 游戏和应用程序。 Wine 8.5 版本已将新的 VKD3D 1.7 代码库引入其树中。 VKD3D 1.7 于上周发布,添加了额外的 HLSL 功能、大量内部函数、调用用户定义函数的能力,以及一系列其他改进,以改进 W ......
Windows Wine 8.5

windows下使用pytorch进行单机多卡分布式训练

现在有四张卡,但是部署在windows10系统上,想尝试下在windows上使用单机多卡进行分布式训练,网上找了一圈硬是没找到相关的文章。以下是踩坑过程。 首先,pytorch的版本必须是大于1.7,这里使用的环境是: pytorch==1.12+cu11.6 四张4090显卡 python==3. ......
分布式 单机 windows pytorch

Windows11资源管理器更换成传统右键菜单的方法

1.打开注册表,找到 HKEY_CURRENT_USER\SOFTWARE\CLASSES\CLSID 2. 右键点击CLSID,新建,项,项名称为: {86ca1aa0-34aa-4e8b-a509-50c905bae2a2} 3.右键点击这个新建的项,再选择新建》项,项名称为: InprocSe ......
资源管理 菜单 传统 Windows 方法

Find (and kill) process locking port 9000 on Mac

You can try netstat netstat -vanp tcp | grep 9000 For macOS El Capitan and newer (or if your netstat doesn't support -p), use lsof lsof -i tcp:9000 su ......
process locking Find 9000 kill

mingw64 + nvim + coc.nvim + nvim-dap : C++ windows - 04

4.1 init.vim 将 init.vim 放置到下面 :echo stdpath('config') ~\AppData\Local\nvim 4.2 plug https://github.com/junegunn/vim-plug 将 plug.vim 放置到下面 ~\AppData\Lo ......
nvim nvim-dap windows mingw coc

mingw64 + nvim + coc.nvim + nvim-dap : C++ windows - 05

PS C:\Users\dev\Desktop\cpp> cd .\build\ PS C:\Users\dev\Desktop\cpp\build> cmake .. -DCMAKE_BUILD_TYPE=Debug -- Building for: Ninja -- The C compiler ......
nvim nvim-dap windows mingw coc

mingw64 + nvim + coc.nvim + nvim-dap : C++ windows - 01

目标 用做C++编译器 尽量不要扩展其它功能 python 是避免不了,所以才安装的。 1.1 下载安装 https://mirror.tuna.tsinghua.edu.cn/msys2/distrib/msys2-x86_64-latest.exe 安装路径: C:\gnu\msys64 1.2 ......
nvim nvim-dap windows mingw coc

mingw64 + nvim + coc.nvim + nvim-dap : C++ windows - 02

2.1 命令行工具 https://github.com/sharkdp/fd https://github.com/junegunn/fzf https://github.com/BurntSushi/ripgrep https://github.com/tree-sitter/tree-sitt ......
nvim nvim-dap windows mingw coc

mingw64 + nvim + coc.nvim + nvim-dap : C++ windows - 03

3.1 ccls https://github.com/MaskRay/ccls/wiki/Build 在msys中: pacman -S --noconfirm mingw-w64-x86_64-clang mingw-w64-x86_64-clang-tools-extra mingw64/mi ......
nvim nvim-dap windows mingw coc

Windows窗口对象

......
对象 Windows

【THM】Windows Fundamentals 2(Windows基础知识2)-学习

本文相关的TryHackMe实验房间链接:https://tryhackme.com/room/windowsfundamentals2x0x 本文介绍:本文所涉及的内容是Windows 基础模块的第 2 部分,了解有关系统配置、UAC 设置、资源监控、Windows 注册表等更多信息。 简介 在W ......

CF594A Warrior and Archer 题解

由于本人在思索了很久后才把本题思路打通,所以为了帮助像我一样没有非常理解解法的人,我打算再将解法非常详细地叙述一遍,如果您无法理解解法,请跟着我再一步步将题目捋顺。 Step.1 解题意 题目要求其实很好理解,共给出 $n$ 个点的位置,A,B两个人轮流取点,A要求最后剩下的两个点尽量近,B要求最后 ......
题解 Warrior Archer 594A 594

C#编写windows服务

前言 1 目标方案 目标是不让小孩玩游戏,考虑了一些方案,都感觉不行,比如开机自动关机,禁用网卡,修改 host 文件,修改 iP 和 DNS。 开机自动关机这个是最简单的,只需要一个关机脚本就行了,再加入开机自启项就行了,但是这种方式就是电脑都不给用了,家长不会进PE的话很难修复,要用的时候就很着 ......
windows

Nacos下载安装与配置(windows)

一、Nacos下载 二、Nacos安装 三、修改启动文件 四、启动Nacos服务并访问,可跳过 五、将数据源改为MySQL数据库 六、修改配置文件 七、重启Nacos服务并访问 ......
windows Nacos