Read/Write file into devices
Installation (https://ionicframework.com/docs/native/file/)
Install the Cordova and Ionic Native plugins:
$ ionic cordova plugin add cordova-plugin-file
$ npm install --save @ionic-native/file
Add this plugin to your app's module
There are few ways you can use to download the file, but I'm using the easiest way, that...
Sunday, February 18, 2018
List of Data Sciences and Machine Learning usefull link
February 18, 2018Big Data, Data Sciences, Machine Learning, Software Development, Tips and Trick
5 comments:

Credit to: Shivam PanchalAs published by Shivam at Linked @ https://www.linkedin.com/pulse/data-science-machine-learning-beginners-path-shivam-panchal/
Platforms:
What Is Hadoop? Hadoop Tutorial For Beginners https://youtu.be/n3qnsVFNEIU
What is Apache Spark? The big data analytics platform explained http://www.techworld.com.au/article/629920/what-apache-spark-big-data-analytics-platform-explained/
Apache...
Wednesday, February 14, 2018
Synchronizing the Asynchronous - Controlling the flow in ascynchronous type of apps
February 14, 2018Ionic Framework, Javascript, Mobile Apps, Programming, Software Development, Tips and Trick, Web-based application
No comments:

You have certain process to run in sequence; for instance
1. Login into the system
2. Check if the user valid, user status is valid, user role is valid
3. Store for future references
4. Capture audit trail and set timing, menu etc
5. Finally, show correct page base on user role and preferences
This shall be ok in synchronize programming. However,...
Thursday, February 1, 2018
Running javascript on typescript project (Ionic + Angular) - 'require' not found
February 01, 2018Ionic Framework, Mobile Apps, Software Development, Tips and Trick, Web-based application
No comments:

Using javascript on Ionic + Angular project which is based on typescript may troublesome and causing you days to figure out. You can get many kind of error such as 'require' not found, 'typescripts' not available, 'no such library' etc.
However, there are ways to implement. You can follow the steps mentioned here. I'm trying to implement bcryptjs on...