
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 the parent class….
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 local Unicode support….
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:- How to work:-…
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 value same but…
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 Associative Array:- The…
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 Expert passionate about…
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 and experiences. I…
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 ($):- PHP echo…
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 am working at Cotocus. I blog tech insights at DevOps School, travel stories at Holiday Landmark, stock market…
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 Rajesh KumarI’m a…
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 volume mounts a…
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 its empty A…
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 and experiences. I…
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 access API is…
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 ===</echo> <mkdir dir=”${dest.dir}”…
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 name, java home…
Read more »