Posts

Introduction to MongoDB

In this article, we’re going to see about an Introduction with MongoDB and comparison with MySQL

Introduction to JAVA

Java is a high-level general programming language originally developed by Sun Microsystems and released in 1995. Java runs on more than 5.5billion devices that quite huge.

Install GitHub Desktop on Ubuntu or Ubuntu-based distributions

This article helps you to install GitHub Desktop an open-source application on Ubuntu. Features like syntax highlighted diffs, image diff, cross-platform and many more make it worth trying.

How to update a record without updating timestamp in Laravel

In this article, we will see How to update record without saving or updating timestamp fields either updated_at or any other custom field. Laravel provides us functionality to handle timestamp update while saving model. Assigning false to timestamps property of model during model save, prevents auto update of timestamp fields.

MySQL - List all Databases

In this article, you will see how to retrieve list of databases with MySQL.

Introduction to SQL

In this article we look into intro about SQL aka Structured Query Language. Used by numerous big giant tech companies & by widely popular applications.

Dart - Comments

The comments are notes that developers can add in source code and are ignored by compilers. It’s an art of describing what your code does and may be why. These comments are not evaluated.

Display the multiplication table in Python

In this article, we’ll see a program or source to display multiplication table in Python programming language using loop and range() function.

Get Dart Version via Command Line

This article, guide you through the retrieval of Dart version via command line.

Dart - Semicolons

Semicolons in Dart are mandatory. The semicolon acts as statements terminator. That is every statement must be ended with a semicolon(;). Dart also allows multiple statements in a single line, exception that every statement must be ended by a semicolon(;).

Generate a Random number in Python

In this article, we’ll see how to generate random number in Python programming language.

How to check if a variable is an integer in Python

In this article, we’ll see different ways to check if a variable is an integer. Using type() function and isinstance() function.