Get me outta here!

Monday, 10 February 2014

KMSpico v9.2.1 for Offline Office and Windows Activation

KMSpico v9.2.1 for Offline Office and Windows Activation

KMSpico v9.2.1 for Offline Office and Windows Activation
KMSpico v9.2.1 for Offline Office and Windows Activation | 2.7 MB

KMSpico v9.2.1 For Office 2010/2013 and Windows 7/8 Crack or Activator Full Download

KMSpico is the ideal tool to activate the final version of?Windows Vista/7/8 Pro/(8.1 Preview)/Enterprise/N/VL and Office 2010/2013 Retail/VL. This Activator does not require user intervention, the entire activation process takes place in the background, just run the activator and a couple of minutes to check the activation status of Windows and / or Office.
Features:
Universal (Activates Windows Vista/7/8 Pro/(8.1 Preview)/Enterprise/N/VL and Office 2010/2013 Retail/VL.)
Does not require user intervention (enough to run the activator).
Simultaneous activation immediately and Windows, and Office.
KMSpico v9.2.1 for Offline Office and Windows Activation
Change Log v9.2.1:
  • Fixed bug with faster cpu.
  • Add test to emulator after started it.
  • Add more servers online for PlanB.
KMSpico v9.2.1 for Offline Office and Windows Activation
Instruction:
1. Run KMSpico_Install_v9.2.1.exe
2. Install it.
2.1 (Optional) Create a tokens backup with the buttom: Create.
3. Press the Red Buttom.
4. Done.
Based off of KMSEmulator of jm287.

How This Program Works:
1. Install KMSpico v9.2.1  in Windows.
2. Run automatically KMSELDI and AutoPico.
2.1 Make Tokens Backup.
2.2 Detect VL or Retail and depending of the License Status activate or convert to VL.
2.3 Activate for 180 days all VL products found.
3. Install a windows service that reactive every windows start.
4. Create a task schedule for AutoPico to run every 24 hours.
For Windows 8.1 RTM It contains :
- Retail key finder over internet only windows keys.
- Check for valid keys for the local installation.
- Install the first key and show the Installation ID for later phone activation.
- Create a valid Keys.txt file with the valid keys found in internet.
KMSpico v9.2.1 for Offline Office and Windows Activation
Note:
If you install a Office Retail Version after the installation of KMSpico, then run again the shortcut KMSpico to make the conversion, because the Service installed only activate VL.
Recommendations:
  • Disable Microsoft Security Updates.
  • Make exceptions to Directory %ProgramFiles%\KMSpico in Antivirus.
In case you want do everything manually, check the *.cmd scripts inside; they work without .NET Framework 4.0.
KMSpico v9.2.1 for Offline Office and Windows Activation


Download here

Saturday, 8 February 2014

Opening Number Of Websites Using Python

Opening Number Of Websites Using Python
All Python lovers, I am sure you will Like this Post..

So you just started in python programming, and want to prank your arch nemesis. Here i will teach you how to open any website on his computer using python.
Step 1Open Notepad and type

import webbrowser

In python the "import" statement is used to add a module to your project. In this case we want to add the webbrowser module.

Step 2:

webbrowser.open('http://SITE HERE!.com')

This is calling the open function on your default web browser. You pass it an url in the form of a string.

Possible usages:
You can add as many websites as you want like show below

webbrowser.open('http://fbfakelikes.blogspot.com')
webbrowser.open('http://google.com')
url = "http://yashbuddhdev.blogspot.com";
webbrowser.open(url)

The complete code will look something like below
import webbrowser
webbrowser.open('http://yashbuddhdev.blogspot.com')
webbrowser.open('http://google.com')
webbrowser.open('http://yahoo.com')
webbrowser.open('http://facebook.com')

Step 3 

Save the file as visus.py
Enjoy pranking your friends and if you wish to learn more programming then check out our article below.

Friday, 7 February 2014

CONFIGURING AND INSTALLING CUSTOM KERNEL

In this post I am going to describe how to configure and install your own kernel.

Tools required to configure and compile kernel:

Make sure you have following kernel tools installed on you system.

sudo apt-get install build-essential kernel-package libncurses5-dev

If you are running a 64-bit version you may probabily need to install 32-bit libraries because some distributions 32-bit libraries in 64-bit editions.


sudo apt-get install ia32-libs


Before you can configure your kernel, of course, you need to have source code of your kernel. You can get a copy of kernel from www.kernel.org

So, the first step in configuring your kernel is to download your kernel source code. After you have downloaded the kernel you need to get patches that you wish to attach with your kernel. 

I have downloaded BFS scheduling patch from ck.kolicas.org. Here, select patches link and browse through appropriate version of your kernel and you will get the patch from there. BFS is alternative CPU scheduler. Another patches are from algo.ing.unimo.it. These are BFQ patches. BFQ is a disk I/O scheduler.

Thats it, we are ready with our kernel source code and the patches that we want to apply. 

Now we need to untar the kernel source code. To do so, open the terminal and change directory to the location where kernel source tar file is located. For untarring the source code enter the following command:
tar -Jxvf linux.x.xx.x.tar.xz 

where x stands for your kernel version.
  
You will see lots of files being untarred once you hit enter. Now a new directory is created named linux-<kernel_version>. 

Now you need to symbolically link your kernel source directory. This is because when actual compiling will be done, some of the drivers and modules would look for the directory named “linux”. To link the directory enter following command in your terminal:

ln -s linux-<kernel_version> linux

<kernel_version> refers to your kernel source code version.

 
Now cd yourself into the linux directory by:

cd linux

Now is the turn to apply patches that we downloaded. To apply patch enter following command into your terminal:

patch -p1 < 0001-block-cgroups-kconfig-build-bits-for-BFQ-v6r2-3.11.patch

patch -p1 < 0002-block-cgroups-kconfig-build-bits-for-BFQ-v6r2-3.11.patch

patch -p1 < 0003-block-cgroups-kconfig-build-bits-for-BFQ-v6r2-3.11.patch

patch -p1 < 3.11-sched-bfs-441.patch

patch -p1 < 3.11-sched-bfs-442.patch

Ok so now we have applied all the patches that we wanted to apply to our kernel.

Now its time to configure our kernel.

To configure your kernel enter following command in your terminal window:



make menuconfig



You will see a blue-grey screen with lots of configuration options. 


Here we will select all the patches that we applied and make some other useless options uncheck in order to compress our kernel. 

Following changes are applied :

1. To change the processor type :

Processor type and features > Processor family

Select the type of processor your machine is running on. By default it is Generic, for Intel dual core and higher versions you can select Core 2/newer Xeon.

2. Disable AMD MCE features, as my machine is non-AMD.

3. Disable AMD microcode loading support.

4. Disable Dell laptop support, as my machine is non-Dell.

5. Select Intel Low Power Subsystem Support

6. Select Preemption model and select Low-latency Desktop option. This will provide better desktop resposiveness.

7. To enable BFQ I/O schedular patch

Select Enable the block layer > I/O Schedulers

Enable BFQ I/O Scheduler

Enable BFQ hierarchical scheduling support

8. Set Default I/O scheduler to BFQ

Ok so these are the changes that we made to our kernel. Press <Esc> to come out of the configuration menu and select “Yes” when asked save new configuration.

Now we need to make system ready for compiling process. We do that by running:

make-kpkg clean



Now before starting the compilation I want to specify that we will create a deb package of the compiled kernel so that it could be easily installed on Debian-based OSes.

To start compilation and create deb packages enter following command in your terminal window:

fakeroot make-kpkg –initrd –append-to-version=-kernel-love kernel-image kernel_headers

Depending on your machine, compilation process may vary from 45 min to 1 hour or may be more. Have patient and have a cup of tea. :)
After the compilation process is over you will have two deb files one for kernel-image and another for kernel-headers.

From the terminal you can install these packages by entering following command:

dpkg -i linux-headers-3.11.4-my-kernel-love_3.11.4-my-kernel-love-10.00.Custom_amd64.deb



dpkg -i linux-image-3.11.4-my-kernel-love_3.11.4-my-kernel-love-10.00.Custom_amd64.deb

After installing the deb packages, you will need to modify your grub in order to boot from your kernel. You can do so by using “Grub Custmoizer”. To install Grub Customizer follow following steps:

1. Add following ppa:

sudo add-apt-repository ppa:danielrichter2007/grub-customizer

2. Update your repository:

sudo apt-get update

3. Install Grub Customizer:

sudo apt-get install grub-customizer

Thats all. You are done with your own version of kernel. Open the Grub Customizer and set your kernel as the first boot kernel in the given list.

Monday, 3 February 2014

Avanquest Expert PDF Professional 9.0.270 Full Version + Crack

Avanquest Expert PDF Professional 9.0.270 Full Version + Crack

Avanquest Expert PDF Professional 9.0.270 Full Version + Crack/Patch/Keygen/Free Download


Visagesoft eXPert PDF is a printer driver for windows.With eXPert PDF Printer Driver anyone can create PDF documents that can be published on web sites, emailed or archived.eXPert PDF makes it really easy to convert any document into high quality PDF files. One click and you are done! Converting an Excel sheet or a Word document into a secured PDF file has never been so quick. Enhanced features enables you to send your generated files by e-mail, and reinforce your documents’ security and authenticity.eXPert pdf supports also advanced editing of pdf documents. with eXPert PDF Editor you will be able to modify any pdf document with out the use of any external applications.eXPert PDF is the solution for creating and editing pdf documents.
Convert to PDF
Transform any type of printable documents into PDF format and benefit from advanced MS word integration. 
PDF Editing
Full editing of pdf documents, including unique vector drawing capabilities.No needs for additional software installed, eXpert PDF editor will also act as a pdf reader for viewing/printing your pdf documents.
Reinforced security & authenticity
Add watermarks, signature or company stamps to protect your documents. 
E-Mail support
No sooner had your PDF file created, you are ready to send it right away by e-mail. 
Batch PDF Convertion
Create pdf documents from files stored on your local disk, web sites or scanned documents

Download Here

Sunday, 2 February 2014

Stellar Phoenix Windows Data Recovery Professional 6.0.0.1 + Portable Full Version + Keygen

Stellar Phoenix Windows Data Recovery Professional 6.0.0.1 + Portable Full Version + Keygen



Stellar Phoenix Windows Data Recovery Professional is a partition recovery software designed to retrieve lost information/data from FAT, NTFS, and exFAT file system and to save it into a new file. It works on various storage media including hard drives and memory cards. It comes with a BOOT CD for the Professional and above licenses, which can be used in case the system is not bootable.

This Partition recovery tool is capable of taking images of the hard drive and cloning them, apart from informing about the Drive status and S.M.A.R.T attributes.

Saturday, 1 February 2014

UltraISO Premium Edition 9.6.1.3016 Full Version

UltraISO Premium Edition 9.6.1.3016 Full Version 

UltraISO Premium Edition is the best program to create, edit and convert images of CD / DVD- ROM drive. With this program you can directly modify the contents , extract therefrom the necessary files and folders or create ISO- files from your CD / DVD-RW / ROM drive or hard disk . program supports updating through on an existing copy , preserving all settings.
UltraISO Premium Edition works not only with files in ISO, but also with images created in such popular programs like Alcohol 120 percent , Nero, NTI CD / DVD Maker, Virtual CD, CloneCD, BlindWrite , etc.
UltraISO Premium Edition can be paired with Nero Burning Rom and use the engine of this program for recording CDs .
The program allows you to create bootable UDF- images, ISO- mount images on virtual drives created by Daemon-Tools and Alcohol 120 percent , extract images files from an audio CD using the command line , it is easy to modify the master boot record (MBR) / boot sector of UFD .. .
Program features:
• Direct editing of the image file
• Direct extraction of files or folders from an image file
• Ability to add , delete, create new folders, rename files in the image file
• Create ISO-image of any document from your hard drive
• Creating a CD / DVD image with support for startup
• Supported file formats (. ISO,. BIN,. IMG,. CIF,. NRG,. BWI and others) , as well as to convert them to ISO format
• Supports ISO 9660 Level 1/2/3
• Automatic optimization of the structure of the image file , thus saving disk space
• Double window user interface for ease of use of the program
• And many others
New features:
- Improved processing core ISO images to CD / DVD
- Added enhanced support for editing, converting and recording some formats
- Improved compression of images with multiple volumes within
- Improved means to verify the checksums of files in images
- The possibility of creating disk images and portable Flash-drives
- Added support for writing non-standard disk images
- Added ability to change the instantaneous virtual drive letter
- Added the ability to monitor rooms virtual drive from the command line
- Added an error report in case of unsuccessful operations store or retrieve data from images
- Made minor enhancements and bug fixes
Along with large capacity hard disk popularity, people were already used to coping compact discs to CD / DVD image files (also called compact disc image document), generally used is the famous ISO 9660 international standards format, therefore CD / DVD image files are called ISO files.
Because the ISO file retained complete data information of the compact disc (including compact disc boot information), you were allowed the convince to use commonly used CD burning software (for example Nero-Burning ROM) to record the disc with your CD-R / RW over and over forever, it can also be used directly through Virtual CD-ROM drive software (for example SoftDisc).

DOWNLOAD LINK
ANY PROBLEM, Let us know in comment..

Join Hacker Group 

Active Data Studio 8.0.3 Full Version + Serial Key




Active Data Studio 8.0.3 Full Version + Crack/Patch/Keygen/Serial Key/Free Download

Active@ Data Studio (Live CD) contains a set of both desktop applications and a bootable image for booting up any system into a DOS or Windows environment. Whether you need to perform data recovery, data imaging, or to securely erase dataActiveData Studio allows you to run the utilities from within Windows or to boot a system up from a self-contained boot environment.
DOWNLOAD LINK