Monday, December 9, 2013

Programming! Version 11.9.4.7

Programming!
Version 11.9.4.7 
released.. !! B) :D 
@ Windows Store
Now Compatible with Windows 8.1
Changelog (Version 9.0.0.6) :
  • Windows 8.1 Compatible!
  • Application developed from scratch!
  • Developed using C# instead of VB
  • Logo redesigned!
  • A sidebar included for easier navigation.
  • User-friendly UI overhaul.
  • Several programs and algorithms added.
  • Notable ones being the several sorting programs.
  • AppBar more deeply integrated.
  • Credits section added in the settings panel.
  • Redundant programs removed!

Friday, December 6, 2013

Painting!!

Surreal!
Phantasmagoric!! 
Isn't it? :P :P
Bursting with energy this painting has a brilliant radiant glow that fills you with warmth.
These fiery mountains, ready to erupt, symbolises the immense spirit of life encouraging us to accelerate our dynamic activities.

Made this using Microsoft Fresh Paint.

Keep viewing this blog.
Many more to be uploaded soon!
Yee-haw!!

Sunday, December 1, 2013

Programming!

Programming! - Get the Code
A new release coming soon targeted at Windows 8.1
(Programming! - Release 5)

Know more about Programming!

The cynosure of this update will be the new revamped UI.
Moreover, this update brings a bunch of new programs.
And Yes!
This application is popular too.. !!
Has already being downloaded more than 1200 times.
So stay tuned and keep downloading.
If you find this application helpful..
Then don't just download it!
But review and rate it too..!!
Web link to Programming!

If you want some improvements and inclusion of new features in the application, please comment below.

Monday, November 25, 2013

1000+ Downloads..!!

Calculator⁹
Calculator⁹ crosses 1000 download mark...!! 
Already downloaded 1083 times.

A new update coming soon with new features and improved existing features!
So stay tuned & keep downloading!

Monday, September 23, 2013

isPrime (Java)

Programming! - Get the Code

package com.amanmehara;

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        System.out.println("isPrime? ");
        System.out.println();

        Scanner consoleInput = new Scanner(System.in);

        System.out.println("Enter the number to be checked");
        long number = consoleInput.nextLong();
        System.out.println();

        boolean isPrime=true;

        //Prime number checker
        for (int i=2;i<=Math.sqrt(number);i++) {
            if (number % i == 0) {
                isPrime = false;
                break;
            }
        }
        
        if(isPrime) {
            System.out.println("It is a Prime Number.. !!");
        }
        else {
            System.out.println("Not a Prime Number.. !!");
        }
        System.out.println();

    }
}

Simple Interest & Amount (Java)

Programming! - Get the Code

package com.amanmehara;

public class Main {

    public static void main(String[] args) {
        System.out.println("Simple Interest & Amount :");
        System.out.println();

        double principal = 10000;
        double rate = 8.5;
        double time = 4;

        System.out.println("Principal : " + principal);
        System.out.println("Rate : " + rate);
        System.out.println("Time : " + time);
        System.out.println();

        double SimpleInterest = principal * rate * time / 100;
        System.out.println("Simple Interest = " + SimpleInterest);
        double amount = principal + SimpleInterest;
        System.out.println("Amount = " + amount);
        System.out.println();
    }
}

Sunday, September 22, 2013

Console Input (Java)

Programming! - Get the Code

package com.amanmehara;

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner consoleInput = new Scanner(System.in);

        System.out.println("Console Input :");
        System.out.println();

        //Integer Input
        System.out.print("Enter an integer : ");
        int IntegerFromConsole = consoleInput.nextInt();
        System.out.println("Integer entered = " + IntegerFromConsole);
        System.out.println();

        //Float Input
        System.out.print("Enter a floating point number : ");
        float FloatFromConsole = consoleInput.nextFloat();
        System.out.println("Floating point number entered = " + FloatFromConsole);
        System.out.println();

        //Double Input
        System.out.print("Enter a double precision number : ");
        double DoubleFromConsole = consoleInput.nextDouble();
        System.out.println("Double precision number entered = " + DoubleFromConsole);
        System.out.println();

        //Word Input
        System.out.print("Enter a word : ");
        String WordFromConsole = consoleInput.next();
        System.out.println("Word entered = " + WordFromConsole);
        System.out.println();

        consoleInput.nextLine();

        //String Input
        System.out.print("Enter a string : ");
        String StringFromConsole = consoleInput.nextLine();
        System.out.println("String entered = " + StringFromConsole);
        System.out.println();
    }

Hello World (Java)

Programming! - Get the Code

package com.amanmehara;

public class Main {

    public static void main(String[] args) {
        System.out.println("Hello World! :)");
    }

Friday, September 20, 2013

Programming! Version 9.0.0.6

Programming!
Version 9.0.0.6 released.. !! B) :D
@ Windows Store

Know more about Programming!

Changelog (Version 9.0.0.6) :
  • Bug fixes.
  • Minor UI Improvements.
  • Link list Programs added…!!
  • Recursive Programs added…!!
  • Appbar is now functional.

Wednesday, August 21, 2013

Raksha Bandhan...!!

Happy Raksha Bandhan.. !!

Raksha Bandhan is a Hindu festival that celebrates the love and duty between brothers and sisters.
Raksha Bandhan is an ancient festival!
Raksha Bandhan in Sanskrit literally means "the tie or knot of protection".
Click to know more!

Monday, July 15, 2013

Release 5: Calculator⁹

Calculator⁹
Version 8.3.4.7 released.. !! B) :D
@ Windows Store

Changelog (Version 8.3.4.7) :

  • Bug fixes. 
  • Minor UI Improvements. 
  • Text Selection Enabled…!! 
  • Exponents and Power functions added. 
  • Inclusion of piece-wise functions. 
  • Numbers can be reversed…!! 
  • Palindrome checker added. 

Friday, July 5, 2013

Calculator⁹ Version 5.1.7.5 (Windows Store)

Calculator⁹
Version 5.1.7.5 released.. !! B) :D
@ Windows Store

Know more about Calculator⁹
Download
View it in the Store

Screenshots:
>
Changelog (Version 5.1.7.5) :
  • Bug fixes. 
  • Minor UI Improvements. 
  • About Developer option now integrated to Settings charm. 
  • Other Applications included. 
  • Age Rating changed to 12+ 
  • Improved Customer Support. 

Programming! Version 5.7.1.3 (Windows Store)

Programming!
Version 5.7.1.3 released.. !! B) :D
@ Windows Store

Know more about Programming!

View it in the Store

Some screenshots:

Changelog (Version 5.7.1.3) :

  • Bug fixes. 
  • Minor UI Improvements 
  • Menu redesigned…!! 
  • 20 Java programs added…!! 
  • Text selection enabled. 
  • About Developer option now integrated to Settings charm. 
  • Other Applications included. 
  • Age Rating changed to 12+ 
  • Improved Customer Support.