Blog

Agile Intro

Agile has the much higher rates than traditional methods, so many companies are now adopting the Agile practices. Understanding them can help you like how you are more valuable team …

Introduction

Learn different techniques of Project Management.Project: Project is temporary, unique activity undertaken to create the unique product, service or the result in order to achieve definable end product within specified …

IP Release/Renew/Flush DNS

ipconfig shows all current TCP/ IP network configuration values like: IP Address, Subnet Mask and Default Gateway IP Release It erase/release the current TCP/IP settings #ipconfig /release IP Renew Get …

pexels-photo-374006

High Level Linux Commands

Creating FTP User cd /var/www/vhosts/ (Path of vhosts directory) useradd newUser -d /var/www/vhosts/ -G apache  (newUser: Name of user to be added) passwd newUser Password: **** ReType Password: **** Giving …

Basic Linux Commands

Create new tar archive #tar -cvf file.tar /directoryname Extract from existing tar archive #tar -xvf file.tar Create zip for folder #zip -r directory.zip /directoryname To extract .zip compressed file #unzip …

jQuery

Q: What is the difference between onload() and document.ready()? A: In a page, we can have only one onload function but we can have more than one document.ready function. Document.ready …

close-up-code-coding-1089440

Javascript

Q1. What is JavaScript? A: JavaScript is a client side scripting language, that can be inserted into HTML pages and is understood by web browsers. Q2. What is ‘this’ keyword? …

man-using-ballpoint-pen-374820

MySql

Q1. What is the difference between Where and having clause? A: HAVING specifies search condition for a group or an aggregate function used in SELECT statement. HAVING is typically used …

Ruby On Rails

Q1: What does ruby name refer to? – Ruby on Rails A: Ruby names refer to the classes, variables, methods, constants and modules that help in the creation of the …

Magento

Q1. Explain Magento’s MVC architecture? Q2. What is EAV in Magento? Q3. How Magento ORM works? A: ORM stands for Object Relational Mapping. It is programming technique used to convert …