Tuesday, April 7, 2020

ZIK analytics chrome extension

ZIK analytics chrome extension

Using this extension users can export the search results from https://www.zikanalytics.com/ website 
The extension collect multiple pages data and export on a single click.

Watch video below




Wednesday, March 11, 2020

IONIC 4 app not connecting to API running in Android device

IONIC 4 app not connecting to API running in Android device


Go to \resources\android\xml\

Open network_security_config.xml

Include domain below

<domain includeSubdomains="true">Your API IP or domain </domain>

Empty List Of Devices Attached via USB Debugging on Windows

adb devices

command not returning any devices

try below things

1) install USB driver for your devices
2) Enable USB debugging in your android phone
3) Reconnect the phone and run adb devices again

Friday, December 6, 2019

Angular 2+ how to share same ajax response with multiple components






Create a service like above.
The line

import shareReplay  from rxjs

import { share, shareReplay } from 'rxjs/internal/operators'; 


this.profileObservable =

this.http.get(environment.APIEndpoint + 'userProfile').pipe(shareReplay());


create a shareable HTTP Observable. This can used by any component to get the response.

Only one ajax request will trigger for all the request to this service.