最新发布第11页
排序
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...
如何快速精通一个领域?
为何要学习? 一句话总结,不学习,就注定被淘汰。不仅在工作上要学习,在生活上也要学习。 比如,你对现在的工作厌倦了,怎么办?学习新的技能。 比如,你升职过后,要管理很多人。怎么办?学...
推荐一款开源的截图工具火焰截图Flameshot支持Linux和Windows
在Ubuntu环境下,我挺喜欢使用这个软件的。安装也挺简单的,直接在终端运行命令即可。 sudo apt install flameshot Flameshot 自带一系列非常好的功能,例如: 可以进行手写 可以划直线 可以画...
RTSP 与 RTMP 协议
RTSP(Real Time Streaming Protocol) RTSP协议,这应该是实时性最好的了,如果要想实时性要求很高,比如0.5s以内,这个是不错的选择。前阵子模仿spydroid写了个建议的rtsp服务器,其实就是optio...
Java基础知识之异常
### 1.异常的概述 对Java来说,异常就是一个类,产生了一个异常,就是产生了一个类的对象, 这个类代表不正常的现象。 整个异常体系 :重要 Throwable(生病) Error (不可治愈的疾病) 错误:宕...
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> /** *...