Download YouTube music playlist in single click

YouTube is undoubtedly the most popular video service in the world. But while there are millions of uploaded videos, YouTube offers no standard way to download music or clips in bulk. And getting them one by one is too dull and tedious. So to download the whole song contained in playlist in single click please follow the following procedure.
  1. Downloads media human you tube to mp3 downloader from here

  2. Install and open the downloader.
  3. Find playlist from youtube

    Locate YouTube playlist you want to download, or create one.
  4. Copy URL

    Now you need to copy the URL of the playlist to clipboard. Right-click the address bar of your browser and select the appropriate command.
    Copy playlist link
  5. Paste URL

    Launch YouTube to MP3 Converter and paste the URL into it using the button on toolbar. Alternatively, you can simply drag-n-drop the URL from your browser to the program.
    Paste YouTube link
  6. Add the whole playlist

    YouTube to MP3 Converter automatically detects the video as a part of a playlist and suggests two options: download this video only or the entire playlist. Click the button with "list" icon to tell the program to add all videos from the playlist.
    Extract all videos from playlist link
  7. Ready to download

    We are ready to download YouTube clips now! Click the Start all button, and all videos will be saved locally and converted to MP3. You can also add other individual videos or playlists to the download list. Note that the downloading process goes in background, so you can keep adding clips while other videos are being downloaded from YouTube.
    Download YouTube playlist as MP3

Upgrade Windows 10 from Windows 7 , 8 & 8.1

To upgrade from Windows 7/8 to Windows 10 there is a very small list of must-haves and a few recommended items (which we’ll cover in the next section Pre-Upgrade Housekeeping). Let’s take a look at what you need before proceeding and then highlight some best practices.

An Activated Copy of Windows

The most important thing is that your current version of Windows is properly activated. Although Microsoft alluded to the idea that Windows 10 would be a sweeping upgrade that would even install on pirated and/or unactivated copies of Windows that plan never came to fruition and you most certainly need an activated copy under the current deployment model.
To check if your copy of Windows 8 is activated, press Windows Key + W to pull up the Setting search and type in “activated” to access the “See if Windows Is Activated” menu. Alternatively, you can look under Control Panel -> System to see the status of the machine.
To check if your copy of Windows 7 is activated you can click on Start Button, right click on “Computer”, and select properties. The resulting status menu will show if your copy of Windows is activated.

The Appropriate Windows 10 Update Tool

Although the Windows 10 update tool is pretty straight forward you need the right version for your hardware. The first step is determining if you are running a 32-bit machine or a 64-bit machine. While you can read about the nuances of of each in our article HTG Explains: What’s The Difference Between 32-bit and 64-Bit Windows 7 you can check what version of Windows you are currently running by simply looking in the same place in both Windows 7 and Windows 8 that we highlighted in the previous section on checking your Windows activation. The same panel/menu that tells you if your computer is activated also tells you your “System type”.
In Windows 7 it will simply tell you that it is a 64-bit or 32-bit operating system but in Windows 8 it will actually (and helpfully) both tell you if you’re running Windows 32-bit or Windows 64-bit as well as what the actual architecture of the underlying hardware is and if it supports 64-bit computing. (e.g. you have Windows 8 32-bit installed but the hardware actually supports 64-bit). There’s a huge catch here though: you can’t upgrade an installation of Windows from 32-bit to 64-bit even if the hardware supports it; you have to do a clean install.
With that in mind, whatever bit-version of Windows you are running on your about-to-be-upgraded machine that is the version of the download tool you need to download if you wish to do an in-place upgrade and not a clean wipe.
You can find the download tool here. Select the correct version, 32 or 64-bit, to match your current Windows installation.

Running the Upgrade Installer

When you’re ready to upgrade run the installer tool, labeled MediaCreationTool, to get started.
You’ll first be prompted to upgrade the PC or create installation media for another PC. Select “Upgrade this PC now” to begin the upgrade process and click “Next”. This begins the download process which is a long or short affair dependent entirely upon your Internet connection speed. We zoomed to 100 percent in a matter of minutes on a speedy cable connection, but if you’re on a slow connection you might be watching the meter for some time.
When it finally finishes downloading and unpacking the installation media you’ll be prompted to accept the terms of the license agreement. Click “Accept” and the installer will do a final update check before kicking you over to the final confirmation page.
By default the installer will select the largest “what to keep” selection it can. If you want to make changes to what it is keeping click the small “Change what to keep” link as seen in the screenshot above. You’ll be prompted to select to select which kind of installation you want.
Here in this section you’ll select to keep personal files and apps, personal files only, or nothing at all and your apps, files, and settings will be deleted.

Uninstall Windows 8, 8.1 & 10 Store Apps

Windows 8 is basically focused on Modern (Metro) Apps or Windows Store apps and comes with some pre-installed Modern Apps in order to make the users get started with Windows 8. However, there are some folks, who may not have use for Modern Apps and may want to uninstall them. While one can uninstall Windows 8 apps, there is no easy way to completely remove them from your disk.
In this article, I’ll share the way to completely remove all the Windows Store apps from Windows 8.
Please note that, when you uninstall a Windows Store App from usual options, the app is removed temporarily and goes to a staged condition discussed later in this article. Thus, when you create a new user account on Windows 8, it will again have all the pre-installed apps, since the default Windows Store Apps are not removed completely from the system.
To completely remove and erase all default pre-installed apps, you must be signed in as Administrator of you Windows Account – and you need to remove it in two places:
  1. Remove the provisioned package
  2. Remove the “installed” package from the administrator account.

Before you proceed, create a system restore point first.

1. Firstly, you will have to open an elevated PowerShell prompt. Press Windows Key + Q, and in the search box, typepowershell. From results, pick the Windows PowerShell. Right-click on it, select Run as administrator from bottom options.
Uninstall Default Windows Store Apps
2. In the Windows PowerShell window, type following command to enlist all the apps pre-installed on your Windows 8.
Get-AppxPackage -AllUsers
Remove-Mordern-Apps-Windows-8-1

Command to remove all the Modern Apps from your system account

3. Run the following command to remove all Windows Store Apps:
Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online
That’s it! Now whenever you create a new user account on your Windows 8, there will no be no pre-installed Modern apps on that account as well.
Whenever we uninstall a Windows Store App, its status in PowerShell window is displayed as Staged. That means, the app still lies in Windows. In other words, the application is prepared to get automatic installation when a new user account is created.
Remove-Mordern-Apps-Windows-8-3
4. If you’d like to remove all Modern Apps for the current account only, use following command:
Get-AppXPackage | Remove-AppxPackage
5. In case you want to remove all Modern Apps for a specific user then add the -User part in above command, so it is:
Get-AppXPackage -User | Remove-AppxPackage
6. Finally, let us know the command to remove all Modern Apps from all the account on your Windows 8:
Get-AppxPackage -AllUsers | Remove-AppxPackage
In Windows 10, you should use: Get-AppXPackage -User | Remove-AppxPackage.
That’s it! The apps will now be completely uninstalled and erased from your system!
Interested readers can proceed to TechNet Blogs & Microsoft for advanced readings.
NOTE: mamuf says in the comments. For anyone who wants to try this on Windows 10, DON’T! These two commands remove also the Windows Store app. akemi says in Windows 10, you should use: Get-AppXPackage -User | Remove-AppxPackage.

facebook pop out like box for blog

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' type='text/javascript'></script>
<style>
#fbox-background {
    display: none;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

#fbox-close {
    width: 100%;
    height: 100%;
}

#fbox-display {
    background: #eaeaea;
    border: 5px solid #828282;
    width: 340px;
    height: 230px;
    position: absolute;
    top: 32%;
    left: 37%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#fbox-button {
    float: right;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
}

#fbox-button:before {
    content: "CLOSE";
    padding: 5px 8px;
    background: #828282;
    color: #eaeaea;
    font-weight: bold;
    font-size: 10px;
    font-family: Tahoma;
}

#fbox-link,#fbox-link a.visited,#fbox-link a,#fbox-link a:hover {
    color: #aaaaaa;
    font-size: 9px;
    text-decoration: none;
    text-align: center;
    padding: 5px;
}
</style>
<script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
// key and at least value given, set cookie...
if (arguments.length > 1 && String(value) !== "[object Object]") {
options = jQuery.extend({}, options);
if (value === null || value === undefined) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=',
options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// key and possibly options given, get cookie...
options = value || {};
var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
//]]>
</script>
<script type='text/javascript'>
jQuery(document).ready(function($){
if($.cookie('popup_facebook_box') != 'yes'){
$('#fbox-background').delay(5000).fadeIn('medium');
$('#fbox-button, #fbox-close').click(function(){
$('#fbox-background').stop().fadeOut('medium');
});
}
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
});
</script>
<div id='fbox-background'>
<div id='fbox-close'>
</div>
<div id='fbox-display'>
<div id='fbox-button'>
</div>
<iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?
href=https://www.facebook.com/Gorkha-Brave-Gorkhali-102775063141952&width=402&height=255&colorscheme=light&show_faces=true&show_border=false&stream=false&header=false'
style='border: none; overflow: hidden; background: #fff; width: 339px; height: 200px;'></iframe>
<div id="fbox-link">Powered by <a style="padding-left: 0px;" href="http://helplogger.blogspot.com" rel="nofollow">Helplogger</a></div>
</div>
</div>







Lara Croft: Relic Run v1.0.59

Lara Croft Relic Run v1.0.59
Lara Croft: Relic Run is the all new free action adventure for nostalgic Lara Croft fans. When a shadowy conspiracy threatens the world, only Lara Croft is equipped to unearth the truth. Collect clues …

Lara Croft: Relic Run / Specifications

  • Price: Free
  • Added Date: September 09, 2015
  • Requires Android: 3.0 and up
  • Developer: SQUARE ENIX Ltd
  • Size: 22.73 MB
  • Catagory: Action
  • Version: 1.0.59
  • Version history: Lara Croft: Relic Run

Lara Croft: Relic Run / Description

Lara Croft: Relic Run is the all new free action adventure for nostalgic Lara Croft fans. When a shadowy conspiracy threatens the world, only Lara Croft is equipped to unearth the truth. Collect clues to uncover ancient relics. Run, swing, drive, and swan dive your way through beautiful and challenging environments in this classic action game. There’s no time to waste, but how long can you survive?
Key features:
• Make your way through multiple ancient locations – each filled with exciting secrets and danger
• Power up Lara’s weapons and engage in frantic shooting and combat
• Use parkour and stunt moves to create death-defying last minute escapes
• Awesome fast-paced vehicles like ATVs and motorcycles give Lara more ways to conquer the terrain
• Epic Boss Fights – including the return of the infamous T-Rex from Tomb Raider! Fight the enemy in combat mode
• Swap and upgrade equipment and weapons to give Lara the edge
• Earn bragging rights on the leaderboards and make the game even more addictive
• Outsmart and sabotage your friends by Cursing their Relic Run
Each location features unique gameplay elements and brand new challenges!

Lara Croft: Relic Run / What’s New in v1.0.59

Stretch those hamstrings and get ready to run with a host of great improvements!
Update your game now for:
• New item! Double the number of coins you receive on a run with the aptly named Coin Doubler.
• Achievements now reward with Gems rather than coins
• Option to complete coin purchases with Gems
• Miscellaneous game improvements and bug fixes
Keep hunting for those relics and remember, if you do something that has never been done you will collect treasures that have never been found.

Choose Download Locations for Lara Croft: Relic Run v1.0.59

Download OBB Data File for Lara Croft: Relic Run v1.0.59


"Lara Croft: Relic Run v1.0.59" is the property and trademark of the main developer/Owner, all rights reserved.
Choose and download from the above server location to start get the apk file for "Lara Croft: Relic Run v1.0.59", And then move the file to your Android phone's SD card and use one file manager you prefer to browse & install it. Enjoy it. Have a nice day....

Polis Evo (2015) Full Movie Download [HD]



Starring Shaheizy Sam and Zizan Razak, the film follows two policemen, Khai and Sani, who have very different personalities. However, they have to put aside their differences when they have to work together in a mission to defeat a drug trafficking syndicate.

WiFi Manager Premium v3.5.1 APK Is Here !



WiFi Manager Premium


Find, connect, manage WiFi networks. Improve connection quality with a graphical channel radar. Discover open networks around you. Includes home screen widgets: one displays detailed connection info, another lets you switch among your favorite networks with a single tap, and yet another toggles WiFi Access Point. Can scan for and switch to the best network out of several configured.


Features
Assign your own descriptions and icons to individual WiFi networks – never forget what that “XYZ1234″ network is;
Switch among your favorite networks with a single tap by using the WiFi Network Switcher widget. It will even enable WiFi if needed;
Automatic switching between fixed and dynamic (DHCP) IP addresses (Android Settings in 2.* can’t do this);
Better graphics, including a dark color theme;
“Best network” to switch between different networks you may have around the house or office (off by default, enable in app settings);
The widget with detailed connection info (four sizes, two free themes), scanning and connecting to networks, the network list view, the network signal radar.


Premium Features
Advanced per-network options (description, icon, IP address)
The one-tap network widget
Two widget themes inspired by Android 5.* (Material Design, since version 3.5).


What’s New
Two new widget styles, “material design” like.
The two “holo” widget styles are now free.
Android 5.*: Native Material theme, fixed static IP and proxy settings.


How To Install
Simply Download Apk To Your Phone
Install It And Run
That’s All.

⇓Direct Download Link⇓
Screenshots





Download Links
WiFi Manager Premium v3.5.1 Apk (1.7Mb) / Mirror 1

Ironkill: Robot Fighting Game 1.2.63 APK [Mod Money] + Obb


Ironkill: Robot Fighting Game 1.2.63 APK [Mod Money] + Obb
Requirements:

Ironkill: Robot Fighting Game v1.2.63 .apk is compatible with Android 4.0 and some higher devices.
Overview:

It is a robot fighting game in which you will have to choose your own robot and lead it into the battle field. The battle field is full of robots. You will have a full control over the robot. Try your best to lead into the right way. Your main purpose of this job is to become a champion of robots. There are many challenging robot included in the game. All of them will provide you the best fighting experience in the game. Also the robots are fully armed with special high quality upgraded weapons.


Ironkill: Robot Fighting Game Features:
This game is completely free of cost and you can get it free from Google play store.
Build your own robots and add some different abilities and moves in them. Also you can add your own signatures over them.
Upgrade your robots when you reach on high levels.
Also you will see steel crushing machines that will give you more challenges.
What’s New:
Bugs and errors are fixed in the game.



Click below to find some more information:

HERE

Ironkill: Robot Fighting Game 1.2.63 APK [Mod Money] + Obb Download Links:

DOWNLOAD

Mirror:
DOWNLOAD

Obb:
DOWNLOAD 1
Download 2

Download MARVEL Future Fight 1.3.0 APK Android Download


MARVEL Future Fight 1.3.0 APK
Requirements:

MARVEL Future Fight 1.3.0 .apk mobile game is compatible with android 3.0 and higher versions of the operating system using smart phones.
Overview:

This is an awesome and very interesting action packed gameplay from Netmarble Games. In here you can enjoy with all your favorite heroes from the famous marvel movies. Now new version for this game been released and it is including lots of new content for you to enjoy with. You can get it from this blog and it is available here for free.



MARVEL Future Fight 1.3.0 APK provides you an epic and very interesting action packed play at your android devices. You can enjoy the game with all your favorite super heroes from the movies of Marvel. You will proceed and play through interesting stories in this game and overall this game play would be a great, highly adventurous and enjoyable experience. You can have a quick look at main features from the game in list given below.
MARVEL Future Fight Features:
You can have all your favorite heroes from Marvel in the game.
You can enjoy using their super powers.
Lots of missions and quests are there.
Interesting story lines are there to proceed through.


What’s New In MARVEL Future Fight 1.3.0:
New super heroes are included in the game.
New quests are there now.
Ne items are included.
Some bugs are fixed and improvements are done.

MARVEL Future Fight 1.3.0 Android Download Links:

DOWNLOAD