Friday, May 19, 2017

Can you judge?

Can you judge people?

A small one minute video that will teach why one should not judge people.


As human, we always judge people by their habits, actions, appearance, political views, religions, beliefs and all till the last day of our life.

We are always too quick to judge people, never judge people by their habits, actions, appearance, political views, religions, beliefs and all.

Don't ever judge people you don't know.

Lesson :
Achieving neutrality is the most difficult task.

Moral :
Don't be too quick to judge
Never judge people by their appearance
Never judge People by their religion
Never judge people by their habits
Don't judge book by its cover


Aatul Palandurkar
Life Coach, International Trainer and Author
http://aatul.me
http://aatulpalandurkar.com

Labels: , , , , ,

Thursday, April 21, 2016

Java Program to convert Decimal values to Hexadecimal values

Objectives :

  • How to convert Decimal to Hexadecimal in Java?



1:  import java.util.Scanner;  
2:     
3:  public class DecimalToHexadecimal {  
4:     
5:  public static void main(String[] args) {  
6:     
7:  Scanner input = new Scanner(System.in);  
8:     
9:  System.out.print("Enter decimal number you like: ");  
10:  int deci = input.nextInt();  
11:     
12:  System.out.println("The hexadecimal number for decimal "  
13:  + deci + " is " + convert(deci));  
14:  }  
15:     
16:  public static String convert(int decimal) {  
17:  String hex = "";  
18:     
19:  while (decimal != 0) {  
20:  int hexValue = decimal % 16;  
21:  hex = toHexadecimal(hexValue) + hex;  
22:  decimal = decimal / 16;  
23:  }  
24:     
25:  return hex;  
26:  }  
27:     
28:  public static char toHexadecimal(int hexValue) {  
29:  if (hexValue <= 9 && hexValue >= 0) {  
30:  return (char) (hexValue + '0');  
31:  } else {  
32:  return (char) (hexValue - 10 + 'A');  
33:  }  
34:  }  
35:  }  
Output :
Enter decimal number you like: 1234
The hexadecimal number for decimal 1234 is 4D2

Arrange Java Workshop in your campus, visit here for details or write us here.

Labels: , , , , , ,

Monday, August 31, 2015

How to publish Android app to Google Play Store?

Objectives :
  • How to publish Android app to Google Play Store?
  • How to publish Android app to Google Play Store using Eclipse?
  • How to create keystore in Android?
  • How to zipalign an Android app?
  • How to export signed Android package?
  • How to export signed Android APK?
  • How to export signed Android app?
  • How to create signature for Android app?
  • How to compress Android app for publishing?
  • How to make an Android app ready for publishing?
This video will guide you to publish your own Android apps on Google Play through some simple steps and that too with few clicks. This small video will answer all the questions above.
The video was recorded during a Online Android Training and uploading unedited video here. The training was conducted from Doha, Qatar. If you need online training on Android or need any support, please feel free to write me at aatul@ancyber.com
Please feel free to share the video if you like it and do comment below. And subscribe to my YouTube channel for more video tutorials.
One can visit my main blog : http://aatul.me for more details and tutorials.

Labels: , , , , ,

Saturday, April 11, 2015

AutoScroll TextView in Android

Objectives :

– How to use TextView in Android?

– How to scroll Text in Android?

– How to implement Marquee Text in Android?

– How to make text scrollable in Android?
Getting Started :

1. Create a New Android Application titled as “AutoscrollTextviewDemo” with blank activity.

2. Update the layout xml with code given below.
How to do it?

Just watch the video below and follow the steps.









Labels: , , ,