上一页 1 2 3 4 5 6 ··· 17 下一页

2023年6月2日

ajax发送图片flask接收

摘要: 前端代码 ``` 显示并发送图片 上传 ``` 后端代码 ``` @app.route("/image1", methods=['POST']) def upload_image1(): a = request.files["file"] print(a.filename) print(type(a 阅读全文

posted @ 2023-06-02 08:21 荷楠仁 阅读(20) 评论(0) 推荐(0) 编辑

2023年5月22日

oracle常用命令

摘要: --删除表中一列 alter table TJBG1.f_njbg drop column c13_test; -- 给表增加一列 ALTER TABLE TJBG1.f_njbg ADD (c13_test int default -100 not null); COMMENT ON COLUMN 阅读全文

posted @ 2023-05-22 07:44 荷楠仁 阅读(15) 评论(0) 推荐(0) 编辑

2023年5月17日

systemd管理进程的例子

摘要: vi /usr/lib/systemd/system/node_exporter.service [Unit] Description=node_exporter [Service] ExecStart=/usr/local/node_exporter/node_exporter ExecReloa 阅读全文

posted @ 2023-05-17 07:58 荷楠仁 阅读(21) 评论(0) 推荐(0) 编辑

2023年1月30日

mac m1使用oracle sqlplus

摘要: 环境 mac studio(2022) Chip Apple M1 Max oracle 官网 https://www.oracle.com/database/technologies/instant-client/macos-intel-x86-downloads.html 只有Intel x86 阅读全文

posted @ 2023-01-30 17:38 荷楠仁 阅读(346) 评论(0) 推荐(0) 编辑

2023年1月29日

网络问题排查

摘要: 查看连了本机或者远程机器的某个端口的进程 netstat -an | grep 22 查看端口被谁占用 lsof -i :8080 阅读全文

posted @ 2023-01-29 14:43 荷楠仁 阅读(14) 评论(0) 推荐(0) 编辑

2023年1月20日

Powerbuilder练级攻略003_datawindow绑定接口返回数据

摘要: 开发一个接口,确保http://192.168.37.184:10103/demo3的Get请示返回 { "code":0, "data":[{"stu_num":1, "stu_name": "张三"},{"stu_num":2, "stu_name": "李四"}], "msg":"" } 新建 阅读全文

posted @ 2023-01-20 10:40 荷楠仁 阅读(117) 评论(0) 推荐(0) 编辑

Powerbuilder练级攻略002_datawindow

摘要: 新建一个目录,如D:\pb_project\tutorial\p013_dw File-New-Workspace-OK,选中D:\pb_project\tutorial\p013_dw,打开,文件名输入p013_dw,保存 File-New-Target-Application-OK,Applic 阅读全文

posted @ 2023-01-20 10:36 荷楠仁 阅读(128) 评论(0) 推荐(0) 编辑

Powerbuilder练级攻略001_无窗口应用

摘要: 新建一个目录,如D:\pb_project\tutorial\p002_cmd File-New-Workspace-OK,选中D:\pb_project\tutorial\p002_cmd,打开,文件名输入p002_cmd,保存 File-New-Target-Application-OK,App 阅读全文

posted @ 2023-01-20 10:33 荷楠仁 阅读(28) 评论(0) 推荐(0) 编辑

Powerbuilder练级攻略000_窗口helloword

摘要: 创建工程 新建一个目录,如D:\pb_project\tutorial\p001_helloworld File-New-Workspace-OK,选中D:\pb_project\tutorial\p001_helloworld,打开,文件名输入p001_helloworld,保存 File-New 阅读全文

posted @ 2023-01-20 10:28 荷楠仁 阅读(58) 评论(0) 推荐(0) 编辑

2022年6月17日

ubuntu安装mysql 8.0.29

摘要: 安装 sudo apt update sudo apt install mysql-server sudo systemctl start mysql.service 修改默认密码 sudo mysql ALTER USER 'root'@'localhost' IDENTIFIED WITH ca 阅读全文

posted @ 2022-06-17 09:56 荷楠仁 阅读(100) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 17 下一页

导航