Let’s Code Better
-
How to Get Fabric API Key and Fabric Api Secret?
Read more: How to Get Fabric API Key and Fabric Api Secret?Fabric.io is a platform that provides many services for building better apps, to grow performance and look into the insight of user and business behavior. The most useful feature provided by Fabric.io is Crashlytics, this is an error reporting tool which immediately reports issues in an application like warning, error or fatal crashes in an…
-
Ionic 3 Image Viewer Example – Load Assets Folder Images
Read more: Ionic 3 Image Viewer Example – Load Assets Folder ImagesIn this post, we will discuss on how to show local images in application asset’s images folder in Image / Photo viewer having basic functionalities like Pan, Zoom, Share download image on device etc.
-
Ionic 3 Copy to Clipboard Plugin ( Copy and Paste ) Ionic Native 3.x Version
Read more: Ionic 3 Copy to Clipboard Plugin ( Copy and Paste ) Ionic Native 3.x VersionClipboard is referred to a special memory space provided in the device, specialized to keep last copied data like text, images, files etc. Clipboard is a temporary space which is washed out as user copies new data and replaces existing data. In this tutorial we will implement Clipboard or Copy Paste plugin in Ionic 3…
-
Angular 7/6 – How to Implement Lazy Loading for Components Sample Application Example
Read more: Angular 7/6 – How to Implement Lazy Loading for Components Sample Application ExampleLazy loading is an architectural design which is popular these days among new technologies. This concept is mainly used in complex and data-intensive applications. In Lazy loading only that module or component is loaded which is required on that point of time, this makes an application very fast and economic on memory consumption factors.
-
YouTube Data API v3 1M Units Limits Explained!
Read more: YouTube Data API v3 1M Units Limits Explained!When we come across a term Quota in a Google API, it makes a strange feeling and buzz around many Questions like What if I exceed this limit? Will Google ask for money if my Qauta exceeds? What is the meaning of these limits when I use Key in an API? Now If you want to use any…
-
Integrate Angular Material in Ionic 3
Read more: Integrate Angular Material in Ionic 3Angular’s team build Google’s Material design-based framework known as Angular Material. This framework is based on principles of Google material design, you can read more about it here. Today we will discuss, on how we can fuse the beauty of Angular Material and its powerful components with Ionic 3 framework. At the end of this tutorial,…
-
jQuery – Show Tooltip on Long Text with Ellipsis AKA DOTDOT
Read more: jQuery – Show Tooltip on Long Text with Ellipsis AKA DOTDOTSometimes in grids, we have long strings of data to show in cells, but they not only distort the UI but also make all data visible even when not necessary. So to resolve these scenarios what we can do is to show access data in tooltip on hover and by default exceeding data from a…
-
Implement Realtime Firebase Database in a Webpage from Scratch
Read more: Implement Realtime Firebase Database in a Webpage from ScratchFirebase Real-time Databases use WebSockets to keep an eye on data changes on the server side and those changes are reflected in real time on the client side. Here we will create a simple example webpage using Firebase Real-time Database, this will be a “Hello World” type example explaining the basic method to read write…
-
Angular 12 How to Check All/ Uncheck All Checkbox List
Read more: Angular 12 How to Check All/ Uncheck All Checkbox ListIn this tutorial, we will learn how to check all and uncheck all checkboxes in the checkbox list using a master or parent checkbox in Angular. We will create an example application demonstrating the check all uncheck all features.
-
Create Multiple Columns ListView from JSON Data using Retrofit2 in Android Example
Read more: Create Multiple Columns ListView from JSON Data using Retrofit2 in Android ExampleIn this example, we will create a sample application with single activity having a ListView with custom BaseAdapter to have multi columns with data from JSON object which we will get from dummy JSON file on the server. To make real server requests we will use Retrofit2. This example app will discuss a challenge to…
-
Resolved! com.google.gson.internal.LinkedTreeMap cannot be cast to
Read more: Resolved! com.google.gson.internal.LinkedTreeMap cannot be cast toThis post is a quick hack to resolve this issue if any of you facing a similar issue. In the Android application, I am using retrofit2 and okhttp3 to communicate remove services written in PHP and sending JSON data. There is an activity in which I have to show server JSON response in a ListView, but…
-
Ionic 5 Check App Version Name, Code and Package Name Using Ionic Native Plugin
Read more: Ionic 5 Check App Version Name, Code and Package Name Using Ionic Native PluginIn this Ionic 5/4 tutorial, we’ll learn How to check application version code and name, application package id using the Cordova and Ionic Native plugin. Also, we will discuss how to change the version of the Ionic application for the next production release. In the Ionic application, we may need application-related information like Application Name,…
-
Android Background Geolocation Service Without Any Kill | Part 2
Read more: Android Background Geolocation Service Without Any Kill | Part 2Android location services are very popular these days, they provide the location of a device in the form of latitude and longitude coordinates using with we can track the location up to 10 meters of accuracy. Location services provide many other parameters of a device like speed, the direction of movement, human-readable address using Geocoder…
-
Android Background Geolocation Service Without Any Kill | Part 1
Read more: Android Background Geolocation Service Without Any Kill | Part 1Android location services are very popular these days, they provide the location of a device in the form of latitude and longitude coordinates using with we can track the location up to 10 meters of accuracy. Location services provide many other parameters of a device like speed, the direction of movement, human-readable address using Geocoder…
-
Resolved! – Error 1935. An error occurred during the installation of assembly component
Read more: Resolved! – Error 1935. An error occurred during the installation of assembly componentLast week my friend ordered RDP ThinBook 1130-ECW from Amazon. This is really a good netbook having the weight of 1.2KG and a configuration nice for lite office work. You can see this link and reviews, we will only discuss a problem I faced during installation of MS office 2007 and Open office in this…
-
Resolved! Uncaught (in promise) DOMException: Failed to execute ‘toDataURL’ on ‘HTMLCanvasElement’: Tainted canvases may not be exported
Read more: Resolved! Uncaught (in promise) DOMException: Failed to execute ‘toDataURL’ on ‘HTMLCanvasElement’: Tainted canvases may not be exportedIn my previous post, we created a Google Map Static API image using a Get URL. In one of my project, there was a requirement of HTML conversion into PDF document. So I wanted to add that Map Image into that PDF document. I used html2canvas and jsPDF libraries for that. When I was trying to…
-
Convert Google Map into Image with Markers and Paths.
Read more: Convert Google Map into Image with Markers and Paths.In one of my application, there was a google map showing the route of a person traveled in a selected day. I was trying to convert that HTML section into downloadable PDF format, which should have that dynamic map as well. So I tried to convert that HTML section into the canvas, but unfortunately as…
-
Generate Multipage PDF using Single Canvas of HTML Document using jsPDF
Read more: Generate Multipage PDF using Single Canvas of HTML Document using jsPDFjsPDF is a nice library to convert HTML content into PDF. We can put the different type of elements in PDF from HTML like an icon, images, text, CSS styles. Here we will discuss an example of jsPDF to convert long HTML page into PDF document which will be generated client-side and download.