Fashion

Technology

Fashion

Recent Posts

Vote For your best web browser in 2017

22:51 Add Comment

Web Browser



Wikipedia describe web browser as
web browser (commonly referred to as a browser) is a software application for retrieving, presenting and traversing information resources on the World Wide Web. An information resource is identified by a Uniform Resource Identifier (URI/URL) that may be a web page, image, video or other piece of content.[1] Hyperlinks present in resources enable users easily to navigate their browsers to related resources.
Today the world is full of many different web browsers  from google chrome to microsoft edge and many more ruling the world.

Its the time to vote to your favorite web browser.Use your vote wisely.



Vote for your best web browser in 2017

Google chrome
Opera
Mozilla Firefox
Microsoft Edge
Avant Browser
Safari
Internet Explorer
Deepnet Browser
Torch Browser
Maxton
Sea Monkey
Other
Please Specify:
Quotes To Know

NFS MW 2012 MW CARS

13:35 Add Comment


To be Most Wanted,you'll need to outrun the cops, outside your friends,and outsmart your rivals.With a relentless police force gunning to take you down,you'll need to make split second decision. Use the advantages to find hiding spots,hit jumps and earn new vehicles to keep you one step ahead.In true Criterion Games fashion,your friends are at the heart of your experience.In an open world with no menus or lobbies,you'll be able to instantly challenge your friends and prove your driving skill in a variety of seamless multiplayer events.Your rivals will do everything they can stop you from getting to the top.In this world,there can only be one Most Wanted.


MOST WANTED CARS SHUTDOWN LIST

//10  ALFA ROMEO 4C CONCEPT

#9 SHELBY COBRA 427
#8 MERCEDES-BENZ SL 65 AMG
#7 LEXUS LFA
#6 MCLAREN MP4-12C
#5 PORSHE 918 SPYDER CONCEPT
#4 LAMBORGHINI AVENTADOR
#3 BUGATTI VEYRON SUPER SPORT
#2 PAGANI HUAYRA
#1 KOENIGSEGG AGERA R
       WATCH FULL PLAYLIST HERE [1-10]       

IObit Driver Booster PRO v4.2.0.478 Crack

07:55 Add Comment
IObit Driver Booster 
Driver Booster is a lightweight software application whose purpose is to help you manage outdated drivers for all your devices. It protects your PC from hardware failures, conflicts, and resolves system crash problems caused by outdated drivers. All old drivers can be detected by simply clicking on the “Scan” button, and then you just need to click “Update All” button to refresh these outdated drivers. Compared with other driver updating tools, IObit Driver Booster can improve your PC performance for gaming as well.

 Features
·         Download and Update Outdated Drivers with One Click
·         Enhance Hardware Functionality for Top Performance
·         Specialized Driver Tweaking for Top Gaming Experience
·         Automatically Identify Outdated Drivers
·         Support More Comprehensive Hardware Devices
·         Enjoy Priority to Update Outdated Drivers Promptly
·         Backup Drivers for Safe Restore
·         Download and Update Drivers up to 300% Faster
·         Automatically Update to the Latest Version

How To Activate ?
1.     DisConnect Internet
2.     Install Program
3.     Use the KEY to Activate
4.     When Finish Activation, Close Program Totally (Exit “Tray Icon” From Taskbar)
5.     Copy the Crack folder Content and Paste it to the Software Installed Directory
6.     Enjoy . 

Screenshots


Download & Links 
Don't Know How To Download  
Trial + Crack
Portable 

UC WEB BROWSER

02:46 Add Comment


EXPERIENCE ALL THE LATEST APPS HERE WITH MORE FASTER BROWSING AND ADS BLOCK SERVICE AND EVEN MORE

TO DOWNLOAD CLICK THE LINK BELOW.
IMAGES ARE SHOWING THE FACILITY FOR THE APP ALL UPDATES YOU CAN FIND FROM HERE...

ITS QUADGENN QGNNNNNN..












TO DOWNLOAD UC BROWSER THE LATEST VERSION click here
THANKS TO VISIT US..........    PLEASE SHARETHIS POST

Open any external file using java

00:25 1 Comment
open external file using java

So if you are here it is sure you need a piece of code which could help you to open any external file using java.And this article will tell you how you could do that.

java.awt.Desktop


The Desktop class of awt package allows java programs to launch any  file in its default editor.Means if the file is .txt it might open in Notepad if it is .pdf then it will open in adobe reader and if it is (.html) then it will open in your default web browser.

NOTE:- If we will try to open a file which does not exists then it will throw 
                                          java.lang.IllegalArgumentException

So here is the whole source code

openIt.java 






import
java.util.Scanner;
public
class OpeIt {

public static void main(String[] args) throws IOException
{
System.out.print("Enter the path of the file to open");
String path=sc.nextLine();
File file = new File(path);

//first check if Desktop is supported by Platform or not
if(!Desktop.isDesktopSupported())
{

System.out.println("Desktop is not supported");
return;
}

Desktop desktop = Desktop.getDesktop();
if(file.exists())
desktop
.open(file);
else
System.out.println("The file does not exists");

}

}

If there is no application associated with the given file type then the open method will
simply throws java.io.IOException
Piano Tiles 2 v3.0.0.401 Mega MOD APK

Piano Tiles 2 v3.0.0.401 Mega MOD APK

03:25 1 Comment



piano tiles mod apk

Piano Tiles 2
Piano Tiles 2 is the sequel to the hugely popular game Piano Tiles (Don’t Tap the White Tile). New gameplay, first-class sound quality and a global competition mode give your fingers a fast paced thrill with the elegance of piano playing!
How To Play
  • The rules are clear: just tap the black tiles to the music and avoid tapping anywhere else.
  • Try it out, enjoy the piano music, train your fingers to be faster, and see if you can beat your friends!
MOD  Fashion
  • Unlimited Gems
  • Free Shopping
  • Infinite Energy
  • Massive Coins For Daily Rewards
  • Song Unlock Level Require Reduced to 1
Note: Diamond is infinite, even if it shows 0 you can still buy, remove the VIP and diamond purchase, force all the songs for the notes to buy!

How To Install ?
  1. Download the apk given here
  2. Put it on your phone and Install the apk
  3. Thats all Enjoy 
How To FiX FB Login?
  • Login to Facebook.
  • Go to Apps
  • Find piano tiles
  • Remove app
  • Now login again from piano tiles latest version.
Screenshots
piano tiles screen shot 1piano tiles screen shot 2

Download Links

Capturing screen shot using java program

03:23 1 Comment


Capturing screenshot using java

Here i will tell you how to write a program using java which is capable of capturing screenshots(either whole or partial).And save it as an image.

Which java API ?

The java.awt.Robot class provides a useful method for capturing a screenshot.Here is the method prototype.

BufferedImage createScreenCapture(Rectangle screenRect)

It is clear from the prototype that this function returns a BufferedImage and takes a Rectangle class object (portion of the screen to capture) as the argument.The BufferedImage which is returned could be saved using ImageIO class write method.Lets begin with the program.


1) Capturing full screen


In order to capture full screen using createScreenCapture(Rectangle screenRect)
screenRect should have the full screen size and in order to do that we will use Toolkit class of java.

Rectangle screenRect = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());


Now here begins the whole program.

import java.awt.AWTException;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;

public class FullScreenCaptureExample {
    public static void main(String[] args) {
        try {
            Robot robot = new Robot();
            String format = "jpg";//can be,“png”, “bmp”,"jpeg" etc
            String fileName = "screenshot." + format;
             
            Rectangle screenRect = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
            BufferedImage screenImg = robot.createScreenCapture(screenRect);
            ImageIO.write(screenImg, format, new File(fileName));
             
            System.out.println("screenshot saved!");
        } 
        catch (AWTException | IOException ex) {
            System.err.println(ex);
        }
    }
}



2)Capturing a portion of screen


You can also capture only a portion of screen by defining the rectangle object of createScreenCapture().

Rectangle area=new Rectangle(int startxpos,int startypos,int endxpos,int endypos)
startxpos >>Starting x position in pixels.
startypos>> Starting y position in pixels.
endxpos >> Ending x position in pixels.
endypos >>Ending y position in pixels

Here is the complete code.

import java.awt.AWTException;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;

public class PartialScreenCaptureExample {
    public static void main(String[] args) {
        try {
            Robot robot = new Robot();
            String format = "jpg";
            String fileName = "PartialScreenshot." + format;
             
            
            Rectangle captureRect = new Rectangle(0, 0, 100,100);/*top left corner to 100 pixels down and 100 pixels right*/
            BufferedImage screenFullImage = robot.createScreenCapture(captureRect);
            ImageIO.write(screenFullImage, format, new File(fileName));
             
            System.out.println("partial screenshot saved!");
        } catch (AWTException | IOException ex) {
            System.err.println(ex);
        }
    }
}