PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(四)SQL Developer & Putty
If you’ve installed the Oracle Client successfully, you can get SQL Developer up and running in no time. Click on SQL Developer from the Start menu Once you get the following wi...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(六)Kibana
I’ve seen a lot of posts where people have had Kibana up and running, out of the (virtual)box from HCM PI 34. I had issues getting the dashboards and visualizations to work. Many ...
Oracle Linux 7.9安装PeopleSoft Campus Solution 9.2步骤
安装前准备 1.下载安装包 2.安装Oracle Linux 7.9 安装类型选basic web server 3.修改hosts文件 删除 “::1”一行 vi /etc/hosts 4.终端运行yum -y install oracle-database-preinstall-19c 如...
一本关于HTTP的恋爱日记
1991年 8月 我叫客户端,英文名字 client。 她叫服务端,英文名字 server。 这一年,我们出生了。 是的,我们都是90后。 我爱她,可是她却远在天边。 为了和她可以互诉衷肠,我同时发明了HTTP协...
SpringBoot整合mybatis-generator自动生成代码
1. pom.xml引入相关的依赖 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2...
linux usb驱动——host与device电路
host、device usb协议中,设备连接是主从模式,具体定义自行了解usb协议,比较直观的认识,如下: USB Host是指驱动过后,板子就可以连接USB接口连接的器件,读取和装载数据了。 USB Device是指...
OpenCV-Python快速入门系列03图像对象的创建与赋值
图像的本质是矩阵 OpenCV 使用 Mat(矩阵类)作为图像和数据的基本数据结构,这是因为图像本质上是一种二维或多维的矩阵形式。 像素数据的表示: 图像可以看作一个二维矩阵,其中每个元素代表一...
OpenCV-Python快速入门系列14图像几何形状绘制
0前言 在图像处理与计算机视觉中,经常需要在图像上绘制形状、文本等内容来标注数据或制作示例图片。OpenCV 提供了丰富的图形绘制函数,使用简单且功能强大。本文将通过代码示例,详细介绍如何...
OpenCV-Python快速入门系列30案例:实时人脸检测
代码 视频和模型库在第一篇文章中有git地址。 import cv2 as cv # 模型路径 MODEL_BIN = 'models/face_detector/opencv_face_detector_uint8.pb' CONFIG_TEXT = 'models/face_detector/opencv_f...