How to declare Inheritance in PHP with example?

What is Inheritance?:- Inheritance means one class method or properties access to another class. The child class will inherit all public, private, protected methods or properties from…

Read More

How to define String in PHP?

A string is a group of characters, where a character is equivalent to a byte. This implies PHP just supports a 256-character set and subsequently doesn’t offer…

Read More

What is Multidimensional array in PHP with Example?

Multidimensional Array is Arrays of Array means one arrays have multiple array. You can define as it have 2Dimensional ([][]), 3Dimensional ([][][]), 4Dimensional ([][][]), and etc. ex:-…

Read More

How can use Array Operators in PHP with Example?

Php union:- ($a+$b) = Work as union means if same value then replace left variable to right variable(for keys that exit both array) ex:- Php Equality:- Key…

Read More

What is the difference between numeric and associative array in loop with example?

For Loop with Numeric Array:- Numeric Array uses in For Loop for Declaration and Initialization as numeric index values are store and access. ex:- For Loop with…

Read More

Chef Tutorials: Understanding a Chef Cookbook Anatomy with Example

Following Reference Has been taken out from this url Attributes Resources Definition Files Libraries Providers Recipes Templates Cookbook Doc Files Cookbook Metadata File Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud…

Read More

Kubernetes Configmap explained using example

Content of reverseproxy.conf Commands to execute to create configmap Example pod using configmap Validating configmap inside a pod Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge…

Read More

PHP important topics with example

PHP:- Hypertext Preprocessor(Recursive Acronym) Server-Side Programming/Scripting Language It can be embedded directly within HTML. Files use a “.php” file extension. PHP Case Sensitivity:- PHP Comments:- PHP Variables…

Read More

CloudFormation EC2 Mapping Parameters AllowedValues Example Program

Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at Cotocus. I share tech blog at DevOps School, travel stories at Holiday…

Read More

CloudFormation EC2 Volume ebs elasticip Example Program

Creating a security group Creating an EC2 instance Increased root volume on the EC2 instance Attaching an externally created EBS volume Attached Elastic IP to the instance…

Read More

Kubernetes volume hostPath explained with examples

The hostPath volume mounts a resource from the host node filesystem. the resources could be directory, file socket, character, or block device. These resources mu A hostPath…

Read More

Kubernetes volume emptyDir explained with examples

Here are the following facts for emptyDir storage type in Kubernetes An emptyDir volume is first created when a Pod is assigned to a Node and initially…

Read More

Ant Example code for Emma Instrumentation

rajeshkumar created the topic: Ant Example code for Emma Instrumentation asdasd Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge…

Read More

Jenkins Remote access API Example | Jenkins Tutorial

Jenkins Remote access API Example Jenkins provides machine-consumable remote access API to its functionalities. Currently it comes in three flavors: XML JSON with JSONP support Python Remote…

Read More

Simple Ant Example – clean, prepare, and compile tasks

Sample Ant clean, prepare, and compile tasks <target name=”clean”> <echo>=== CLEAN ===</echo> <delete failonerror=”false”> <fileset dir=”${dest.dir}” includes=”**/*”/> </delete> <delete dir=”${temp.dir}” /> </target> <target name=”prepare” depends=”clean”> <echo>=== PREPARE…

Read More

Ant’s built-in properties – Ant Properties Guide

This is a simple example that illustrates how to find the basedir name, file name, project name, ant version, java version, operating system name, ant home directory…

Read More