Revamp Quality Assurance: QA to QE
Difference between QA and QE? Quality Assurance “assures” quality of the product, but quality engineering drives the development of quality products and processes.
Why It Makes Sense to Design Simple Websites
Every website has a purpose, and at the root of it, that purpose is to provide an excellent user experience. That demands that sites interact with their users in the...
State Management in Vue using Vuex
Vuex is a state management pattern + library for Vue.js applications. It serves as a centralized store for all the components in an application, with rules ensuring that the state...
How to implement AWS IoT core communication in .NET Framework application using MQTT?
We can publish and subscribe messages on AWS IoT core by establishing a connection to it. In .Net Framework we have multiple options for connecting to AWS IoT core.
Async and Await in C#
If a programmer wants to run some part of code separately from the main thread execution, he/she will make use of Asynchronous Programming. Read here
Dataprep on GCP
Cloud Dataprep is a Trifacta-operated integrated partner service focused on their industry-leading approach for data preparation. Read more
Localisation using react-intl
React-Intl, part of the FormatJS set of libraries used for Internationalization. Internationalization is the mechanism used for localization for the visitor belonging to different regions and languages.
Process and Strategies used for Cloud Migration
What is Cloud Migration? Cloud Migration is the process of moving applications and it’s infrastructure (On-premises or from another Cloud provider) to the cloud provider of your choice.
Expenses 101 for New Business Owners
One of the biggest challenges you'll face when setting up your own business is accounting. Keeping track of your expenses is especially critical, as it can save you money in...
Stripe integration in Rails
What is Stripe? Stripe, a service provider based in San Francisco, California, United States, is an American financial services and software company.
Feature of App Script over G-suite
Google Apps Script is a quick application development platform that helps to create business applications which are embedded with Google workspace. Read more
Xamarin tvOS TableView with Horizontal and Vertical Scrolling
What is TableView? TableView is the UI component used to display a large amount of data in a single column of scrolling views. Know how to add TableView.
How to Improve Website Performance With Caching in Rails?
What is caching and Why Use Caching? Caching is the process of storing results of a complex (or not so complex) computation in a cache or temporary storage location in...
Using Cloud SQL with Kubernetes Engine
The blog will give you a brief idea about Using Cloud SQL with Kubernetes Engine. Get more details about setting up the Cloud SQL with Kubernetes Engine.
How to install build for testing in AppleTV without using Testflight/App Store?
What is AppleTV? It is an entertainment device which receives digital data for visual and audio content (video, music, etc) and then you can play it on a connected television...
Cloud Mining: A new stage of Cryptocurrency Mining
It is a method to mine a cryptocurrency, such as bitcoin, using chartered cloud computing and without necessarily having to install and instantly run the hardware and related software.
Introduction to Why and How to apply Machine learning operations
What are Machine learning operations? Machine learning operations (MLOps) is the usage and implementation of ML models in DevOps (development/operations).Read more
Google Cloud Software as a service
SaaS is known as Software as a Service, is a cloud-based service where instead of downloading software for your desktop PC or business network to run and update, you can...
How to build and run ASP.NET Core web app in Docker?
Build the ASP.NET Core web app. Create a docker file similar to the following commands to build the ASP.NET web app. Read more
Javascript Currying
Technique of converting a function that takes multiple arguments into a sequence of functions that each take a single argument is known as Currying. Read more