Skip to main content

Posts

Showing posts from March, 2017

[Windows] Windows Creator Updates ISOs

Evidence has been mounting lately to indicate that Windows 10 build 15063 is the 'RTM' build for the upcoming Creators Update, also referred as 'Version 1703'. That build is now available for PCs and phones in the Fast ring, PCs in the Slow ring, and for those on the Xbox Insider Program; and the SDK and Mobile Emulator for the same build appeared online last week. Microsoft hasn't yet made an official announcement about whether or not 15063 will be the 'final' Creators Update build for that roll-out - and it's possible that such an announcement may never come. But with very little time remaining until the update's release, it's looking increasingly likely that that will be the build. Today, ISOs for build 15063 have made an appearance on Microsoft's servers ahead of their official release. Steve Truman (@KPRP42) shared the direct download links with us for two of the build 15063 ISOs that are now available from Microsoft.com: Wi

[Youtube]How to Download Playlist from youtube

There are very less ways to download whole playlist  from youtube in one go, and also less likely to be so accurate. So here's the solution.follow the instructions given below and also there is a video for your reference: Open youtube.com, copy the link of the playlist you want to download. Open http://youtubemultidownloader.com/playlist.html, and paste the link in playlist link textbox.   Wait for few moments while all the videos are getting loaded in the server.  Once all the videos are loaded, link will be generated in the textarea, copy that link. Now open IDM, click on Task, select 'add batch download from clipboard' option. Batch download will be open, Select on check all option and also check the hid html files check box click on start button, and videos will start downloading. Click here to check out our youtube channel

[Important Links]Download PC Games, Hollywood Movies and TV shows

Now a days, it's hard to find a website  to download your favorite contents apart from torrent which is already towards dawn. However, there are still a few sources where you can download hollywood movies and TV shows, and also PC games. Links for Movies and TV shows HDpopcorns - Click here for HDPopcorns Cyro.se - Click here for Cyro.se    Links for downloading PC Games Skidrow - Click here for Skidrow Ocean of Games - Click here for Ocean of Games DZ Repack - Click here for DZ Repack Subscribe to my youtube channel to see more of my content - Tec2u

[Windows] How to Activate Windows 10 PC

Software Required: KMS (Download link) – http://linkshrink.net/7eZgYm This method will work for all versions of Windows OS Firstly, you have to stop windows defender/antivirus for a moment, then unzip the rar file and install KMS in the system. video tutorial on activating windows 10 After installing KMS, open it. Once it is opened, click on the red button on for activating Windows, also you can activate MS office from the software provided to you. Now your windows will be activated, uninstall KMS and start your antivirus/Windows Defender.

[Android Tutorial] Press back button twice to exit app

Few Apps have the feature to close the app when back button is pressed twice. This feature comes handy when there is accidental press of back button. This feature allows the user to close the app only when back button is pressed twice. Today we will be showing you how to implement this on your own app. We will be using a custom toast to demonstrate this features. But you may want to try this on default toast settings too. We will be using this on the MainActivity.java file but you may want to use accordingly to any class file. Preferred is the home activity file. Step 1 Create a variable of integer type and assign its value to 0. Ex -  int   count = 0; Step 2 Create a method onBackPressed() to  override the default back settings. Paste the following code - public void onBackPressed() { if ( count == 1 ) { count = 0 ; finish(); } else { LayoutInflater inflater = getLayoutInflater(); View layout = inflater.inf