Test Blog

This sample CMS setting

this is sample for working !!!

System.out.println("Test Print");

Install JFrog Artifactory in Ubuntu using deb file

This post will deal with install JFrog Artifactory OSS using deb file in Ubuntu.

To download artifactory goto https://jfrog.com/open-source/ and click on Download Debian

Download JFrog Artifactory OSS Debian

If you are on shell you can use wget to get the deb file.

To Install

Open the terminal and navigate to location where you download jfrog-artifactory binary and type following command (Note: your deb file name may differ)

$ sudo dpkg -i  jfrog-artifactory-oss-6.11.1.deb

Simple Mysql Server Installation in Ubuntu

In this post look how to install mysql server install

Step 1 : Update the repository

$ sudo apt update

Step 2: Install MySql Server and Client package on system

$ sudo apt install mysql-server mysql-client

Step 3: Configuration Mysql Server

$ sudo mysql_secure_installation

Configurator you mysql root password

Step 4: Login using Mysql Client cli

$ mysql -uroot -p

Enjoy

Sort Date Correctly with Material Angular Table

We will try sort a date field which is coming as string in MM/dd/YYYY.

Using Default Sort for String as date

Incorrect Sort for date material angular table

Checkbox List With Material Angular

We make a checkbox list component in angular using material angular MatCheckbox component. When used as model this list will return the list selected checkbox values

Checkbox List Screenshot