slayeroffice
colorschemer
www.meyerweb.com
snook
centerkey
behrx
Monday, February 13, 2006
useful tools
Cheet Sheets
cheet sheets for javascripts, css xhtml etc
http://www.petefreitag.com/item/455.cfm
MOZiE is a free Windows application that allows you to compare page rendering in Mozilla and Internet Explorer simultaneously.
http://www.zeit.ca/mozie/
IE Tab - Firefox Extension
https://addons.mozilla.org/extensions/moreinfo.php?application=firefox&id=1419
ColorZilla
Another firefox extension
http://www.petefreitag.com/item/228.cfm
The ACME Guide
This is the home of The ACME Guide, a comprehensive guide to building a development workstation using Apache, ColdFusion MX 7, MySQL and Eclipse.
cheet sheets for javascripts, css xhtml etc
http://www.petefreitag.com/item/455.cfm
MOZiE is a free Windows application that allows you to compare page rendering in Mozilla and Internet Explorer simultaneously.
http://www.zeit.ca/mozie/
IE Tab - Firefox Extension
https://addons.mozilla.org/extensions/moreinfo.php?application=firefox&id=1419
ColorZilla
Another firefox extension
http://www.petefreitag.com/item/228.cfm
The ACME Guide
This is the home of The ACME Guide, a comprehensive guide to building a development workstation using Apache, ColdFusion MX 7, MySQL and Eclipse.
coldfusion redirect
If you ever need to do a 301 redirect all you need is these 2 lines of Coldfusion code
<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="Location" value="http://www.kfc.com">
Note that the cfheader tag can be used to write the Coldfusion headers but needs to be the first thing on the page.
As a result its normally best to put this in the Application.cfm. file
What is Application.cfm? It’s a file which is processed by coldusion before every request for a Coldfusion page – its typically used for logging, or preventing access to pages – as well as session management. It must start with a capital A. It is not executed when requests are made for non Coldfusion pages so often you may decide to change a html site to a .cfm just so that you can make use of this functionality.</cfheader></cfheader>
<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="Location" value="http://www.kfc.com">
Note that the cfheader tag can be used to write the Coldfusion headers but needs to be the first thing on the page.
As a result its normally best to put this in the Application.cfm. file
What is Application.cfm? It’s a file which is processed by coldusion before every request for a Coldfusion page – its typically used for logging, or preventing access to pages – as well as session management. It must start with a capital A. It is not executed when requests are made for non Coldfusion pages so often you may decide to change a html site to a .cfm just so that you can make use of this functionality.</cfheader></cfheader>
New Blog
Instead of trying to find old emails and remember random peices of advice I have been given, I thought I would become all organised and enter everything interesting that I receive or learn into a blog!!
Subscribe to:
Posts (Atom)