Similar Posts
links for 2008-03-18
ByLuis
-
There are several PHP scripts and classes to process PayPal payments using their native IPN (Internet payment notification) feature. Because the whole process is based on the data you need to send via a web form to the PayPal payment processor these scrip
links for 2006-06-13
ByLuis
-
Take Gmail. I click on a thread header, and the interface requests the entire thread—asynchronously, of course. Suppose Gmail is extremely busy and takes a while to handle my request—call it 10 seconds. Theoretically, I could now continue to interact(tags: ajax)
-
On the highly competitive Google AdWords pay per click (PPC) search engine, it’s now more important than ever to ensure that your PPC campaigns are optimized to their utmost potential. All of us want to achieve maximum return on investment (ROI) for the k
-
El próximo mes digg dejará de ser geek. El modelo menéame se revaloriza
-
Tras varias semanas de bloqueo con la connivencia de la compañÃa, el buscador Google es de nuevo accesible desde China, según Reporteros sin Fronteras (RSF). “El desbloqueo de Google tiende a confirmar la teorÃa de que la censura fue establecida por e
links for 2007-12-03
ByLuis
-
Celtic Kane, lleva ya 2 años haciendo tests de velocidad a los principales navegadores en cuanto a Javascript se refiere. Debido a la aparición de Safari para Windows y el nuevo Firefox 3.0, se ha visto obligado a realizar el test de nuevo, obteniendo u
links for 2007-10-06
ByLuis
-
Una lista con los peores errores empresariales en Internet, D’oh! The Biggest Internet Mistakes Ever, que como todas estas listas puede ser muy subjetiva y estar abierta a múltiples matices…
links for 2008-02-13
ByLuis
-
photoshop listsLists have been around for a long while and are a hot topic today. I’ve even compiled some myself for my Photoshop Roadmap blog. They are perfect candidates for massive and steady traffic, and they are an interesting, if not fun, reading
-
Let’s build a simple form with 2 fields: email address, and password. We want to focus on client side validation, so we will add a second password field to compare against and a password strength field. Password strength is becoming more and more popula
Redirigir iPhone, Blackberry y Palm desde .htaccess
ByLuis
Sencillo truco que nos puede ayudar a redireccionar nuestra web a la versión móvil cuando nos visite un usuario desde un iPhone, una Blackberry o una Palm
RewriteCond %{HTTP_USER_AGENT} ^.*iPhone.*$
RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]
RewriteCond %{HTTP_USER_AGENT} ^.*BlackBerry.*$
RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]
RewriteCond %{HTTP_USER_AGENT} ^.*Palm.*$
RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]
Redirect iPhone, Blackberry, & Palm Requests With .htaccess
Vía / @jlantunez