Posts

Showing posts from October, 2013

Speeding Up the Android Emulator on Intel Architecture

Image
This article will guide you through installing the Intel Hardware Accelerated Execution Manager (Intel HAXM), a hardware-assisted virtualization engine (hypervisor) that uses Intel Virtualization Technology (Intel VT) to speed up Android development on Windows. It also explains how to setup a hardware-assisted KVM on Linux and best known methods in compiling natively and submitting apps to the Google Play Store for x86. 2. Installation 2.1. Prerequisites You need to have the Android SDK installed. Your computer must have an Intel processor with support for Intel VT-x, EM64T and Execute Disable(XD) Bit functionality enabled from the BIOS. 2.2. Installation on Windows After you have installed the Android SDK, open the SDK Manager. In the extras section, you can find the Intel HAXM. File Path : \sdk\extras\intel\Hardware_Accelerated_Execution_Manager Check the box and click the ‘Install packages…’ button, once you have installed the package, the status will appear as ‘Inst

PHP Database Backup Script

Mysqldump is a small utility that allows you to export a MySQL database to a text file for backup or transfer between two servers. This utility is very useful, is not always available on shared hosting as it embarks on the command line. This article therefore discusses how to export a MySQL database in PHP. Called "export" the fact of formatting in a file (a dump) all the information needed to create the table and populate. The following code allows for an export of a database in SQL file. The Setup section allows you to configure the connection information to the database (user name, password and server address) and the name of the database ($ dbname). As you can see, the script regularly dump the memory by recording the information as and in the dump file. This process is required for export of large databases. Note also that the export of a large BDD can take a long time. If you can, consider raising the maximum execution time of your script at the beginning of

Force Files to Download (Not Open in Browser) using htaccess

Remove File Extention from URLs using htaccess

That little bit will make  http://blogger.com/about.php into   http://blogger.com/about

Force Correct content-type for XHTML Documents using htaccess

Reference

SLT USAGE METER

USERNAME :

How to configure IIS to run in different port than 80

Microsoft Internet Information Server versions 1.0 to 2.0 Start Regedt32.exe and locate the following registry subkey: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ServiceProvider\ServiceType\W3SVC Find the TCP Port value and double-click it. The DWORD Editor dialog box should appear with the default value (0x50 Hex; 80 Decimal) listed. Change the decimal value to the number of the port that you want the World Wide Web Publishing Service to listen to. NOTE : You can also follow steps 2 and 3 to change the following services: MSFTPSVC: FTP Publishing Service GOPHERSVC: Gopher Publishing Service Exit Regedt32.exe. Stop and Restart the IIS Services by Using the Internet Service Manager. Microsoft Internet Information Server version 3.0 Open Internet Service Manager. Double-click on the computer corresponding to the WWW service. On the  Service  tab, change the TCP Port field to the desired port number. Click  OK . Using the Internet Service Manager, stop and r

How to change target build on Android project ?

Image
Right click the project and click " Propertie s". Then select " Android " from the tree on the left. You can then select the target version on the right. hint:Sometime IDE need to restart Change Android build target

C++ Hello World In Visual Studio

Without using namespace std; when you write for example cout <<; you'd have to put std::cout <<;