Category: Web Development
Integrate Google Photos in React-Native
Using the Google Photos Library API your app can read and write the photos in google photos or you can use them as a photo gallery in your application. To integrate google photos in the react-native application you first need
How to recover the corrupt adobe captivate Project file?
Sometimes adobe captivate project files get corrupted when project file data is not saved or we close the file without saving it. For example, I have created a MyProject.cptx file in Captivate and it crashed without saving data. After that
Profiling in Python using cProfile
Many times we need to optimize our code as our program is spending too much time on some specific line of code. There are hundreds of lines of code and we are stuck on which piece of code to modify
Upload document using Google Drive API in .Net
We will create a console application using .net and upload documents to google drive using Google Drive API V3. Step 1: Enable Drive API Go to the Google API Console. Select a project. In the sidebar on the left, click
Why React JS is popular?
React JS React is an Open Source JavaScript library for making User Interface or UI components. It is developed by Facebook to create attractive web applications fast with minimal code. React components allow the developer to break the complex module
Heroku Toolbelt
Heroku is a cloud-based application deployment and management service. Heroku works on the principle of the container-based design system and these smart containers are known as dynos. The Heroku Toolbelt is a package of the Heroku CLI, Foreman, and Git
Integrate Razorpay in CakePHP 3
Step 1: Create RazorPay Account First of all you need a test account for integration. Click the below link https://dashboard.razorpay.com/#/access/signup and set up a test account there: Step 2: Get your API Keys: After successful login, you will see your
TypeError: ‘<' not supported between instances of 'int' and 'str' in Python
Description Sometimes there may be a need to access or simply print a python dictionary in a particular order of its keys i.e. ascending or descending as it was in my case. Although it seems that it is not a
What is Laravel Socialite?
Most of the sites require User login and registration with Social sites like Facebook, Google+, etc. Laravel provides a simple way to authenticate with OAuth provider Socialite. Laravel currently supports Facebook, Google, Twitter, GitHub, Bitbucket, etc. Installing and configuring composer