Wednesday 7 December 2016

Best Emulator For your Personal Computer - BlueStack vs Andy vs KOPlayer


A Big Hellow to all Computer Stuffs, Lovers! How you all doing ? Hoping to be all in best of their health. You all must be thinking, what brings me on the deck again? 👀

Let me clear the air, and tell u something about my today's post!
Going short and simple, I am sick of using Bluestack as my PC emulator, as

We all wants to use all of our Mobile stuff, on our PC. But, for this, we gon need a software that converts all our JAR and APK files into PC compatible version. This is where the Andriod Emulator comes into action. 😄

So, What are the choices we have ? 😉

1. BlueStack
3. Andy
4. KOPlayer

Bluestack

Personally, I used BlueStack for quite some time. It is good in its own way, gives you a good environment to manage your apps and simple interface.
BlueStack Home Screen


But, when it comes to consuming your computer resources it just way ahead of all the applications that are running on your system, except those High Definition Games.

The worst part is the advertise that always makes your Bluestack hang in blue and forcing you to Install the recommended app or donate 2$. It just destroys all the fun of using our laptop as Mobile and trying to get something from our free time.

Thursday 14 July 2016

Launching My First Demo Web App Online - Mindteck One Portal

Mindteck One Portal
Hello Coders, How you all doing ? Speaking of which, I am just trying to enjoy the Beautiful Weather of Bangalore, the best thing about is the frequent climate change! You no never when you gown stuck in the rain, or in a blazing sun!

Beauty always Prevails here!
Personally I am loving it.

So, until now you guys are thinking that this article's just started taking a U turn, out of sudden. We suppose to talk about my New Portal! Isn't it right?

Yes, We are just about to hit the floor.
Past Few Weeks, I have been working Part Time on this Portal.      

Our Company going to Launch this One Signed in thing, that means for logging in into any of the services  you need to use the same credential.

Before the RnD Team jump off and start working on it, they wanted a demo from the person who have come up with Idea in the first place.

Friday 27 May 2016

Hackarank Binary Number - Java Solution

WOW! I solved the second puzzle after 1.5 days of RnD and hard work! Trying all the logic's thinking and patience always pays off!

From yestrday I wn working on this puzzle, may be for some of you it is not that much tricky but for me it was.

Feeling so happy after completing the puzzle at last.


Learn Share n Grow!



Objective
Today, we're working with binary numbers. Check out the Tutorial tab for learning materials and an instructional video!
Task
Given a base- integer, , convert it to binary (base-). Then find and print the base- integer denoting the maximum number of consecutive 's in 's binary representation.
Input Format
A single integer, .
Constraints
Output Format
Print a single base- integer denoting the maximum number of consecutive 's in the binary representation of .
Sample Input 1
5
Sample Output 1
1
Sample Input 2
13
Sample Output 2
2
Solution 1:

package com.number;

import java.util.Scanner;

public class BinaryV2 {
public static void main(String[] args) {
    Scanner in = new Scanner(System.in);
    int n = in.nextInt();
    int rem=0,s=0,t=0;


    while(n>0)
        {
        rem=n%2;
        n=n/2;
        if(rem==1)
         {   s++;
           if(s>=t)

     

Thursday 26 May 2016

Hackarank 2D Array GlassHour Problem - Java Solution


Hello Coders,
I am posting this code for my future reference.
Below is the problem statement!

Task
Calculate the hourglass sum for every hourglass in , then print the maximum hourglass sum.
Input Format
There are  lines of input, where each line contains  space-separated integers describing 2D Array ; every value in will be in the inclusive range of  to .
Constraints
Output Format
Print the largest (maximum) hourglass sum found in .
Sample Input
1 1 1 0 0 0
0 1 0 0 0 0
1 1 1 0 0 0
0 0 2 4 4 0
0 0 0 2 0 0
0 0 1 2 4 0
Sample Output
19


Solution: 



import java.io.*;

import java.util.*;

import java.text.*;

import java.math.*;

import java.util.regex.*;



public class Solution {



    public static void main(String[] args) {

        Scanner in = new Scanner(System.in);

        int a[][] = new int[6][6];

      

Tuesday 17 May 2016

Aspect Oriented Programming or Object Oriented Programming : Still Confused ?




While learning Spring from JavaTpoint, I just come up with a topic named AOP ! First, I thought it some feature which comes up with Spring, when I started diving in,after couple of minutes literally speaking my head start spinning around and all the concepts where jumping off my head.

So I thought, first I will try to learn what actually this AOP means. After doing some googling and reading on wiki, I come to know that it is more of a Programming Para-diagram just like Object Oriented Programming a.k.a OOPs.

Going in more detail the best answer I found in stack overflow..

I am copy pasting that answer for my future reference.

Read it you will come to know what actually AOP is and how to use it!


Saturday 30 April 2016

Awesome Learning Websites - List



All Best website for Learning and Unleashing you career in Software Industry.

The List will be keep on updating until the end of the time.

Today I started learning python, its one of the coolest scripting language and very much simple as compare to the Perl.
But everything having ups and down ! I am putting some more links from where you guys can take a head start on python.

This post contains all time best online tutorials links which include Online Video Tutorials as well as knowledge rich articles.

Links contains Core Java Tutorials, Advance Java Tutorials, Spring Core and Spring MVC.

Website List :

1. http://www.webminal.org/        [ Online Linux Terminal and Tutorial ]
2. http://www.perltutorial.org/      [ Perl Tutorial ]
3. http://www.javatpoint.com/      [ Java Tuorials : Core and Advance ]
4. www.javabrains.io                    [Spring and Hibernate]
5. http://www.javatpoint.com/python-tutorial  [Python Tutorial]
6. https://www.python.org/ [Documentation on Python ]
7. http://algorithms.tutorialhorizon.com/binary-search-tree-complete-implementation/ [BST]
8. Java Regex Oracal Tutorial
9. http://www.quackit.com/mysql/tutorial/ [Best DB and MySQL tutorials]
10. JAVA EE Official Tutorials
11. Durga Spring MVC Full Tutorial
12. Mkyong Spring MVC
13. Java4s Spring MVC
14. JavaBrains
15. JDBC DurgaSoft Video
16. Stored Procedure MySQL
17. Normalization  - Beginners Book
18. Best Servlet Tutorials
19. DataStructure in Java - Youtube Channel [AWESOME!!!]

My Personal Links:


    1. Python Google Drive Link: Python Codes
    2.  Full Python Documents_Zip File : Python Materials
    3. Storage Materials_zip File: Storage Materials
    4.  Cover Letter  v1.0: CoverLetterV1_0  



To Be Continue...


Thanks For being with Us plz Like us On Fb==> computer Stuffs <==

Blog Top Sites

Share Our Badge

 Computer Stuffs

Be Updated Its Free.

Subscribe via Email

Visitors Everyday



Website Security Test

Followers