最新文章第20页
万字+图解 Redis,面试不用愁了!-天煜博客

万字+图解 Redis,面试不用愁了!

今天,我不自量力的面试了某大厂的java开发岗位,迎面走来一位风尘仆仆的中年男子,手里拿着屏幕还亮着的mac,他冲着我礼貌的笑了笑,然后说了句“不好意思,让你久等了”,然后示意我坐下,说...
编程麻瓜的头像-天煜博客编程麻瓜5年前
01889
标准I/O库的缓冲方式-天煜博客

标准I/O库的缓冲方式

标准I/O库提供缓冲的目的:尽可能减少使用read和 write调用的次数。它也对每个I/O流自动地进行缓冲管理,从而避免了应用程序需要考虑这一点所带来的麻烦。 遗憾的是,标准I/O库最令人迷惑的也是它...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(二)-天煜博客

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...
C语言和C++之间动态库的相互调用-天煜博客

C语言和C++之间动态库的相互调用

昨晚有个朋友问我关于在C中调用C++库的问题,今天午饭后,由于脖子痛的厉害而没有加入到我们组的“每天一战”的行列中去,所以正好将C和C++之间的库调用关系做个总结。 1.extern 'C'的理解: 很...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(五)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(五)ElasticSearch

We’re almost there! HCM PI 34 bundles ElasticSearch and Kibana. On Linux, both these directories are available under /opt/oracle/psft/pt/ES/pt. Sasank’s posts provide a lot of...
C语言中的空指针NULL 与 void指针-天煜博客

C语言中的空指针NULL 与 void指针

空指针NULL 在C语言中,如果一个指针不指向任何数据,我们就称之为 空指针 ,用 NULL 表示。例如: int *p = NULL; 注意区分大小写,null 没有任何特殊含义,只是一个普通的标识符。 NULL ...
编程麻瓜的头像-天煜博客编程麻瓜6年前
0705
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语言基础教程指针详解

感觉写的不错,搬运来的。 一、什么是指针 C语言里,变量存放在内存中,而内存其实就是一组有序字节组成的数组,每个字节有唯一的内存地址。CPU 通过内存寻址对存储在内存中的某个指定数据对象...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(一)-天煜博客

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 ...
干货!上古神器 sed 教程详解,小白也能看的懂-天煜博客

干货!上古神器 sed 教程详解,小白也能看的懂

目录: 介绍工作原理正则表达式基本语法数字定址和正则定址基本子命令实战练习 介绍 熟悉 Linux 的同学一定知道大名鼎鼎的 Linux 三剑客,它们是grep、awk、sed,我们今天要聊的主角就是 sed。 ...