If you want to save money, time and energy, while still coming up with a spectacular mobile App, you need to leverage on the best app building platform...
Monday, December 28, 2015
Tuesday, December 15, 2015
Cordova Tutorial
Installing Cordova
Cordova command-line runs on Node.js and is available on NPM. Follow platform specific guides to install additional platform dependencies. Open a command prompt or Terminal, and type npm install -g cordova.
Create a project
Create a blank Cordova...
Friday, December 4, 2015
NPM
1. npm no license field
2. license should be a valid SPDX license
Reference:
https://docs.npmjs.com/files/package.json
Solved:
{ "license" : "BSD-3-Clause" }
or
{ "license" : "MIT" ...
Configure Fiddler for Android / Google Nexus 7
Configure Fiddler
Click Tools > Fiddler Options > Connections.
Ensure that the checkbox by Allow remote computers to connect is checked.
If you check the box, restart Fiddler.
Hover...
Wednesday, December 2, 2015
Thursday, November 26, 2015
Singe Page Application - SPA
http://spa-ko.crissdev.com/#/libs/a...
Native, HTML5, or Hybrid: Understanding Your Mobile Application Development Options

Screens are small, apps are big, and life as we know it is on its head again. In a world that's increasingly social and open, mobile apps play a vital role, and have changed the focus from what's on...
Friday, September 25, 2015
5 Best Free Alternatives To Microsoft Visio

1. LucidChart
If you are looking for a web based alternative to Microsoft Visio, LucidChart is the perfect choice. It provides a drag and drop web interface to draw any kind of diagram....
Friday, September 18, 2015
Getting Started With Javascript Debugger in Chrome
When getting started with js, one of the first debugging techniques you learn is console.log to see what’s going on. For a variety of reasons, this behaviour sticks. It’s time to level up my...