Posts

Security Measures for Your Single Page Application

Building a secured application is always a puzzle for many of us. This is so true when you  need to secure a Single Page Java Web application where many things are happening on the browser which is not in your control.  This post discusses this problem along with some of the popular preventive measures available today to secure your  single page web application. What is Single Page Application? In earlier days web browsers were not  really powerful as we see them today.  We used to build web applications by moving most of the processing logic to the server, leaving browser as a simple mean to render the DOM returned by server. Simple user action like clicking a button, scrolling page were all handled on server. Over a period browsers became more rich in terms of functionalities and we have witnessed JavaScript emerging as powerful scripting language. A single-page application (SPA) is a web application that interacts with the user by dynamically rewriting...

The Top 50 Tools of 2018

Let me share a couple of interesting survey results: This looks very interesting, check it out:  https://stackshare.io/posts/top-developer-tools-2018 You may like this as well:  https://research.hackerrank.com/developer-skills/2019

Frequently Used Docker Commands

Here is the list of frequently used docker commands: (You can find the full list in the official documentation  ) List All Images docker image ls -a Remove All images docker rmi $(docker images -q) List All Containers docker ps -aq Stop All Running Containers docker stop $(docker ps -a -q) Remove  All Exited Containers docker rm $(docker ps -q -f status=exited) Remove All Running Containers docker rm -f $(docker ps -a -q) Remove All Unused Data(Unused containers, Images, Networks and Volumes) docker system prune Check Inside A Container docker ps -aq  (lists all container ids) e.g: 78ad7c6f87dd 6df1eda50edc c1328da109d7 docker exec -it     bash e.g: docker exec -it   78ad7c6f87dd    bash

Setting up Istio on Minikube for Running Bookinfo Demo Application

You can read this post here .

A Simple Helidon MicroProfile Microservice Demonstrating Many of the Commonly used JAX-RS APIs

You can read this post here .

Building a Simple Polyglot GraphQL Server

You can read this post here .

Building a Simple Java Microservice Using Helidon MicroProfile APIs and JPA

You can read this post here .