Tag Archives: JavaScript

What is gRPC and how does it differ from REST?

By | March 25, 2023

gRPC and REST are both popular ways to build APIs for client-server communication. Here are some differences between the two: Here’s an example of a gRPC endpoint response in the Protocol Buffers data format message Book { string title = 1; string author = 2; int32 published_year = 3; } message GetBookResponse { Book book… Read More »

ES6 deep dive

By | October 8, 2020

ES6 Introduction JavaScript is an implementation of the ECMA script. The link to the full specification can be found at https://www.ecma-international.org/ecma-262/6.0. I will try to highlight some features that will help developers write cleaner JavaScript code. As we all know JavaScript has been there for years, I remember working on JavaScript in the year 2000,… Read More »

RSS feed in AngularJS

By | October 8, 2020

  Introduction This post provide details on how to read RSS feed in an AngularJS application. Web Application The AngularJs web application structure was initially generated using Yeoman scaffolding. It was modified to adhere some of the best practices. The structural changes brought modifications in grunt file for getting right dependencies and files generated when published. This… Read More »

limitTo filter for HTML in Angularjs

By | October 8, 2020

limitTo in Angularjs I have been using Angular 1.x for sometime. limitTo filter allows you to truncate a given input. limtTo takes a numeric parameter that defines, what length of input string you want to keep when this filter is applied. The limitTo however doesn’t work properly when you have a HTML embedded with in the string.… Read More »

Creating widget in ExtJs 6

By | October 27, 2015

Introduction This post is about creating widget in ExtJs 6. We will create a VOIP controls widget. It will have buttons for starting a Phone call, Audio, Video, Screen sharing and Terminating session. This ExtJs widget will demonstrate having multiple states icons. We will have a disabled, On/Off or Connected/disconnected states. This widget will also encapsulate functionality to… Read More »

Minify JavaScript and CSS using gradle

By | September 10, 2015

I am new to Java world with just 2 years approximately in my career. Recently I was working on a project that required us to minify JavaScript and CSS files in Java WAR archive. The technology stack for this project included Spring MVC, Hibernate, Gradle, BootStrap, and Thymeleaf. After searching for a plugin that enables us to minify… Read More »