寒冰剑客

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2023年12月28日

摘要: 一、直接贴代码,有些离线文件需要下载,python依赖包也需要下载。 # coding=utf-8 from flask import Flask, render_template_string, jsonify, request from flask_cors import CORS from t 阅读全文
posted @ 2023-12-28 12:52 小相公 阅读(156) 评论(0) 推荐(0) 编辑

摘要: 问题产生: 最近同事连接开发环境oracle数据报错,一开始简单更加了下归档空间,每次加5G,语句如下: 查看归档空间大小: show parameter db_recovery; 查看使用占比: select * from v$flash_recovery_area_usage; 增加归档空间: 阅读全文
posted @ 2023-12-28 11:49 小相公 阅读(42) 评论(0) 推荐(0) 编辑

2023年11月29日

摘要: 查看pyinstaller版本为:pyinstaller-5.13.2 卸载高版本:pip uninstall pyinstaller 安装指定版本:pip install pyinstaller==5.6.2 重新打包问题解决 阅读全文
posted @ 2023-11-29 15:56 小相公 阅读(228) 评论(0) 推荐(0) 编辑

2022年6月14日

摘要: 一、oracle之regexp_substr()介绍 regexp_substr(string, pattern, position,occurrence, modifier); 参数介绍: string: 源字符串,需要正则处理的源字符串 pattern: 正则表达式 position: 起始位置 阅读全文
posted @ 2022-06-14 09:05 小相公 阅读(2080) 评论(0) 推荐(0) 编辑

2020年12月26日

摘要: 1.安装Node.js(省略) 2.安装vue npm install vue 3.全局安装vue-cli脚手架 npm install -g vue-cli 4.创建vue项目(过程根据实际需要填写或选择,也可一路默认) vue init webpack front 5.启动项目 npm run 阅读全文
posted @ 2020-12-26 11:24 小相公 阅读(89) 评论(0) 推荐(0) 编辑