What do we do?

The startup is primarily working on a Visual Data Lineage Tool.

About our Product

In an interconnected world, every enterprise is awash with data.
There are many common pain points dealing with data.

Our tool aims to mitigate some of the common pain points companies face when dealing with the data deluge. The data product is generic and does not target any industry segment.
(We are still in stealth mode and hence some details are still confidential).

Do you have any pain points dealing with data and would love to see it solved via a tool? We would love to hear from you!
Please drop us a note at: admin [at] suketa.in

What are we good at?

Micro-Services

Micro-services are our company’s bread and butter.
We have experience writing micro-services both on the:

  • .NET Stack (We ❤️ F#)
  • JVM Stack (We ❤️ Kotlin)

RDBMS

We are good at using Relational Databases.

  • We design relational and normalized Tables.
  • We write stored procedures, Triggers, Views, and other SQL paradigms.
  • We design optimized queries.

No-SQL

We have the expertise to design No-SQL databases to be used at exceptionally large scale and low-latency.
We are not biased between typed or non-typed DB’s. We have used both without prejudice based on the use-case presented to us.

Azure Cloud

We primarily use Azure cloud to build our offerings and services.

Articles:

How to generate code from Swagger/Open API Specifications

In modern software development, having well-documented APIs is crucial for collaboration and integration. Postman is a popular tool for testing and documenting APIs. Open API Specification is a widely accepted standard for defining RESTful APIs. In this blog post, we’ll walk you through the process of converting a Postman collection into an OpenAPI specification and then using the OpenAPI Generator to create a JavaScript client from it.

[Read More]

Understanding Financial Swaps

Understanding Financial Swaps

Swaps in the financial industry are complex derivative contracts that are essential in today’s financial markets. With a focus on its key characteristics, uses, and roles, this abstract gives a general introduction to swaps.

[Read More]

Deploying Docker image to Azure App Service using GitHub Actions

Deploying Docker image to Azure App Service using GitHub Actions

Dockerfile

A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

GitHub Actions

GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production.

[Read More]

Understanding JSON-Web-Tokens (JWT): A Comprehensive Guide

Understanding JSON-Web-Tokens (JWT): A Comprehensive Guide

JWT

What is cryptography?

Cryptography is the practice of secure communication in the presence of third parties. It involves the use of mathematical algorithms to encode and decode messages, making it difficult for unauthorized individuals to read or modify the data being transmitted. It involves techniques such as encryption, hashing, and digital signatures to ensure that messages are protected from unauthorized access or tampering.

[Read More]

Docker Simplified: A Beginner's Guide to Containerization

Docker Simplified: A Beginner's Guide to Containerization
Introduction Docker is a popular tool used by developers and IT professionals to streamline the process of building, packaging, and deploying applications. It allows applications and their dependencies to be packaged into lightweight, portable, and self-sufficient containers that can be run consistently across different environments. What are Containers? Containers are lightweight and portable packages that contain everything needed to run a software application, including the code, libraries, and settings. Containers are similar to virtual machines but are more lightweight and efficient, as they don’t require a separate operating system. [Read More]