Get Solved
  • Home
  • Web
  • Database
  • Desktop
  • Mobile
VirtualBox

How to forward port 80 of Mac OS X to access web server on virtual machine

By Naveed On November 2, 2012 · Leave a Comment

On UNIX based machines it is not possible to bind applications not running from root to any port below 1024. So the workaround is to to redirect port 80 to any other port say 8080 and then forward this port (8080) to port 80 of virtual machine using virtual machine settings. Now you will b [...]

Continue Reading →
images

How to write Google App Engine Hello World Web App using Python

By Naveed On November 13, 2010 · Leave a Comment

Google App Engine is google’s cloud computing platform for developing and hosting web application. Its free up to a certain usage levels of CUP cycles, storage and bandwidth. Google App Engine mainly supports three programming languages Go, Java and Python. This tutorial helps you in setting up the development

Continue Reading →
PHP Logo

How to output JSON using PHP

By Naveed On October 23, 2010 · 8 Comments

PHP (version 5 >= 5.2.0, PECL json >= 1.2.0) provides a method json_encode to convert array to string.

$sample = array( ‘name’=>’My Name’, ‘email’=>’my_email@example.com’ ); echo json_encode($sample);

Continue Reading →
FreeBSD

How can I show the full path of directory in command line Freebsd

By Naveed On July 17, 2010 · 1 Comment

FreeBSD comes with CSH (C shell) as default., that do not show full path of present working directory. We need to change default shell to BASH (Bourne-again shell) using following command:

# chsh -s /usr/local/bin/bash

Continue Reading →
Android

How to increase storage of Android Emulator

By Naveed On July 12, 2010 · 1 Comment

First you need to set up Google Android SDK. While creating Android Virtual Device (AVD) you can specify the storage size in SD Card settings. You can specify any size upto 128 GB. Its really helpful if you want to install .apk applications on Emulator.

Continue Reading →
Google Wave

How to invite others to Google Wave

By Naveed On May 31, 2010 · Leave a Comment

Now you can add anyone to new or existing wave even if he is not in your contacts. An invitation will be sent to him to join Google Wave with the description of wave.

Continue Reading →
Android

Google Android Hello World! with Eclipse

By Naveed On May 29, 2010 · 34 Comments

Your decision to start development on a new platform depends on how easy it is to write a “Hello World”. This tutorial helps you set up the development environment and write “Hello World” in few easy steps. This tutorial assumes that you are already familiar with eclipse and its installation.

Continue Reading →
HTML JS CSS

How to disable page jump while clicking on anchore

By Naveed On May 21, 2010 · Leave a Comment

How to disable link’s default behavior on click

Continue Reading →
PHP Logo

Why PHP ini_set() does not work with upload_max_filesize

By Naveed On August 21, 2009 · Leave a Comment

‘upload_max_filesize’ and ‘post_max_size’ are of type PHP_INI_PERDIR, which means “Entry can be set in php.ini, .htaccess or httpd.conf”. So you can’t set it in your script.

We can set PHP_INI_PERDIR settings in a .htaccess file with ‘php_flag’

Continue Reading →
PHP Logo

How can I get the name of the calling method in PHP

By Naveed On April 15, 2009 · Leave a Comment

I just fell in need of knowing the name of the method that is currently being called. After having a few minutes of unsuccessful searching i just thought of Late Static Binding and here the PHP Manual helped me.

Continue Reading →
← Previous Entries
  • Ask questions
  • Categories

    • Database (3)
      • MySQL (3)
    • Desktop (3)
      • Linux (1)
      • Unix (2)
    • Mobile (2)
      • Android (2)
    • Web (13)
      • API (1)
      • Javascript (4)
      • PHP (4)
      • Product (2)
      • Python (1)
  • Tags

    Ad ADT Adword AJAX Android API balancing Binding Calling Class Column Configure Copy Curl Data Database Eclipse Error Gadget Google Hello ini ini_set Install Invite Javascript Late Linux Load Master Method MySQL Output PHP Playground Proxy Replication SeaMonkey Server Slave Static String Table Ubuntu upload_max_filesize

Get Solved

Pages

The Latest

  • How to use Event Delegation in jQuery to optimize User Interface
    Event Delegation and Event Bubbling are two important concepts in JavaScript. If […]

More

Thanks for dropping by! Feel free to join the discussion by leaving comments, and stay updated by subscribing to the RSS feed.
© 2011 Get Solved
Platform by PageLines