Category: Web Development
How to create Bootstrap Carousel?
Learn How to create Bootstrap Carousel The carousel is a slideshow for cycling through a series of content. It is also known as image slider. It also includes support for next and previous controls. Now, let’s see how to create
PostgreSQL – Server doesn’t listen error
How to fix PostgreSQL server doesn’t listen error While trying to connect to Postgress you may face this error – Server doesn’t listen. Error: This is not an error exactly but an exception that occurs when we are running two
How to get Lat, Long in React Native app
Steps to access GPS in React Native app to capture lat/long In your AndroidManifest.xml add following permissions: <uses-permission android:name=”android.permission.ACCESS_FINE_LOCATION” /> it comes enabled by default on iOS but not Android. There are three methods available for geolocation: getCurrentPosition allows us
Tableau development environment setup alternatives
Tableau development environment setup alternatives with and without Data Migration from Development to Production Development, Test, QA and PRODUCTION – With Data Migration Description: Common names for environments for Tableau development are development, test/QA, staging/pre-production, and production. There are typically
Customize context menu position in Devextreme datagrid
How To customize default position of context menu in Devextreme datagrid using jquery? Context Menu in devextreme is a set of menu items/links that appears on right click of some element like button or image by the user. By default
How to run Background services in React Native app
Steps to run Background Services in React Native app React-native-background-task is a library which can execute a function when the app is closed or in background, no more frequently than every 15 minutes. Installation: $ npm install react-native-background-task –save Android
How to get Lat, Long in Ionic app
Steps to access GPS in Ionic app to capture lat/long For this feature we use Geolocation plugin in ionic. It provides user’s current position based on the device’s current location (latitude and longitude). With the help of latitude and longitude
Purpose of multiple .htaccess files in CakePHP
What us the purpose of multiple .htaccess files in CakePHP? In Cakephp, contained .htaccess files are as follows: 1. newcakeproject/.htaccess 2. /app/.htaccess 3. /app/webroot/.htaccess 1. newcakeproject/.htaccess CakePHP root directory .htaccess redirects everything to your CakePHP app (means to webroot). We
How to use Laravel Queue with database
Purpose of Laravel Queue and How to use them with database Page load time is an important aspect of any successful website, and one should not overlook the importance of that as it affects the SEO of the site and
