排序
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(一)Getting Started
Here‘s the link to the main post. This post assumes that you have a Windows based host. I had completed the installation on Windows 10 running on a Lenovo laptop with a dual-core ...
Ubuntu20.04修改终端字体的方法
为什么要修改终端字体呢?因为我在使用vimplus的插件时候遇到了一个问题:插件中文显示乱码 在github找到的解决方案: 安装vimplus后Airline等插件有乱码,怎么解决? linux和mac系统需设置终端...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(二)Creating the VM Shell File
Link to the main post Once you’ve pressed the enter key from the Part-1, you’ll start seeing the following on the command prompt: Starting the PeopleSoft Environment Setup Proces...
解决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(索引)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...
什么是AOP?面向切面编程(AOP)的理解
什么是AOP? AOP全称Aspect Oriented Programming意为面向切面编程,也叫做面向方法编程,是通过预编译方式和运行期动态代理的方式实现不修改源代码的情况下给程序动态统一添加功能的技术。 AOP...
C语言基础#ifndef的用法
#ifndef起到的效果是防止一个源文件两次包含同一个头文件。 编译时,这两个C文件要一同编译成一个可运行文件,于是问题来了,大量的声明冲突。 一般格式是这样的: #ifndef <标识> #defin...
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...
Java基础知识之异常
### 1.异常的概述 对Java来说,异常就是一个类,产生了一个异常,就是产生了一个类的对象, 这个类代表不正常的现象。 整个异常体系 :重要 Throwable(生病) Error (不可治愈的疾病) 错误:宕...