#od

ORA-00600: internal error code, arguments: [string], [string], [string], [string], [string], [string], [string], [string], [string], [string], [string], [string]

文档解释ORA-00600:internalerrorcode,arguments:[string],[string],[string],[string],[string],[string],[string],[string],[string],[string],[string],[string]Cause:Thisi...

vscode环境配置python

vscode环境配置python 在VSCode中配置Python环境的过程如下:1.安装VSCode和Python(例如Python3.7)。2.打开VSCode,点击左下角的设置图标,选择Settings。在搜索框中输入"pythonpath",在该路径下选择Python的安装路径(例...
开发笔记 ·2025-02-06

ORA-27608: Smart I/O failed because the disk “string” on the cell “string” was not open. error code: “string”, “string”

文档解释ORA-27608:SmartI/Ofailedbecausethedisk“string”onthecell“string”wasnotopen.errorcode:“string”,“string”Cause:T...

未能从程序集“System.ServiceModel”中加载类型“System.ServiceModel.Activation.HttpModule”的解决办法

错误:未能从程序集“System.ServiceModel,Version=3.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089”中加载类型“System.ServiceModel.Activation.HttpModule&...

nodejs获取微信access token分享朋友圈功能

一、申请公众号获取开发者ID(AppID)和开发者密码(AppSecret)通过AppID和AppSecret获得access_token二、认证1、营业执照2、组织机构代码证获得高级接口权限三、绑定域名1、微信公众平台进入“公众号设置”的“功能设置”里填写“...

使用vscode + vite + vue3+ vant 搭建vue3脚手架

技术栈开发工具:VSCode代码管理:Git前端框架:Vue3构建工具:Vite路由:vue-router4x状态管理:vuex4xAJAX:axiosUI库:vant数据模拟:mockjscss预处理:sass 构建vue3项目 1,安装 vite以管理员身份打开cmd命令窗口,切换到要...

nodejs封装mysql方法

使用nodejs封装mysql方法utils/db.js/***@Author:WeiLin*@CreateTime:2022-07-2909:40:44*@Modifiedtime:2022-07-2909:42:19*@Description:*/constmysql=require('mysql')constCo...
开发笔记 ·2024-09-20

VSCode 运行 Java 项目

下载OpenJDK-MicrosoftOpenJDK-EclipseTemurin配置环境变量新建系统变量 JAVA_HOME 为JDK目录新建系统变量 Classpath 为 .;%JAVA_HOME%libdt.jar;%JAVA_HOME%libools.jar;...
开发笔记 ·2024-09-12

解决k8s删除pod以后无限重启该pod的问题

首先,查看node节点的日志,路径在/var/log/message复制复制复制复制复制复制复制复制复制复制Jun111:32:34apm-slave03dockerd-current:time="2018-06-01T11:32:34.830329738+08:00"level...

vscode 快捷键

在VisualStudioCode(VSCode)中,你可以使用以下方法快速跳转到文件的最顶部:使用键盘快捷键:按下 Ctrl+Home 或 Command+Home(在macOS上)可以快速将光标跳转到文件的开头。使用命令面板:使用 Ctrl+Shift+P 或&nb...
开发笔记 ·2024-08-29

vscode中python的问题和解决办法

安装好vscode后,汉字有个黄框框起来,不好看,解决办法:鼠标放上去,可以看到有“xxx不是基本ASCII字符”的提示信息,点击后面“调整设置”的选项。在弹出的选项中,选择“禁用批注中字符的突出显示”即可。...

pbootcms后台上传附件报错UNKNOW: Code: 8192

pbootcms后台上传附件报错UNKNOW:Code:8192;Desc:stripos(),,意思是上未知错误代码8192。解决方法:打开/core/function/file.php文件找到/if(stripos($types,$ext)!==false)复制改为/if(stripos($types,chr($e...

pycharm运行时,can t find __main__ module in ... ... 的问题解决

 在运行pycharm时遇到:can’tfind‘main’modulein‘’报错(如图),是因为未配置要运行哪个.py文件导致的。  我们可以通过两种方式解决该问题:1.直接右击,然后run当前的.py文件即可。 2...

mysql innodb 独立表空间 innodb_file_per_table

5.6.6以上版本默认开启my.cnfinnodb_file_per_table=ON;命令行setglobalinnodb_file_per_table=ON;查看showvariableslike'%per_table%';...

mongo5报错: WARNING: MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that!

错误提示WARNING:MongoDB5.0+requiresaCPUwithAVXsupport,andyourcurrentsystemdoesnotappeartohavethat!原因mongodb5需要AVX的cpu指定集,当前的cpu太旧或者没有开启.解决办法降低mongodb的版本(使用4.x的版的mon...
首页上一页12345...下一页尾页