Tutorial

Python - Comparison Operators

Python provides operators that can be used to compare values or values within variables. As as the name implies. Both `==` and `!=` are considered as Comparison operators.

An Intro to HTML <address> Tag

The semantic HTML <address> element indicates that the enclosed HTML provides contact information for a person or people or an organization of a document or an article representing document or an article.

Get Last Array Element in PHP and Laravel

This article, guide you through the retrieval of last array element in different ways in Laravel and also in PHP.

Links in Markdown

The Markdown language supports creating different types of links including internal & external. In this article you will see how to create different links as per your need. The text enclosed within `[]` and link within `()` to create link.

Create directories or folders in Linux with mkdir command

The `mkdir` command comes handy to make one or more directories aka folders in Linux system. This article shows the basic usage of mkdir command with examples.

List in Markdown

The Markdown language supports creating different types of list with different types of bullets. In this article we will see how to create ordered and unordered list as per need. Use `-` to create unordered list and `1` for ordered at the start of lines.

Create collection instance for given array in Laravel

This tutorial explains with syntax and an example of how to create a collection instance from provided array with Laravel collect() helper method in the framework.

Headings in Markdown

The Markdown language supports creating different level of heading styles. In this article we will see how to create different headings as per need. Use `#` to create heading at the start of lines.

Python - Arithmetic Operators

Python supports different arithmetic operators that can be used to performs mathematical calculations on the values and variables. The basic arithmetic operations include addition, subtraction, multiplication, division. Arithmetic operations are performed according to the order or precedence of operators.

Get Laravel Version via Command Line

This article, guide you through the retrieval of Laravel version of a project being used.

Laravel's Eloquent whereTime() filtering method

This article, guide you through the usage of Laravel's Eloquent `whereTime()` method. It is used to match a field value against a specific time.

Convert array to an object in JavaScript

This article explains simplest and quickest way to convert array to an object in JavaScript. Using widely accepted spread operator `...` makes easy to do it.