If you want to create Boomerang with FFmpeg command then you can use below command to use. Single command to create boomerang video ffmpeg -y -i input.mp4 -filter_complex [0]reverse[1];[0][1]concat=n=2,setpts=0.5*PTS output/boomerrang.mp4 where setpts=0.5*PTS : This is for fast video. [0]reverse[1] : this is for reversing the input video Still …
Generic Recycleview with Adapter in Kotlin
Now I will show you how to use Generic RecycleView for different View Types. First of creating Generic Recycleview Adapter (GenericAdapter) class as below. import android.support.v7.widget.RecyclerView import android.view.LayoutInflater import android.view.View import android.view.ViewGroup abstract class GenericAdapter : RecyclerView.Adapter { var listItems: List constructor(listItems: List) { this.listItems …
UICollectionView Auto Slider
Collection view auto scroll Data Like (Slider) Collection view scroll automatically next page every 3.0 seconds First Outlet Of CollectionView @IBOutlet weak var cvWeeklyDeals: UICollectionView! 2. creating Timer to call every 3.0 seconds call to method func startTimer() { let timer = Timer.scheduledTimer(timeInterval: 3.0, …
Creating Replica Set for local MongoDB server
A replica set in MongoDB is a group of mongod processes that maintain the same data set. With multiple copies of data on different database servers, replication provides a level of fault tolerance against the loss of a single database server. All databases hosted on …
UITableView – Reverse Pagination
As a solution i found that we need to transform our UITableview. So all the contents in the UItableview are transformed. You need to transform Cell, You need to implement header instead of footer and vice-versa. We need much more time to do this, so …
Finding location within the certain range of Latitude & Longitude using Node.js and MongoDB
In this post, I will explain by example how we can find nearest locations by given latitude and longitude with MongoDB. First step – Create schema: // create geolocation Schema const GeoSchema = new Schema({ type: { type:String, …

MongoDB : Transactions
Multi-statement transactions are a big deal for a lot of companies. The transactions feature has been in development since MongoDB version 3.6 when sessions were added. Now we will be able to see how both sessions and transactions work. here is the article, we highlighted a few …
Bootstrap 4 Multi-slide jQuery Slider
Check here:- http://inheritxdev.net/CPT/new_inx/
Git Documentation for basic steps
These are basic git commands which is required in daily code managing. -To start project – To get latest code from remote – To set your local code in remote – Deleting branch – Deleting file – Revert to previous commit Basic Git Commands:- git clone git-path …
Amazon SES Setup
Amazon Simple Email Service (Amazon SES) is a cost-effective email service built on the reliable and scalable infrastructure that Amazon.com developed to serve its own customer base. With Amazon SES, you can send transactional email, marketing messages, or any other type of high-quality content to …