ORM on Railo
Gert (of Railo) has just tweeted that if you ping them via their Contact form they'll give you access to the pre-release group.
This is a good chance to test your CF9 apps against Railo implementation or just to give ORM a whirl
Gert (of Railo) has just tweeted that if you ping them via their Contact form they'll give you access to the pre-release group.
This is a good chance to test your CF9 apps against Railo implementation or just to give ORM a whirl
I needed to change the case of 2 files recently which when it came to committing with Git did not take. It seems since version 1.5.6 you can set ignorecase = "true" which seems to be the default.
To change this setting go to your project and edit the .git/config and set ignorecase = "false" or simply remove it
Two little boys, ages 8 and 10, were excessively mischievous. They were always getting into trouble and their parents knew all about it. If any mischief occurred in their town, the two boys were probably involved.
The boys' mother heard that a preacher in town had been successful in disciplining children, so she asked if he would speak with her boys.

http://progit.org/ is a website for the Pro Git book, written by Scott Chacon. Whats great is that you can read the full contents online (like the SVN book) so it acts as a great Git resource to have. Covering everything from a history of Git, to getting started, the Protocols, distributed workflows, and event migrating from SVN to Git. If you haven't looked at Git yet or just starting then bookmark it now.
You can of course support the book and buy a print copy copy for your bookshelf.
Chatting with AJ Mercer this morning (his evening) on getting redirect() to work in the Application.cfc for Framework One (FW/1). The code being he was using looked perfectly fine:
As I said this looked fine and works in the controllers but in the Application.cfc we just saw "&fw1pk=[some number]" appended to the URL. The fix was quite simple. The variable/structure RC is set as a shortcut to the Request.Context for the controllers but in the Application.cfc you need to reference Request.Context directly. The meant the above code changed to:
and all worked fine.
As a side note the fix for this came from it being such a simple framework to hack in to and see whats happening over others with multiple core files and components. Recently my work ethics has changed a lot and in its place 2 components now stand, convention over configuration and simplicity both of which FW/1 fits the bill. So if you haven't spent 30 minutes looking at it do so and also check out the Google group at http://groups.google.com/group/framework-one
Go to google.com. Put in "i want a computer that works" and hit "I'm feeling lucky
Its probably really old but it made me laugh. I found it via the vid below
via TUAW
I was testing a custom 404 page this morning on Chrome when instead of seeing my page I got the following
You can turn it off on YOUR computer but the problem is that you can't do it for your users. This means that if you use your 404 pages to try and re-direct your users to the right link or even revenue via ads then you loose out! It would be nice if you can set a HTTP header or something along these lines to tell Google to not be clever but till now
To turn this off on the Mac go to Chrome > Preferences > Under the Hood and deselect "Show suggestions for navigation errors".
For other OS instructions check out http://www.google.com/support/chrome/bin/answer.py?answer=95671&hl=en
A 5-year-old boy went to visit his grandmother one day. Playing with his toys in her bedroom while grandma was dusting, he looked up and said, 'Grandma, how come you don't have a boyfriend now that Grandpa went to heaven?'
Grandma replied, 'Honey, my TV is my boyfriend. I can sit in my bedroom and watch it all day long. The religious programs make me feel good and the comedies make me laugh. I'm happy with my TV as my boyfriend.'
Apache uses .htaccess files as a way to make configuration changes on a per-directory (and subdirectories) basis. They are a powerful tool when it comes to moving folders of changed files or in my case domain name rewriting.
Currently I am using a short domain name (prsos.co.uk) as a redirect to a specific page on the full domain name petrescuesos.co.uk. In the past I've even used ColdFusion to do by putting something along the lines in my Application.cfm.
This still gives the browser/spider the correct http header but why waste cpu styles on even doing this when the web-server can handle it natively. Below is the Apache .htaccess I've just put in place.