Tech Blogs

The next big thing : OAuth2.0

Reading Time: 3 minutes OAuth2.0 is nothing but an authorization framework. To clarify it enables our third-party application to obtain limited access to HTTP services. In other words, it allows a third-party application to access limited resources on its behalf.

TensorFlow Quantum: beauty and the beast

Reading Time: 4 minutes So, we are finally here, after a long wait, we are going to be in an era of quantum computing. TFQ, the beauty of TensorFlow and beast nature of quantum computing. Quantum computing is becoming a technology to observe more closely in 2020. We have seen some recent announcements from Honeywell, Google and others, it’s worth looking forward to new pieces of hardware coming this year. Now, Google has Continue Reading

Modernizing Data Storage for fuelling Digital Transformation

Reading Time: 5 minutes As companies mature in their digital transformation journey, old technologies and rules of doing business are being re-defined. Capturing customers is no longer enough and companies are focusing on how to keep them engaged with hyper-personalized experiences. There’s an explosion of data sources as everyone and everything is connected with mobile devices, social media, and IoT.  What this means for a business is an exponential Continue Reading

UI / UX Trends 2020

Reading Time: 7 minutes A successful application is the one that has a lasting impact on the user’s mind (UX) and creates an instant attraction to the user (UI) for getting glued. In the last article, we talked about what is UI / UX, how it got evolved and key differences between both. In this article, we are going to talk about UI / UX Trends in 2020. We Continue Reading

Table Driven Testing in Scala

Reading Time: 3 minutes As a software developer, I ensure to write unit tests for the code which I write (and at times the missing unit tests for the existing code). My aim has been to ensure to cover all the cases that arise out of the code written and therefore I face challenges in this too. Because of my endeavour to write a sufficiently strong test suite for Continue Reading

Unary Streaming via gRPC

Reading Time: 3 minutes If you want to get multiple responses and send multiple requests, it is the time to use gRPC Streaming concepts. You cant do streaming with REST API as REST API uses HTTP 1.1. In this blog, I will go through how you can do Unary Streaming via gRPC. Types of APIs or Streaming in gRPC gRPC supports four types of APIs to support streaming. 1. Continue Reading

Dangerous Linux Commands

Reading Time: < 1 minute **Warning:** These commands should NEVER be executed on will. They will most likely destroy your system (or ruin a major part) before you can stop them, however, if you want to see how they work, you could run them inside a Virtual Machine. So, let’s get started: This command basically means “remove all files (even Read-Only files) recursively in the root (top) directory” (can also Continue Reading

CRT020: Databricks Spark Certification

Reading Time: 3 minutes Last week, I cleared my Spark Certification from Databricks. Here is the link to the exam. In this post, I’ll try to cover each and every related thing which is required to clear this exam.

Java 9: Getting started with Jshell in JAVA 9

Reading Time: 3 minutes Java Shell tool (JShell) has been introduced as a part of JAVA 9. It is a Read-Evaluate-Print Loop (REPL), which evaluates declarations, statements, and expressions as they are entered and immediately shows the results. The tool is run from the command line. In this blog, we will learn about this interactive tool that can be used for learning the Java programming language and prototyping Java Continue Reading

Integration of a DocuSign service in Scala

Reading Time: 2 minutes DocuSign is the leading eSignature solution firm. Its cloud-based platform for automating the agreement process enables more than 370,000 companies and hundreds of millions of users in over 180 countries to accelerates  business and simplify life. DocuSign have a rich rest API interface and also have a SDK supports for many different languages like Java, C# , PHP etc. We can use these APIs to Continue Reading