Amplify JS is a library that primarily provides oauth flow + hosted UI. As a managed service it also provides build pipeline. It uses CloudFront in the background for hosting and distributing content over the net. You can also use Amplify JS without the hostedUI and manage your own CloudFront distributions. One of the important … Continue reading Angular 8, Amplify and CloudFront
Author: Sandeep S. Dixit
High-level migration plan: Re-develop kabuter UI using Angular 8 and Amplify Created an kabuter.io angular 8 project by referring Michael Labieniec's blog on Progressive Web Application Follow amazon multi-environments doc for setting up prod, test and dev environments. Use AWS Cognito for user-management and social federation (facebook and google) Implemented social federation using AWS Cognito … Continue reading Migrating Kabuter.io from monolith to AWS server-less micro-services architecture
A quick and simple explanation of Kafka!
Dixit Ltd dba Ohioedge built the Kabuter app as a Free app. This SERVICE is provided by Dixit Ltd dba Ohioedge at no cost and is intended for use as is. This page is used to inform website visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to … Continue reading Kabuter Privacy Policy
With multiple level inheritance and polymorphism it can become a bit challenging to see how a method accepting and returning a generic would behave if within the method some transformation takes place and either a sub or super type of that generic is returned. Let's take an example Interface: public interface ClassInterface { String sayHello(); … Continue reading Understanding Casting with Generics