Latest

Intergrate vscode editor in angular
To intergrate vscode editor in angular 13 typescript and above, ngx monaco editor should be installed. The following steps described…

Spring WebFlux Databuffer Limit
The default databuffer limit size in spring webflux is 262144(256K) bytes, and it is hardcode in Base class(BaseDefaultCodecs), When you…

Understanding sync.Map in Go
As we know that go provides a type of map that allows us to store key-value pair data, but if…

Kubernetes configmap guide
A ConfigMap is a Kubernetes resource that allows you to store configuration data as key-value pairs. You can use ConfigMaps…

Happy New Year
Happy New Year! The Chinese new year is comming soon(The day after tomorrow). Wish you all who comes here: The…

Php configure memcached in centos8
Install and configure php and memcached plugin for wordpress setup on centos8 I use pecl to manually install memcached plugin.…

Kubernetes Pod Resource Usage Checking
There are so many ways to check pod resource usage such as cpu and memory in kubernetes, kubectl top command…

Kubernetes copy file from pod to local
Kubernetes client kubectl provides cp sub command to copy file from pod to local filesystem or from local filesystem to…

Troubleshooting kubernetes pod get stuck in Terminating status
Pods in Kubernetes can sometimes get stuck in the “Terminating” status, which means that they are being terminated but have…
Articles

OpenShift Code Ready Containers Guide
Openshift code ready container(crc) is a lightweight openshfit environment for developers, it can be installed on a single standalone vm…

Add External Image Registry in OpenShift
There are serval ways to connect an external image registry (such as harbor) to your openshift environments. In installation phase,…

Php7.4 Startup: Unable to load dynamic library zip.so
When upgrading php from 7.2 to 7.4 in centos 8, then restart php-fpm service, an error message below occoured. Check…

Happy New Year
The Chinese new year is coming soon!In the year of rooster,I wish you all be rich and live a life…

openshift origin multi-master manually deployment part-4
7, setup node service, we install node service on all nodes, including master nodes. yum install -y centos-release-openshift-origin yum install…

Mysql 8.0 Allow Root Remote Login
When setting up mysql with mysql_secure_installation, Disallow root login remotely set to no, but login with root user from remote…

Happy New Year
Happy New Year! The Chinese new year is comming soon(The day after tomorrow). Wish you all who comes here: The…

Php configure memcached in centos8
Install and configure php and memcached plugin for wordpress setup on centos8 I use pecl to manually install memcached plugin.…

OpenShift 4 Internal Image Registry Configuration
By default, when you install your openshift 4 cluster on bare metal manually, the internal image registry is not available,…
Programming

Intergrate vscode editor in angular
To intergrate vscode editor in angular 13 typescript and above, ngx monaco editor should be installed. The following steps described…

Angular Application Witch Ace Editor Error
In HyperKuber Web Project which is using angular 13 with ace editor for yaml/json display, an error occured in browser…

Understanding sync.Map in Go
As we know that go provides a type of map that allows us to store key-value pair data, but if…

getrusage()
I just wrote one system call getrusage() today. paste it up.

Determine whether a directory is empty or not for ext2 file system
How do we determine whether a directory is empty or not for ext2 file system? first,let’s take a look at…

A deep look into the kernel design of Shaun OS
The advanced design of kernel has made Shaun OS much more stable, attractive. How does it work? I will give…

JS/TS Convert unix timestamp to Time String
To Convert a unix timestamp to humman readable string, use new Date() with parameter * 1000, convert unix timestamp to…

UEFI GUI App
This is a UEFI gui demo app i wrote for my job project. I have implemented some basic UI components,edit…

Convert Json To Yaml In Java
In java, to convert json string or json object to yaml string, you can use jackson to do this in…