Real screw head with animation - using CSS

Real screw head with animation - using CSS

11:20 AM  /  bCliks  /  0 Comments

Real screw animation using pure CSS. With rotate screw animations using Jquery. Rotate black dot on the screw.  Demo http://jsfiddle.net/bcliks/Hfw2D/18/ ...

Ionic Apps - Improve Performance

Ionic Apps - Improve Performance

10:46 AM  /  bCliks  /  0 Comments

Ten points to remember while developing Ionic mobile apps: Performance is king  Use ng-if instead of ng-show. see difference Use one-time binding '::' as much as possible even in directive parameters. eg: A value passed through to a directive. my-directive::parameter1    Use ionic's collection-repeat as much as possible otherwise use one-time binding in ng-repeat. eg: ng-repeat="item in ::items"...

Bills Reminder - Android Application

Bills Reminder - Android Application

10:09 AM  /  bCliks  /  0 Comments

Hi friends.. Just Launched my Android Application.. Bills Reminder to manage all of your bills.. 100% Free - No ads - Not a trial/demo app.. Feeling very happy.. Thank u all... Get it on play store - https://play.google.com/store/apps/details?id=com.amazier.apps.billsreminder About my app: It's not fun when you realize you've missed paying a bill by its due date, after all they...

Android interview questions and answers for Experienced (1 to 2 years) Part-1

Android interview questions and answers for Experienced (1 to 2 years) Part-1

5:49 AM  /  bCliks  /  0 Comments

1. Explain Java Final Keyword ? Final variable can be assigned only once. Final method can not be overriden in subclass. Final classes can not be extended. 2.Can a final class in java be extended ? NO. Java classes declared as final cannot be extended. 3.Explain Java Static Keyword ? Static variables are initialized only once , at...

Debugging BOOT_COMPLETE Broadcast Receivers

Debugging BOOT_COMPLETE Broadcast Receivers

5:09 AM  /  bCliks  /  0 Comments

This post explains how to catch and debug the system broadcast BOOT_COMPLETED, after the system has finished booting. Sometimes we want to start our applications on boot. BroadcastReceiver has trick for that. After the system has finished booting, the BroadcastReceiver is receiving an Intent BOOT_COMPLETED broadcast and perform our application-specific initialization, such as installing alarms. Steps to catch...

Executing a HTTP POST JSON Request with HttpClient

Executing a HTTP POST JSON Request with HttpClient

3:22 AM  /  bCliks  /  0 Comments

This post covers the following topics Post HTTP request containing parameters to a web server Get HTTP post response (JSON Response) Parse JSON Response Populate Results to ListView Steps: Create a new HttpClient Class Create JSON Request object Send Http Request and Get Response Parse JSON Response object Populate to ListView 1. Create a new HttpClient Class public class...

Power of Android

Power of Android

11:07 AM  /  bCliks  /  0 Comments

Hats off for Android Power..! Now we can create programs of make programs on our Android Mobile ,and also can compile and build it. We can create ANDROID APPS within Android Mobile or Tab . Most Powerful IDE - AIDE (Android IDE) We can create C/C++ Programms with the help of GCC plugin . We can create C...