Tiplite

Main menu

Skip to content
  • CakePHP
  • Netbeans
  • System Administration
  • Ruby

Easy HTTP Authentication using CakePHP 1.2

01/12/2009

CakePHP 1.2 has HTTP basic authentication added to Security component which can be added to the controller using the following line in code in the following line of code var $components = array(‘Security’,); To use the HTTP basic authentication you … Continue reading →

Posted in CakePHP | Replies: 2

Unix/Linux shell in windows

15/10/2009

An introduction to cygwin Unix/Linux like shell for windows operating system Continue reading →

Posted in System Administration | Reply

Javascript Array.each

06/10/2009

A simple function that can be used to iterate an array in JavaScript is Array.each a very simple implementation for this function is: Array.prototype.each = function(callback){ for (var i = 0; i < this.length; i++){ callback(this[i]); } } This function … Continue reading →

Posted in Javascript | Replies: 1

JavaScript libraries I love most

06/10/2009

JavaScript libraries has contributed to the evolution of web and helped greatly to move web2 sites. Also it makes the development of user front end and improvement of user experience more easy. The most loved libraries on the web, ordered … Continue reading →

Posted in Javascript | Replies: 2

Javascript Array.indexOf

05/10/2009

A simple Array.indexOf implementation to be used in Internet Explorer (IE) Continue reading →

Posted in Javascript | Reply

Post navigation

Newer posts →
Google

Categories

  • CakePHP
  • Javascript
  • jQuery how to start
  • netbeans
  • PHP
  • Ruby
  • System Administration
Powered by WordPress and Foghorn