Saturday, May 31, 2014

Top IT/Software companies founder persons

Top Indian IT companies founder  name

Infosys : N. R. Narayana Murthy, Nandan Nilekani, Kris Gopalakrishnan
TCS  : J. R. D. Tata, F. C. Kohli
Wipro : M.H. Premji
HCL Technologies : Arjun Malhotra, Shiv Nadar
Tech Mahindra : Anand Mahindra
iGate patni : Narendra Patni
Mphasis : Jerry Rao , Jeroen Tas
Syntel : Bharat Desai, Neerja Sethi
directi : Bhavin Turakhia

Top Global IT companies founder name

Google  : Larry Page , Sergey Brin
Apple Inc.  : Steve Jobs Steve Wozniak Ronald Wayne
Facebook : Mark Zuckerberg, Dustin Moskovitz, Eduardo Saverin, Andrew McCollum, Chris Hughes

Microsoft Corporation  : Bill Gates , Paul Allen
Oracle Corporation Founder : Larry Ellison, Bob Miner,Ed Oates
SAP AG : Hasso Plattner, Klaus Tschira, Claus Wellenreuther, Dietmar Hopp, Hans-Werner Hector
Symantec  : Gary Hendrix
CA Inc. : Russell Artzt, Charles Wang
Intuit : Thomas Proulx, Scott D. Cook
Adobe Systems  : John Warnock, Charles Geschke
VMware : Diane Greene, Scott Devine, Edward Wang, Mendel Rosenblum, Edouard Bugnion
CheckPoint Software Technologies  : Marius Nacht, Shlomo Kramer, Gil Shwed
EBay : Pierre Omidyar
amazon : Jeff Bezos
rackspace : Dirk Elmendorf, Pat Condon
Go Daddy : Bob Parsons
Zend Technologies Founders : Zeev Suraski , Andi Gutmans

Thursday, May 29, 2014

CAPTCHA - google recaptcha

Completely Automated Public Turing test to tell Computers and Humans Apart (CAPTCHA)


 - It is to verify and determine that the request send by human or not.



Google recaptcha

If you need to add captch in to your web application form most of the cases we need to add this captcha in contact us , feed back form

It is a safe, secure and easy way to integrate into your web form.

For that you need to signup for google recaptcha

https://www.google.com/recaptcha/admin#whyrecaptcha

After sign up you get public and private keys.

Below are the URL you may help out to integrate it into your application whether it is a php or .net application.

https://developers.google.com/recaptcha/

https://developers.google.com/recaptcha/docs/php

https://developers.google.com/recaptcha/docs/php

https://code.google.com/p/recaptcha/downloads/detail?name=recaptcha-php-1.11.zip&can=2&q=label%3Aphplib-Latest


404 page not found setting in codeigniter

If you have to set 404 page not found in your application and you are using php codeigniter  framework
you need to open application/config/routes.php  file and set the following setting

$route['404_override'] = 'not_found/index/';

In above statement not_found is the controller and index is the function in that controller.

-------------------------------------------------------------------

If you are not using any type of php framework or codeigniter , then you must have to create,configured and setup the page not found setting manually.

Create a file page_not_found.php for page not found option and save it.

Now, you have to put some setting lines into your .htaccess file
If this file is already present, then you have to modified it  and append following lines and save it.


RewriteEngine on
ErrorDocument 404 http://localhost/webapp/page_not_found.php