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 …
Installing GoDaddy SSL in Amazon ec2 user
First of All, we need CSR file to generate SSL certificate. When you have completed generating your CSR, cut/copy and paste it into the CSR field on the SSL certificate-request page. To Generate a Certificate Signing Request for Apache 2.x $ openssl …
Secure Apache with Let’s Encrypt on Ubuntu 14.04/16.04
Introduction This tutorial will show you how to set up a TLS/SSL certificate from Let’s Encrypt on an Ubuntu 14.04 server running Apache as a web server. SSL certificates are used within web servers to encrypt the traffic between the server and client, providing extra security for …
Sample code for sending push notifications
Please update the code a/c to requirements. Sample Code Please update if any better alternative.
Issue in file upload through PHP – cURL
Problem File not being uploaded on server through PHP – cURL Solution The CURLFile interface must be used to upload files. Code <?php $url = ‘http://192.168.1.94:5000/api/v1/upload-picture’; $img = ‘img/placeholder.png’; // Form-data $data_array = array( ‘id’ => 1, ‘picture_type’ => ‘user’, ‘file’ => new CurlFile($img) …