什么是AOP?面向切面编程(AOP)的理解-天煜博客

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

什么是AOP? AOP全称Aspect Oriented Programming意为面向切面编程,也叫做面向方法编程,是通过预编译方式和运行期动态代理的方式实现不修改源代码的情况下给程序动态统一添加功能的技术。 AOP...
解决man手册在deepin环境下资料不全的问题-天煜博客

解决man手册在deepin环境下资料不全的问题

在deepin环境下查阅man手册时候,遇到问题:没有 fopen 的手册页条目 解决方法: sudo apt install manpages-de manpages-de-dev manpages-dev glibc-doc manpages-posix-dev manpages-posix
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(索引)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(索引)Step By Step Guide

搬运备用 原文博客https://mani2web.wordpress.com/ Hello everyone! Hope everyone is doing good and staying safe!   Four years ago, I had shared a step-by-step guide for instal...
C语言基础-天煜博客

C语言基础#ifndef的用法

#ifndef起到的效果是防止一个源文件两次包含同一个头文件。 编译时,这两个C文件要一同编译成一个可运行文件,于是问题来了,大量的声明冲突。 一般格式是这样的: #ifndef <标识> #defin...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(三)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(三)PeopleTools Installation

Link to the main post So, if you’ve come this far, you should be able to access the PeopleSoft home page without any issues In this post, let us look at installing PeopleTools. Fi...
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...
Linux驱动面试题整理含答案-天煜博客

Linux驱动面试题整理含答案

传送门:https://blog.csdn.net/kai_zone/article/details/82021233
C语言基础教程-天煜博客

C语言基础教程循环语句&算法习题

/** * File Name: practice.c * Author: Haoxuan * Mail: haovxuan@126.com * Created Time: 2020年12月16日 星期三 10时48分01秒 **/ #include <stdio.h> #include <math.h> /** *...
推荐一款开源的截图工具火焰截图Flameshot-天煜博客

推荐一款开源的截图工具火焰截图Flameshot支持Linux和Windows

在Ubuntu环境下,我挺喜欢使用这个软件的。安装也挺简单的,直接在终端运行命令即可。 sudo apt install flameshot Flameshot 自带一系列非常好的功能,例如: 可以进行手写 可以划直线 可以画...
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....