最新文章第18页
什么是AOP?面向切面编程(AOP)的理解-天煜博客

什么是AOP?面向切面编程(AOP)的理解

什么是AOP? AOP全称Aspect Oriented Programming意为面向切面编程,也叫做面向方法编程,是通过预编译方式和运行期动态代理的方式实现不修改源代码的情况下给程序动态统一添加功能的技术。 AOP...
Ubuntu设置开机自动启动脚本/程序的各种方法-天煜博客

Ubuntu设置开机自动启动脚本/程序的各种方法

一、Ubuntu添加开机自动启动程序的方法 开机启动时自动运行程序 Linux加载后, 它将初始化硬件和设备驱动, 然后运行第一个进程init。init根据配置文件继续引导过程,启动其它进程。通常情况下,...
OpenCV-Python快速入门系列04图像像素的读写操作-天煜博客

OpenCV-Python快速入门系列04图像像素的读写操作

修改像素值 通过索引直接修改像素值: 修改单个像素 image[100, 100] = [255, 0, 0] # 将 (100, 100) 位置的像素值改为蓝色 修改一块区域(ROI) image[50:150, 50:150] = [0, 255, 0] # 将 (50...
解决FFmpeg6.1.1编译后缺少ffplay的问题-天煜博客

解决FFmpeg6.1.1编译后缺少ffplay的问题

解决FFmpeg6.1.1编译后缺少ffplay,只有ffmpeg和ffprobe没找到ffmpeg原因:缺少SDL的库sudo apt-get install libsdl1.2-dev sudo apt-get install libsdl2-dev原文链接:https://blog.csdn.net/...
Oracle Linux 7.9安装PeopleSoft Campus Solution 9.2步骤-天煜博客

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 如...
Oracle Linux安装PeopleSoft到Setting up PeopleSoft Database  [FAILD]失败的解决方案-天煜博客

Oracle Linux安装PeopleSoft到Setting up PeopleSoft Database [FAILD]失败的解决方案踩坑记录

安装前在终端运行命令: On Oracle Linux: # yum -y install oracle-database-preinstall-19c
JavaFX Dialog对话框-天煜博客

JavaFX Dialog对话框JavaFX Dialogs (official)

Standard Dialogs Information Dialog Alert alert = new Alert(AlertType.INFORMATION); alert.setTitle('Information Dialog'); alert.setHeaderText('Look, an Information Dialog'); alert....
编程麻瓜的头像-天煜博客编程麻瓜5年前
01248
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(六)-天煜博客

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 ...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(四)-天煜博客

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...
OpenCV-Python快速入门系列28&29高斯模糊-天煜博客

OpenCV-Python快速入门系列28&29高斯模糊

简介 高斯模糊(Gaussian Blur)是一种常用的图像处理技术,主要用于平滑图像、降低噪声,同时保留图像的整体结构。在 OpenCV-Python 中,可以使用 cv2.GaussianBlur() 函数实现高斯模糊。 高斯...