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

Sunday, September 9, 2012

IEFix - How to Fix Image Size in IE - Solved

Here is a simple IE6 and above Update from Microsoft:

Simply Copy & Paste code below:

img { -ms-interpolation-mode: bicubic; }

Charming, It Works!

Our New Creation : Taxi in San Jose, CA

Wednesday, August 29, 2012

Cross Browser Rounded Corner CSS Example - Border Radius

Cross Browser Rounded Corner CSS - Border Radius References:

Chrome : -webkit-border-radius:10px;
Firefox  : -moz-border-radius:10px;
Opera   : -o-border-radius:10px    or also you can use as -opera-border-radius
Safari    : -khtml-border-radius:10px;

IE 9.0+  : border-radius:10px;  (Forgive if it does not work - That Shit I bet won't Work)

You can also use other parameters in combination with 10px 0 10px 10px;


Our Latest Deployments:
Taxi In San Jose | Yellow Cab Airport Taxi

Thursday, August 2, 2012

Countries Drop Down List - 242 Countries Updated

You should be a "Lazy Developer" to visit this page (Do Not Take Me Wrong,  Me too ;-))

Here is list of upto date 242 Countries Drop Down List for your References.




Now You know How to copy this code??? (Hints) 1. View Source - Scroll down to <select> tag and copy entire Tag 2. Google Chrome Users --> Right Click on Drop Down --> Inspect Element --> (Tag is selected) Right Click again on Tag --> Copy as HTML 3. And 'am sure Firefox users are no dumb. Most intellectuals

~ Happy Pastings ~

Courtesy - Taxi Website Designer.com

Wednesday, August 1, 2012

HTML URL to make call from iphone,blackberry,android

All smartphone supports IETF RFC 3966 standards.  This includes iPhone, iPad and iPod as well as host of other smartphones like BlackBerry, Android, Nokia etc.

To Place A Call Link:

<a href="tel:555-666-7777">Call Now : 555-666-7777



Calling HTML URL Example for iPhone, iPad, Android, BlackBerry

Intiating


< a href="tel:555-666-7777">555-666-7777< /a>

Web Friendly Free Fonts

Here are few web friendly Font for you






Tuesday, July 31, 2012

Source Script Formatting in Dreamweaver

Source Script Formatting in Dreamweaver is very simple.



Dreamweaver Menu --> Commands --> Apply Source Formatting

There you go.  Cool Isn't It???

You can also format based on section or selection.  It works. Try IT.

Tuesday, July 3, 2012

Honestly : Top 10 SEO Software Reviews

I personally have used 3 suites - Web SEO 3.x, SEO Suite 4.x, IBP 10 (All Commercial) and SEO Studio (DEMO).  Once you buy them and use it for certain period of time - you feel that these software hangs or kill themselves.  You feel the results are not accurate need an updated version and not regular online updates.

Believe me we spent $1600 behind these suites.  But always the result is same.  These suites are made to commit suicide.  They kill themselves.  No use but to generate some reports just to keep your customer happy about their website rankings.

SEO Suites from various quarter has many advantages and disadvantages too.

Advantages:

  • Demo works better then paid version.
  • Keyword Generator
  • Website Ranking
  • Link Checkers
  • Website Link / Ranking Report Generators
... are very few

Disadvantages:
SEO Software disadvantages are many.  Most of these suites offers Auto Submit to Search Engine options - these work only for few occasions.  later the software automatically (programatically) turns-off this tool.

BCoz, very simple, they dooo offer Search Engine Submission tools as independent tool . When you contact customer support.  They tell you that everything is fine and suggest you to buy more improved this Submission tool for $???.00.
  • Auto Submit : only for few occasions, later submission bounces back
  • Keyword Analysis is pretty bad at times.  (Instead use Google Adword Keyword tools)
  • Updates are provided only for first 5-6 months. Later your SEO Suite will become dumb and no more updates
  • Every SEO suites life span for 1 year, (but they kill it within 6 months, programatically). Later you will have to go for updates or new version
  • Competitor Analysis is pretty ordinary.    
  • Reports are full of LIES
  • HTML Tag analysis are as old as W3C Standards.  Unsatisfied Bride.
Top 10 Commercial SEO Suites
Try this: Microsoft SEO Toolkit (Free)  - not because it is free.  It is from the stable of Microsoft for all. 

Taxi Cab Fare Calculator / Estimator




Here is the one Taxi Cab Fare Calculator / Estimator we recently developed.

We have considered many parameter to satisfy one of our client in Fort Worth, TX.

Which included

  • Flag Drop
  • Additional Miles
  • Fuel Surcharge of $2 
  • Airport Entry Fee (only @ DFW / Love Field) 
  • Additional Passenger $2 Extra 
All embedded into one in the background.  This fare calculator has been most accurate to this date we've customized.



CSS Rounded Cornor Generator

Online Interactive CSS Rounded Corner  Generator page.  Very intresting.

Check This : CSS Round Generator

Monday, April 30, 2012

Google Penguin Web Spam Algorithm Update Feedback Form

If your website is affected by Google's new webspam update "Penguin" algorithm. Here is a feedback form to send request to remove from webspam list.



Webspam Removal Request Form


Friday, April 27, 2012

SEO Guide - Periodical Table

Search Engine Optimization (SEO) is an rigorous process where patience is must along with updation of Skill set.

Here is the Periodical Table that explains roadmap to successful SEO with introduction of Google Panda guidelines from Google which eliminates spam content, websites and malpractices of seo masters in jamming keywords and tags.



---------------------------
SEO Monster - Seo Monster Solutions

Thursday, April 26, 2012

Infographic: The Google Panda Updates

One year ago, Google launched its “Panda Update” designed to filter low quality or “thin” content from its top search results.

Below Link has, infographic produced in conjunction with BlueGlass covers how Panda works, what it impacted and the various updates from Panda 1.0 through Panda 3.2 that have happened along the way


Google Panda Update
---------------------------------------- SEO Superstar : SEO Monster Solutions

Tuesday, April 17, 2012

Monday, April 16, 2012

Website for Visually Impaired - Web Standards

I just stumbled upon the idea of developing website for visually impaired people with friendly contents which read-out text aloud.

Visually Impaired Website Development Standards




Text to Speach jQuery Plugin



~ jQuery Plugin
~ Web based TTS plugin References
~ JTTS - jQquery Text to Speach


Text to Speach plugin for Browser


Firefox Browser Plugin


There are other tons of Ideas on Internet to help these unfortunate people. When I get a Chance surely, I would develop a website for them, Hopefully.

Monday, April 9, 2012

Hide PHP E_DEPRECATED Error Message in PHP 5.3.0

With PHP 5.3 the error level E_DEPRECATED was introduced that shows messages concerning deprecated PHP methods and behaviours.

To avoid displaying these messages on productive systems, the error_reporting (e.g. used in index_ts.php) should be extended like this:

error_reporting (E_ALL ^ E_NOTICE ^ E_DEPRECATED);

Thursday, April 5, 2012

Country IP Address to Block A-Z List

This is the best compiled list of countries IP Address and Subnet Masks to block a country network in .HTACCESS

List of IP Addresses by Countries


  • Block all bloody Spammers Today from China / Russia / Thiwan etc.

  • Block Bastard Baidu.com (Promotes Denial of service by hitting your website all the time)

  • Block Yandex.com

  • Block Spammers and Non-Descriptive Indexers




Taxi & Limousine Website Designer in USA

Monday, April 2, 2012

PHP Next Day Function example

Hi here is the best working example of PHP Very Next Day Function...

date('d-M-Y',strtotime("+1 day" . $dt12))

next day, tommorrow date, next date

Saturday, March 31, 2012

GPS Device Tracking Scripts

Here are few links that explains how to track GPS Devices... its little difficult...

still workable solutions...

PHP Script

WEll Explained Javascript with Google Map integrations

OpenGTS from Sourceforge

Friday, March 9, 2012

If you don't remember the username of your Google Analytics

if you don't remember the username of your Google Analytics

here is the link that help you to find your login gmail id --- with following fields:

Account ID *
UA_XXXXX

Website URL

Contact E-Mail * (required to be an associated gmail address)

Fill the form... their you got it...

Cheers...

Wednesday, March 7, 2012

massage-pool.ru/mysave/index.php -- how to remove

Here is this .HTACCESS file modified and tries to redirect to this domain which probably does not exist.

This is a Hijacker javascript program that modifies your .HTACCESS file and put following script into it... when tried to open the website, this script redirects to

http://massage-pool.ru/mysave/index.php --- URL

Here is how to find and remove it...


RewriteRule ^(.*)$ http://massage-pool.ru/mysave/index.php [R=301,L]

RewriteRule ^(.*)$ http://massage-pool.ru/mysave/index.php [R=301,L]

ErrorDocument 400 http://massage-pool.ru/mysave/index.php
ErrorDocument 401 http://massage-pool.ru/mysave/index.php
ErrorDocument 403 http://massage-pool.ru/mysave/index.php
ErrorDocument 404 http://massage-pool.ru/mysave/index.php
ErrorDocument 500 http://massage-pool.ru/mysave/index.php



And rename links appropriate to your domain name as :

ErrorDocument 500 http://your-domain-name/500.php


Hope that helps ya...

Friday, March 2, 2012

Domain Who Is with Privacy Information




This one is a darling. I was used to search for privacy information of domain holders.

Here is this website strips all info from privacy protected domains and the owner infos.


Cheers.

Who Is XY.com

Friday, February 17, 2012

Resolve JQuery and MooTools Conflict

Resolve JQuery and MooTools Conflict

Guys this one thing bogged me down when I was having conflict between MooTools and jQuery...

here is the simple solution.


(function($){

// example starts here
$(document).ready(function(){
$("#qform").validate();
});
// example ends here

})(jQuery);


.... and it works charmingly

content-wide advt