How to use if statement on python


An if statement is a conditional statement in python. its used thus:
if (condition):
      print(statement)
else:
     print(statement)

For example on python 3 and above:
print('please insert a number')
a=int(input(''))
print('please insert another number')
b=int(input(''))

if (a>b):
    print(a,' is larger')
else:
    print(b,' is larger')

For example on python 2.7:
#!/usr/bin/python
print 'please insert a number'
a=input('')
print 'please insert another number'
b=input('')

if (a>b):
    print(a,' is larger')
else:
    print(b,' is larger')

Please leave your comment if you have any problem.


How to Add,Subtract,Divide and Multiply on Java

Given below is the code of java program that adds,subtracts, multiplies and divides two numbers which are entered by the user

import java.util.Scanner;
 
class Operators
{
   public static void main(String args[])
   {
      int a, b, c, d, e, f;
      System.out.println("Enter two integers to calculate their sum ");
      Scanner in = new Scanner(System.in);
      a = in.nextInt();
      b = in.nextInt();
      c = a + b;
      d = a - b;
      e = a * b;
      f = a/b;
    
      System.out.println("Sum of entered integers = "+c);
      System.out.println("Subtraction of entered integers = "+d);
      System.out.println("Multiplication of entered integers = "+e);
System.out.println("Division of entered integers = "+f);


   }
}

Any More Questions? Please leave your comments.

Data Types in python


Python supports four different numerical types:
int (signed integers)
long (long integers [can also be represented in octal and hexadecimal])
float (floating point real values)
complex (complex numbers)

Its used like this:
a=long(input())
a=int(input())
a=float(input())
a=complex(input())

How To add,subtract,multiply and divide on Python


To Type in python version 2.7:

#!/usr/bin/python

print"hello"
print"Please type in your first number"
a=input()
print"Please type in your second number"
b=input()

c= a + b
d=a - b
e=a * b
f=a / d


print"the addition is",c
print"the subtraction is",d
print"the multiplication is",e
print"the division is",f


To Type in python version 3.3 and above:

#!/usr/bin/python

print("hello")
print("Please type in your first number")
a=input()
print("Please type in your second number")
b=input()

c= a + b
d=a - b
e=a * b
f=a / d


print("the addition is",c)
print("the subtraction is",d)
print("the multiplication is",e)
print("the division is",f)

Who's Down: Google's new App

























No longer content to just being the ubiquitous source of information of all kinds for the typical college student, Google is now trying to be the platform that friends use to plan their next hangout. As 9To5Google reported earlier today, the company launched an app called ‘Who’s Down’ on the Apple App Store and Google Play Store this morning.Ostensibly a tool that allows friends interested in similar activities to quickly group and spend time on the event, the app is currently invite-only and is restricted to college students. It is worth noting, though, that ‘Who’s Down’ does not require users to sign up with an academic email address on a .edu domain, but does ask users to enter the name of an institution before joining the wait list. While it’s clear that there is no restriction to join the app which is good for growth, the targeting is also clear. Going after college students and teenagers with social apps isn’t exactly core to much of Google’s business, but it has been doing it with some small social efforts.
The design is characteristically Google, pleasant to use and with the company’s trademark blue-white design scheme. Once you move a slider that indicates that you are ‘down’ to meet other people, the app lets you enter the name of an activity that you are interested in doing, and also provides a list of what appear to be popular or intelligently guessed selections. Once more than a few other people indicate an interest in whatever you are interested in doing, the app will notify you and slide seamlessly into a chat room, where conversations disappear after 24 hours of last activity.
Barring Google’s powerful autocomplete feature being used to reduce the time it takes to type in activities of interest, Google’s design choices are hardly novel.
While on the face of it Google’s product appears to come with an intuitive design and excellent visual schemes, it is difficult to estimate the impact ‘Who’s Down’ will have on users without being able to use the app. Limiting the product to invite-only and branding it for college students will clearly be effective in gaining market share. It could be that ‘Who’s Down’ might help pull Google out of what can now only be called a social product rut.




Sprint is cutting back employee benefits and snacks as it tries to save $2.5 billion


Wireless carrier aims to slash fiscal 2016 expenses by as much as $2.5 billion.

Wireless carrier Sprint said on Sunday it aims to slash fiscal 2016 expenses by as much as $2.5 billion, through layoffs and a wide array of cost controls, as an essential part of its ongoing turnaround efforts.
“We are leaving no stone unturned and looking at all areas,” company spokesman Dave Tovar said in an interview. He declined to predict how many employees would be laid off, saying it was too early in the budgeting process.
The estimated cost savings for Sprint  S -1.88% , which has 31,000 employees, would be equivalent to about 10 percent of its current annual operating costs of $26 billion.
The ratio of the company’s capital expenditures to its sales is more than 20 percent, which Tovar said is higher than for other wireless carriers. “We are trying to get more in line with the industry average,” he said.
He said Sprint on Tuesday will provide more details about the job cuts and the company’s plans to bolster the quality, speed and capacity of its wireless network, when it reports fiscal second-quarter results.
Savings are also expected to come from cutting severance for laid off employees and temporarily eliminating raises.
In its first quarter ended June 30, the company posted a $20 million loss as revenue fell 8.7 percent to $8.03 billion, missing analysts’ estimates of $8.43 billion. But majority owner Softbank Corp eased investor concerns by saying it has no plans to sell its stake in Sprint.
Sprint has been burning through cash because of monthly leasing plans requiring wireless carriers to pay vendors for devices up front.

Windows 10 Short-cuts


Here are some Windows 10 new Short-cuts:

Windows+X = Open power menu

Windows+T = Cycle through open apps on task bar

Windows+M= Minimise all windows and show desktop

Windows+L = Lock screen

Windows+P = Project to external screen

Windows+F = Find from start menu

Windows+O= Lock screen orientation (on-selected devices)

Windows+C= Open Charm Bar

Windows+H= Share menu in charm bar

Windows+PrntScr= Screenshot of active desktops

Windows+Arrow keys=Move apps to respective positions

Windows+Tab= Switch to virtual desktop

Windows+Q = Open search/cortana in typing mode,perfect for Queries and searches

Windows+I = Open the settings app

Ctrl+Windows+D = Create a new virtual desktop(you get the drift)

How to Install Latest MySQL 5.7.9 on RHEL/CentOS 7/6/5 and Fedora 23/22/21

MySQL is an open source free relational database management system (RDBMS) released under GNU (General Public License). It is used to run multiple databases on any single server by providing multi-user access to each created database.
This article will walk through you the process of installing and updating latest MySQL 5.7.9 version onRHEL/CentOS 7/6/5 and Fedora 23/22/21 using MySQL Yum repository via YUM utility.

Step 1: Adding the MySQL Yum Repository

1. I will use official MySQL Yum software repository, which will provides RPM packages for installing the latest version of MySQL server, client, MySQL Utilities, MySQL Workbench, Connector/ODBC, and Connector/Python for the RHEL/CentOS 7/6/5 and Fedora 23-21.
Important: These instructions only works on fresh installation of MySQL on the server, if there is already a MySQL installed using a third-party-distributed RPM package, then I recommend you to upgrade or replace the installed MySQL package using the MySQL Yum Repository”.
Before Upgrading or Replacing old MySQL package, don’t forget to take all important databases backup and configuration files.
2. Now download and add the following MySQL Yum repository to your respective Linux distribution system’s repository list to install the latest version of MySQL (i.e. 5.7.9 released on 21 October 2015).
--------------- On RHEL/CentOS 7 ---------------
# wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm
--------------- On RHEL/CentOS 6 ---------------
# wget http://dev.mysql.com/get/mysql57-community-release-el6-7.noarch.rpm
--------------- On RHEL/CentOS 5 ---------------
# wget http://dev.mysql.com/get/mysql57-community-release-el5-7.noarch.rpm
--------------- On Fedora 23 ---------------
# wget http://dev.mysql.com/get/mysql57-community-release-fc23-7.noarch.rpm
--------------- On Fedora 22 ---------------
# wget http://dev.mysql.com/get/mysql57-community-release-fc22-7.noarch.rpm
--------------- On Fedora 21 ---------------
# wget http://dev.mysql.com/get/mysql57-community-release-fc21-7.noarch.rpm
3. After downloading the package for your Linux platform, now install the downloaded package with the following command.
--------------- On RHEL/CentOS 7 ---------------
# yum localinstall mysql57-community-release-el7-7.noarch.rpm
--------------- On RHEL/CentOS 6 ---------------
# yum localinstall mysql57-community-release-el6-7.noarch.rpm
--------------- On RHEL/CentOS 5 ---------------
# yum localinstall mysql57-community-release-el5-7.noarch.rpm
--------------- On Fedora 23 ---------------
# dnf localinstall mysql57-community-release-fc23-7.noarch.rpm
--------------- On Fedora 22 ---------------
# dnf localinstall mysql57-community-release-fc22-7.noarch.rpm
--------------- On Fedora 21 ---------------
# yum localinstall mysql57-community-release-fc21-7.noarch.rpm
The above installation command adds the MySQL Yum repository to system’s repository list and downloads the GnuPG key to verify the integrity of the packages.
4. You can verify that the MySQL Yum repository has been added successfully by using following command.
# yum repolist enabled | grep "mysql.*-community.*"
# dnf repolist enabled | grep "mysql.*-community.*"      [On Fedora 22+ versions]

Step 2: Installing Latest MySQL Version

5. Install latest version of MySQL (currently 5.7) using the following command.
# yum install mysql-community-server
# dnf install mysql-community-server      [On Fedora 22+ versions]
The above command installs all the needed packages for MySQL server mysql-community-server, mysql-community-client, mysql-community-common and mysql-community-libs.

Step 3: Installing MySQL Release Series

6. You can also install different MySQL version using different sub-repositories of MySQL Community Server. The sub-repository for the recent MySQL series (currently MySQL 5.7) is activated by default, and the sub-repositories for all other versions (for example, the MySQL 5.6 or 5.5 series) are deactivated by default.
To install specific version from specific sub-repository, you can use --enable or --disable options using yum-config-manager or dnf config-manager as shown:
# yum-config-manager --disable mysql57-community
# yum-config-manager --enable mysql56-community
------------------ Fedora 22+ Versions ------------------
# dnf config-manager --disable mysql57-community
# dnf config-manager --enable mysql56-community

Step 4: Starting the MySQL Server

7. After successful installation of MySQL, it’s time to start the MySQL server with the following command:
# service mysqld start
You can verify the status of the MySQL server with the help of following command.
# service mysqld status
This is the sample output of running MySQL under my CentOS 7 box.
Redirecting to /bin/systemctl status  mysqld.service
mysqld.service - MySQL Server
   Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled)
   Active: active (running) since Thu 2015-10-29 05:15:19 EDT; 4min 5s ago
  Process: 5314 ExecStart=/usr/sbin/mysqld --daemonize $MYSQLD_OPTS (code=exited, status=0/SUCCESS)
  Process: 5298 ExecStartPre=/usr/bin/mysqld_pre_systemd (code=exited, status=0/SUCCESS)
 Main PID: 5317 (mysqld)
   CGroup: /system.slice/mysqld.service
           └─5317 /usr/sbin/mysqld --daemonize

Oct 29 05:15:19 localhost.localdomain systemd[1]: Started MySQL Server.
8. Now finally verify the installed MySQL version using following command.
# mysql --version

mysql  Ver 14.14 Distrib 5.7.9, for Linux (x86_64) using  EditLine wrapper

Step 5: Securing the MySQL Installation

9. The command mysql_secure_installation allows you to secure your MySQL installation by performing important settings like setting the root password, removing anonymous users, removing root login, and so on.
# mysql_secure_installation
Now follow the onscreen instructions carefully, for reference see the output of the above command below.
Sample Output
Securing the MySQL server deployment.

Enter password for user root: Enter New Root Password

VALIDATE PASSWORD PLUGIN can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD plugin?

Press y|Y for Yes, any other key for No: y

There are three levels of password validation policy:

LOW    Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary                  file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 2
Using existing password for root.

Estimated strength of the password: 50 
Change the password for root ? ((Press y|Y for Yes, any other key for No) : y

New password: Set New MySQL Password

Re-enter new password: Re-enter New MySQL Password

Estimated strength of the password: 100 
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.


Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.

All done! 

Step 6: Connecting to MySQL Server

10. Connecting to newly installed MySQL server by providing username and password.
# mysql -u root -p

Sample Output:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 19
Server version: 5.7.9 MySQL Community Server (GPL)

Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>

Step 7: Updating MySQL with Yum

11. Besides fresh installation, you can also do updates for MySQL products and components with the help of following command.
# yum update mysql-server
# dnf update mysql-server       [On Fedora 22+ versions]
When new updates are available for MySQL, it will auto install them, if not you will get a message saying NO packages marked for updates.
You Have successfully installed MySQL 5.7.9 on your system,if you still have any problem then please leave you comment. Enjoy...

How to make VLC run on Kali 2.0


Kali 2.0 has a big problem when running VLC, infact it doesnt even RUN it at all. This probably due to the bugs in the new kali updates.I solved this problem by typing the following commands:
Step 1: Open Your Terminal
Step 2: Type in "cp /usr/bin/vlc /usr/bin/vlc a" and press enter
Step 3: Type in "needle=$(objdump -d /usr/bin/vlc | grep euid | tail -1 | awk '{print "\x"$2"\x"$3"\x"$4"\x"$5"\x"$6;}')" and press enter
Step 4: Type in "sed -ir "s/$needle/\xb8\x01\x00\x00\x00/" /usr/bin/vlc" and press enter.
Your VLC should be alright by now. Enjoy...

10 best gaming laptops 2015: top gaming notebooks reviewed


You don't even need to tell us what happened when you told your friends that you want to buy a gaming laptop. Their inner elitist got the best of them, and bashed you for not just building an outright gaming desktop. But we get you. Building a gaming PC takes knowledge and dexterity that you just don't have or care to develop.

That's where the gaming laptop shines, as a fast lane to PC gaming. No need to build a case or even buy a monitor. Of course, that convenience usually comes with a hefty price tag. Most vendors start their asking prices at around $1,400 (about £901, AU$1,894) for 13 and 14-inch products, whereas the biggest and beefiest 17 and 18-inch models can skyrocket upwards of $3,000 (around £1,931, AU$4,059).
If you're ready to accept that a gaming laptop will almost never be as affordable or offer the same level of performance as a comparably-priced gaming desktop, then your decision is already made. But again, the gaming notebook is a device of convenience and portability over raw power. Without further ado, here are our favorite gaming laptops that we've reviewed thus far.
Best Gaming Laptops

1. Origin EON15-X

A desktop-grade CPU in an unbeatable gaming laptop
CPU: 4GHz Intel Core i7-4790K | Graphics: Nvidia GeForce GTX 980M (8GB GDDR5 RAM), Intel HD Graphics 4600 | RAM: 8GB | Screen: 15.6-inch, 1920 x 1080 LED Backlit Matte Display | Storage: 240GB SSD; 1TB HDD (5,400 rpm) |Connectivity: Intel PRO Wireless AC 7265 + Bluetooth Wireless LAN Combo |Camera: 2MP Video Camera | Weight: 7.5 pounds | Dimensions: 15.2 x 10.31 x 1.40 inches (W x D x H)
 Great value
 Desktop-grade performance
 Razor thin viewing angles
Origin EON15-X is a real head turner. It packs a desktop processor into a fairly compact 15.6-inch laptop that, while smaller, offers even more performance compared to other, bigger hardcore gaming rigs. This extra CPU power is handy for users who need to edit video and other processor intensive tasks that a mobile chip can't handle. You'll also get an extra kick of performance in no matter what game you're running.
This machine is definitely worth consideration over all others and now that Origin has updated this monster with a Intel Skylake processor, you can bet you'll get even more performance mileage. Though, there might be a new performance champion on the block now that Asus has created the ROG GX700as the world's first gaming laptop with liquid-cooling.
Read the full review: Origin EON15-X
Best Gaming Laptops

2. Aorus X3 Plus v3

A slim and light gaming machine
CPU: 2.5GHz Intel Core i7-4710HQ Processor | Graphics: Nvidia GeForce GTX 970M GDDR5 6GB | RAM: 16GB | Screen: 14-inch QHD+ 3200 x 1800 Wide Viewing Angle LCD | Storage: 2 x 256GB SSD, RAID 0 | Connectivity: 802.11ac Wi-Fi; Bluetooth 4.0 | Camera: HD webcam | Weight: 4.12 pounds | Dimensions:12.9 x 10.3 x 0.9 inches
 Highly portable
 Blazing performance
 Trackpad is a weak link
 4K screen makes text tricky to read
High-res gaming machines are a tough nut to crack whether you have a baller PC tower and even more so with portable laptops. So it comes as a pleasant surprise to see the Gigabyte build out the Aorus X3 Plus v3 as a machine that can fly even with a 4K screen in tow. This 14-inch gaming laptop can pull off this feat largely thanks to its beefy video card and dual SSDs. The Aorus X3 handles the latest graphics-heavy games such as Elite Dangerous with ease at 60 fps even in the most frantic space combat.
Read the full review: Aorus X3 Plus v3
best gaming laptops

3. MSI GT80 Titan

An outrageously sized and powerful gaming laptop
CPU: 2.6GHz Intel Core i7-4720HQ | Graphics: 2 x Nvidia GTX 980M SLI (16 GB GDDR5); Intel HD Graphics 4600 | RAM: 16GB | Screen: 18.4-inch WLED FHD (1920 x 1080) Anti-Glare Display | Storage: 256GB SSD; 1TB HDD (7,200 RPM) |Optical drive Blu-Ray Burner | Connectivity: Killer DoubleShot Pro 11ac + Bluetooth 4.1 | Camera: Full HD type (30 fps, 1080p) | Weight: 9.9 pounds |Dimensions: 17.95 x 13.02 x 1.93 inches
 Authentic mechanical keyboard
 Easily upgraded
 H-E-A-V-Y
 Impossible to use on your lap
The MSI GT80 Titan goes above and beyond to give gamers a desktop experience in a notebook with a complement of high-performance parts to a built-in mechanical keyboard. However, weighing in at nearly 10 pounds and measuring roughly two-inches thick, this laptop is seriously pushing the limits of what you can call portable. For all the strain it'll put on your back and wallet, though, this 18.4-inch gaming laptop absolutely plow through almost any graphically intense game you try to run. This gaming behemoth proved to be a monster with the best in class mobile GPUs so we can't even fathom what it could do with a Nvidia GTX 980.
Read the full review: MSI GT80 Titan
Best Gaming Laptops

4. Gigabyte P55K v4

An excellent gaming laptop for budget-conscious players
CPU: 2.7GHz Intel Core i7-5700HQ | Graphics:Nvidia Geforce GTX 965M; Intel HD Graphics 5600 | RAM: 8GB | Screen: 15.6-inch full HD 1,920 x 1,080 LCD |Storage: 128GB SSD, 1TB HDD | Connectivity: 802.11ac Wi-Fi, Bluetooth 4.0 |Camera: HD webcam | Weight: 5.51 pounds | Dimensions: 14.96 x 10.59 x 1.34-inches
 Speedy performance
 Great virtual surround
 Large screen bezels
 Average battery life
If you're looking to jump into PC gaming on a budget, the Gigabyte P55K v4 offers plenty of performance without breaking the bank. For the same price as the new 12-inch Apple MacBook you get a super-speedy Intel Core i7 processor with discrete graphics to boot. There's enough power on tap to easily surpass the 60 fps holy grail in almost any game so long as you knock your settings a peg or two below Ultra. To top it off P55K v4 features a great, colorful IPS screen and an immersive Dolby Digital Plus Home Theatre sound system to make this one of the nicest self-contained gaming platforms we've ever reviewed.
Read the full review: Gigabyte P55K v4
best gaming laptop

5. Alienware 17 (2015)

The Alienware 17 is an impressive refinement for this series of gaming laptops
CPU: 2.5GHz Intel Core i7-4710HQ | Graphics: Nvidia GeForce GTX 980M (4GB GDDR5 RAM), Intel HD Graphics 4600 | RAM: 16GB | Screen: 17.3 inch, 1,920 x 1,080 IPS anti-glare display | Storage: 256 GB M.2 SATA SSD + 1TB HDD (7,200 rpm) | Connectivity: Killer 1525 802.11ac 2x2 WiFi + Bluetooth 4.1 | Camera:2MP Full HD webcam | Weight: 8.33 pounds (3.78 kg) | Dimensions: 16.93 x 11.49 x 1.35 inches (W x D x H
 Flexible desktop mode
 Excellent large screen
 Still quite expensive
 Slightly bottlenecked Amplifier performance
The Alienware 17 is one of those few outrageously priced gaming laptops that's actually worth it. The notebook is a fully capable gaming machine on its own, but with the added power of desktop graphics through the GPU Amplifier it can play almost any game on Ultra settings.If you're looking for something smaller, the Alienware 13 also works with the optional GPU box.
Read the full review: Alienware 17 (2015)
Best Gaming Laptops

6. Aorus X7 Pro-Sync

Fully-loaded machine with everything you'll ever need
CPU: 2.5GHz Intel Core i7-4870HQ | Graphics: 2 x Nvidia GTX 970M SLI + Intel Iris Pro Graphics 5200 | RAM: 8GB | Screen: 17.3-inch, 1,920 x 1,080 Wide Viewing Angle G-Sync LCD | Storage: 512GB SSD | Connectivity: Wireless LAN: 802.11ac + Bluetooth 4.0 | Camera: 1MP HD camera | Weight: 6.6 pounds |Dimensions: 16.85 x 12 x 0.9 inches
 Thin and fully-loaded
 Record breaking performance
 Hard to click trackpad
 Tornado-producing fans
The Aorus X7 Pro-Sync is a 17.3-inch gaming laptop that packs a ton into thin body. With no less than two graphics cards and a heady processor too, the X7 is overflowing with performance. What's more, thanks to some newly added Nvidia display technology, gamers can be confident they're getting the highest frame rates without any bothersome jitter and tearing issues. In the future, this Aorus X7 will come packing Nvidia's desktop graphics for even more performance.
Read the full review: Aorus X7 Pro-Sync
best gaming laptop

7. Origin EVO15-S

Peak performance from a super slim gaming laptop
CPU: 2.5GHz Intel Core i7-4710HQ | Graphics: NVIDIA GeForce GTX 970M (6GB GDDR5 RAM), Intel HD Graphics 4600 | RAM: 16GB | Screen: 15.6-inch, 1920 x 1080 eDP Wide View Angle Matte Display | Storage: Dual 128GB M.2 SATA SSD in RAID0 (256GB Total); 1TB HDD (7,200 rpm) | Connectivity: Intel PRO Wireless AC 7260 + BT Wireless LAN Combo | Camera: Built-in 720P Video Camera |Weight: 4.3 pounds | Dimensions: 15.35 x 10.47 x 0.78 inches (W x D x H)
 Super thin chassis
 Color rich, contrasty screen
 Short battery life
 Obnoxiously loud fans
There's plenty to like about the EVO15-S, and while it comes at an expensive premium, it's one of the few laptops that are well worth the expense. This Origin machine is one of the thinnest and lightest gaming laptops you possibly buy. It doesn't skimp on the latest cutting edge parts either with an excellent 1080p panel, three storage drives and plenty of RAM. Plus there's also the option to throw on a 4K screen for a marginally priced upgrade.More and more gaming laptops have been outfitted with Nvidia's latest GPUs, but the Origin EVO15-S is still one of the best-performing gaming laptops for a reasonable price.
Read the full review: Origin EVO15-S
best gaming laptop

8. HP Omen

A most sophisticated and attractive gaming laptop
CPU: 2.6GHz Intel Core i7-4720HQ | Graphics: Nvidia GeForce GTX 960M (4GB GDDR5 RAM), Intel HD Graphics 4600 | RAM: 16GB | Screen: 15.6-inch, 1920 x 1080 Full HD WLED-backlit IPS touchscreen | Storage: 512GB SSD |Connectivity: Intel 802.11ac WLAN and Bluetooth | Camera: HP TrueVision Full HD WVA Webcam with Dual Digital Microphone | Weight: 4.68 pounds |Dimensions: 15.07 x 9.67 x 0.78 inches
 Bold, unique design
 Sublime screen
 Pricey compared to competition
 Lacking screen brightness
If you want a machine that doesn't follow the crowd with glowing alien heads and flaming decals, the HP Omen has a style unto its own. Steeply tapered edges give way to a plenty of lights and other little details to make this one of the industry's most sophisticated and attractive gaming laptops. Beyond looks, the HP Omen packs enough processing brains to handle anything from everyday task to hardcore PC gaming. As a mid-range system, it straddles the line of excellent power efficiency while still offering enough performance to handle the latest games.
Read the full review: HP Omen
Best gaming laptops

9. Digital Storm Triton

A rare powerful and affordable gaming laptop
CPU: 2.5GHz Intel Core i7-4710HQ | Graphics: Nvidia GeForce GTX 970M (3GB GDDR5 RAM), Intel HD Graphics 4600 | RAM: 8GB DDR3L (1600MHz)| Screen:15.6-inch, 1920 x 1080 (Anti-Glare) LED-backlit Matte Display | Storage: 120GB SSD; 750GB HDD (7,200rpm) | Connectivity: Intel Wireless-AC 7265 + Bluetooth 4.0 | Camera: 2MP 720p webcam | Weight: 5.5 pounds | Dimensions: 15.16 x 10.67 x 0.98 inches (W x D x H)
 Excellent performance
 Thin, attractive design
 Bland screen
 Heat ventilation problems
The Digital Storm Triton is an attractive, powerful and, most importantly, affordable gaming laptop. These are three qualities you don't often hear in the same sentence, making this machine special for pulling together such a rare combination.It has enough computing power to play most modern games at 60 fps with just a few tweak in your graphics settings.Though it has a lackluster screen and trouble keeping cool, this Digital Storm laptop is still an incredible deal.
Read the full review: Digital Storm Triton
Best Gaming Laptops

10. Asus ROG G751JY

The G751 combines top-end components with a great design
CPU: 2.4 GHz Intel Core i7-4860HQ | Graphics: Nvidia GeForce GTX 980M 4GB |RAM: 32GB DDR3L (1600MHz) | Screen: 17.3-inch 1080p IPS display | Storage:1TB hard disk, 512GB SSD | Optical drive: Blu-ray | Connectivity: 2x2 802.11ac Wi-Fi, Bluetooth 4.0 | Camera: 720p | Weight: 10.5 pounds | Dimensions: 16.3 x 12.5 x 0.79-inch (W x D x H)
 Good performance
 Great overall design
 Rather hefty
 Expensive
The Asus ROG G751 is a gaming tank in every sense. At 17 inches and 4.8kg, it's bigger and heavier than some other gaming laptops, but it sports a premium design spruced up with aluminum and houses powerful components that justify the chunk. Inside you'll find some of the best components available to notebooks to day that allows this mobile rig to play games at high detail settings. For all of its horsepower, the G751 is uncommonly quiet and runs at a gentle hum. It's big, bold, perhaps even beautiful — and definitely a beast. It's also worth noting that Asus has a new ROG G752 waiting in the wings with an new sleeker design plus Skylake processors.
Read the full review: Asus ROG G751JY

Article from Techradar