Search This Blog

Sunday, December 30, 2012

User Agent XML List - Mobile Smart Phone Browser Headers

Hey Guys,

Here is the List of Smart Phone and Mobile User Agent XML Mozilla Firefox User Agent Switcher has over 200 Headers.

Updated on Oct-2012 even has iPhone 5.0 Headers of various browsers.




This will help you in testing mobile based website applications on Mozilla Firefox.

Cheers
--------------------------------------------------------------------------
Our Latest Creation - Checkout

Saturday, December 29, 2012

How to Enable cURL in PHP?

Uncomment --> ;extension=php_curl.dll in c:\xampp\php\php.ini configuration file.

Restart Web Services in Xampp Control Panel.

Happy cURLing :-D
----------------------------------------------
Our Latest Creation -- Los Gatos Taxi Yellow Cab

Thursday, November 8, 2012

iPhone App SDK for Windows in Visual Studio

Find iPhone Native App Development / Build Environment for Visual Studio on Windows.

This is not Web App Development Kit but iPhone NATIVE APP Enviroment Kit for Visual Studio.

Evaluation Download


Sony Bravia Smart TV Apps API SDK Download

Sony Smart TV SDK & Development Tools

Find Tools & Tips Here for Sony Bravia Smart TV Apps Development tools in conjension with Google TV API SDK for Eclipse IDE.



Download Here


LG Smart TV SDK 2.2.0 Win/Mac/Linux Installer

LG Smart TV SDK is a tool that provides developers with LG IDE for web application development, emulator for testing Web/Flash application, and related documents. Developers can create contents for LG Smart TV easily using this SDK.

SDK Last Updated on 8th Oct, 2012.

LG Smart TV SDK Download




Samsung Smart TV SDK 4.0 Device Specifications



Find Samsung Smart TV SDK 4.0 Device Specifications and decimated version comparisons.

Smart TV SDK Specifications


Samsung Smart TV API SDK 4.0 for Eclipse IDE 2012

Samsung Smart TV team has released new version of SDK 4.0 Beta for Eclipse IDE on 1st Oct, 2012.

The Smart TV Eclipse IDE has been updated with a Visual Editor and debugging features. The SDK 4.0 Beta is the first release for the 2013 platform.

However, since it is a beta version, some functions may be unstable.

Download Samsung Smart TV SDK Now



■ Main Features in SDK 4.0 Beta - Microsoft Smooth Streaming support - Additional Eclipse Plugin Features: Visual Editor - ATT (Automatic Test Tool) : User can record and playback input events for testing.

■ Updated Features for 2013 Platform - Smart Interaction: Gesture events have been added. - Apps Framework - App Engine / WebKit - UniPlayer - SEF (Service Extension Framework) - Convergence Framework - OCI (Open Convergence Interface) - MPEG Dash - AllShare - In-App Ads

■ Pre-setting requirements before installing SDK 4.0 Beta [Install DirectX for both IDEs] - DirectX End-User Runtime Web Installer Download URL: http://www.microsoft.com/download/en/details.aspx?id=35

[For Eclipse Install] Please run Eclipse as 'Run as Administrator'. Samsung SMART TV SDK Eclipse plugin requires Java Standard Edition(Java SE) version 1.6 or higher. - Install Java Runtime Environment (JRE): http://www.oracle.com/technetwork/java/javase/downloads/index.html

[For HTML5 audio/video development] QuickTime is required for HTML5 audio and video support: http://www.apple.com/quicktime/download/

■ SDK Requirements [ Hardware Requirements ] - Processor : Dual Core 1.5GHz / Single Core 3GHz or higher - RAM : 1 GB or higher - OS (32bit) : Windows XP Service Pack 2 or higher, Windows 7 - Screen resolution : 1280 x 1024 or higher - HDD : 5GB or higher

[ Software Requirements ] - .NET Framework 2.0 - Visual C++ Redistributable Package 2005, 2010

- DirectX End-User Runtime DirectX End-User Runtime Web Installer Download URL : http://www.microsoft.com/download/en/details.aspx?id=35

- Java Standard Edition(Java SE) 1.6 or higher Install Java Runtime Environment (JRE) : http://www.oracle.com/technetwork/java/javase/downloads/index.html

Friday, October 26, 2012

jQuery Script Generator as you type

Sorry the example you will have to find in 3rd party page Source.

Find Source Here

Monday, October 22, 2012

PHP : Array to MySQL Table

I knew there has to be some way to simplify whole big process of INSERTing FORM DATA into SQL Table in less time.

Here is How?

1. Collect all form data into an array
    $flds = $_POST;
2. Check Every form data has been collected in ARRAY
print_r($flds);
If things are fine...
3. There is one more things that is to remove "submit" button field
Count Total # of Arrays
$carray = count($flds);
4. Remove "Submit" Array:
array_splice($flds,$carray);
5. If you want to add few fields with default values -- the put them in form HIDDEN FIELDS or Try this to add MANUALLY:
$flds["new_field"] = "new_field_value";
5. Write a Function to extract values from array and insert into MySQL Table
 function mysql_insert_array($table, $data) { 
            foreach ($data as $field=>$value) { 
            $fields[] = '`' . $field . '`';  
            $values[] = "'" . mysql_real_escape_string($value) . "'"; } 
         
            $field_list = join(',', $fields); 
            $value_list = join(', ', $values); 
            
            $query = mysql_query("INSERT INTO `" . $table . "` (" . $field_list . ") VALUES (" . $value_list . ")") or die('Error in Inserting from ARRAY : ' . mysql_error()); 
   return $query; 
   }
6. FINAL NAIL to Good Old Frame for "Wall of Fame" :
     mysql_insert_array("tablename",$flds);
Note: This function can be used without hesitation anywhere, where there is no 2nd table or cross table data storage. Copy code BINDAAS-ly...

Wow!!!! That's Called Music...

It is shameful, even after 8 years into PHP. Never used it. Although the concept was there at cornor of my mind for very longtime (about 5 years) --> That $_POST is an ARRAY ITSELF.

Finally, I worked my way out today for my client Yellow Cab Airport Taxi

Hope you like it...


Saturday, October 20, 2012

PHP Checkbox values to ARRAY and to UL LI list

I've been trying lately to store selected checkbox values to an Array and show them in UL and LI lists.

Here is how???

Sedan
Stretch
SUV
Coach Bus
Classic Stretch
Hummer
Party Limo
Classic Stretch
Passenger Van
SUV Stretch
Airport Stretch

if(isset($_POST["csubmit"])){ print_r($_POST['fleet']); $arr = $_POST['fleet']; echo ''; }

PHP Assign Checkbox Values to Array and to a Standard Variable

Oh Boy! I've banged my head, kicked mouse - cursed unfriendliness of these coding syntax and finally found a way.

What about it???

--- I Have 10 Checkboxes
--- Where only selected Checkbox values need to stored into an ARRAY
Once Checkbox values stored into an Array
--- Assign those values to a Standard PHP Variable

Here is HOW for your references:


Sedan
Stretch
SUV
Coach Bus
Classic Stretch
Hummer
Party Limo
Classic Stretch
Passenger Van
SUV Stretch
Airport Stretch

Wow! That's Simple isn't it??? Yeh, You Bet... ----------------------------------------------------- Bay Area Taxi

Monday, October 15, 2012

Review Soda PDF 3D Reader - Do Not Download

do not install this software

My suggestion : DO NOT INSTALL -- Soda PDF 3D Reader.

I couldn't believe my self that, Soda PDF 3D Reader --> consumed 23 GB installation data space in my c:\Documents and Settings\user\Application Data\PDF Software\

All the time I was wondering What is filling up my C: Drive.

I don't know, whether this people sitting in my c: drive or using my space in "cloud".

My suggestion is NOT TO INSTALL.  Beware of them.

nGinX - New Light Weight Web Server

nginx light weight web server

nGinX - pronounced as Engine-X, a new kid on the block of Web Servers, also being touted as "Lightest" Weight Web Server of its kind currently available for download for free.

About nGinX
nginx [engine x] is an HTTP and reverse proxy server, as well as a mail proxy server, written by Igor Sysoev. For a long time, it has been running on many heavily loaded Russian sites including Yandex, Mail.Ru, VKontakte, and Rambler. According to Netcraft nginx served or proxied 11.48% busiest sites in August 2012. Here are some of the success stories: Netflix, Wordpress.com, FastMail.FM.


  • Easy, flexible and logical configuration.
  • Ability to reconfigure and upgrade NGINX instances on-the-fly, without dropping user requests.
  • Application request routing via FastCGI, uwsgi or SCGI protocols; NGINX can also serve static content directly from storage for additional performance optimization.
  • The only software tested that was capable of reliably handling over 10,000 request per second of live traffic to WordPress applications from a single server.
  • NGINX’s memory and CPU footprints are minimal, and predictable. After switching to NGINX the CPU usage on the load balancing servers dropped three times.
  • Can handle over 10,000 simultaneous IMAP, POP, Web,SSL & SMTP connections with a basic Configuration




Taxi Website Designer

Monday, October 8, 2012

Google MAP API : Auto Complete Example

Google Map API V3 - Auto Complete Examples

Many a times you have to provide a City Name Auto Complete tools / Input Textbox to avoid of user typing their city name mis-spelled.

Here is how:
Auto Complete : Example

Our new Fare Calculator for A Hospital Transportation - The Best Fare Calculator

Saturday, October 6, 2012

Google MAP API V3 - Detect Geo Location based on IP Address

Using Google MAP API V3 -- Detect Geo Location Based on visitor's IP Address.

Example : Google MAP V3 Link  --- View Source Code



-------------------------------------------
Our New Website : http://www.taxiinsanjose.com

content-wide advt