Application

26th November 2019

HOW TO BUILD YOUR OWN REST API USING YII2 PLATFORM

There are a number of third-party APIs (application programming interface) which give you a lot of flexibility in how you use them. If there is a particular app development that works across different platforms, then it becomes imperative to use REST APIs. REST is a shortened form of Representational State Transfer. There are a number of HTTP protocol approaches like PUT, DELETE, POST, and PUT which go into the creation of a REST API. Let us look at how to develop a REST API in Yii2 framework. But before that, it is important to understand why cloud computing service providers […]
14th November 2019

Overview of Application Containers

We’ll start with an overview of what application containers are and how they are used in enterprises to help improve deployment time, consistency, and the efficiency and availability of applications. Along the way, we will cover key characteristics of what containers can and cannot do, and how they compare to virtual machines. In future related posts, we will cover how Kubernetes is used to orchestrate containers and associated resources. We’ll discuss how Kubernetes schedules the deployment of containers, scales container resources, manages communication between applications in containers, and is used to monitor the health and availability of containers. What’s an […]
3rd April 2019

Build A Perfect E-commerce Application

Developing an E-Commerce mobile application is connecting directly with the customers. Knowing their choices, understanding their nature of purchase and tracking the potential conversions. It’s all about understanding the basic requirements of a customer to delivering a final product. In this know-how of customer engagement with the product, it is necessary to outdo an E-commerce mobile application well. Develop A Perfect E-commerce mobile application, the blog must contain information for developing an E-commerce Application that increases customer’s engagement and generates a better return on investments. Considering any business in the world, we can see that everyone is considering their customers […]
21st April 2018

An Introduction to React Native

React is a framework created by Facebook for data driven web interfaces. React provides a component driven architecture which uses a declarative syntax and is easily extensible. So what is the difference between React and React Native? React was originally created for web user interfaces. The mantra behind React has been “Learn Once, Write Anywhere”. Facebook’s goal has been to “be able to develop a consistent set of goals and technologies that let us build applications using the same set of principles across whatever platform we want.” Given this overarching goal they set out to apply the same set of […]
10th March 2018

How to Play a Video in Unity

Sometimes, being able to play a video file in your game is something that needs to be done. Fortunately, Unity provides a component and some libraries to help you do just that. In this post, I will talk about the Video Player component and some of the requirements you need to meet so that Unity can play your video in-game. What is a Unity Video Player? unity-video-tutorialUnity has a component called a Video Player. This component can be attached to any Game Object in your scene. It allows you to assign a video file to it for playback within your […]