Tuesday, May 11, 2010
Sam's Club MS 150 Frisco to Fort Wort...
Thursday, March 25, 2010
New Ruby on Rails Setup on Windows XP
Ruby on Rails(2.3.5) Setup on Windows XP
Lets add MS SQL server
Open your SQL Server client tool and create a database called sqlserverapp
Add a user with SQL Server authentication called user with secret as password to the database you just created.
Create an ODBC link name sqlserverapp to connect to this database.
Then you have to edit your database configuration file to tell rails to use SQL Server and your new database.
Edit the database.yml file.
Change the section under development with the following :
development:
adapter: sqlserver
mode: odbc
dsn: sqlserverapp
username: user
password: secret
host: mycomputer
Note : replace mycomputer with the name of your instance of SQL Server (in most cases, locahost should do the job).
Please see Rails 2 and SQL Server 2008 on Windows made simple for more information on connecting to the MS Sequel Server.
Friday, March 19, 2010
84
Wednesday, February 24, 2010
Tuesday, February 23, 2010
ride for 2010-02-23

38°F Cloudy Wind: N at 15 mph Humidity: 55% Windchill: 32°F
Data from my ride.

Wednesday, January 13, 2010
All the way to 2k
Friday, September 04, 2009
I Fell Off My Bicycle.
My bike doesn’t seem too bad. The brakes a rubbing and I need to adjust my rear derailleur. It’s clicking when I pedal. I’m going to take it to the shop to have them look at it. Also get it tuned up since it’s been a few years since I’ve done that.
Here are some pictures.
Shortly after it happened
The next day.
Wednesday, August 26, 2009
creating PDF and fonts
ColdFusion - Creating PDFs and CSS
original code.
<cfoutput>
<cfdocument format="PDF" bookmark="yes">
<style>
<!---
td{border-bottom: 1px solid ##cccccc; font-size: 10pt;}
-->
</style>
<cfloop query="GetRemotes">
<cfdocumentsection name="#remoteLocationsMailingAddressRet.name#">
<table width="100%" border="0" align="center" cellpadding="1" cellspacing="1">
<tr valign="bottom">
<td>#remoteLocationsMailingAddressRet.name#</td>
</tr>
</table>
</cfdocumentsection>
</cfloop>
</cfdocument>
</cfoutput>
I noticed that when I commented out the <cfdocumentsection> tag the
CSS would be there.
So I moved my <style> inside the <cfdocumentsection> tag and it uses
the CSS. :-)
go figure.
so I now have
------------------------------------
<cfoutput>
<cfdocument format="PDF" bookmark="yes">
<cfloop query="GetRemotes">
<cfdocumentsection name="#remoteLocationsMailingAddressRet.name#">
<style>
<!---
td{border-bottom: 1px solid ##cccccc; font-size: 10pt;}
-->
</style>
<cfdocumentsection name="#remoteLocationsMailingAddressRet.name#">
<table width="100%" border="0" align="center" cellpadding="1" cellspacing="1">
<tr valign="bottom">
<td>#remoteLocationsMailingAddressRet.name#</td>
</tr>
</table>
</cfdocumentsection>
</cfloop>
</cfdocument>
</cfoutput>
Smashing!
Wednesday, July 08, 2009
Ben Forta - ORM - Rethinking ColdFusion Database Integration
Tuesday, July 07, 2009
Tuesday, June 23, 2009
spreadsheet support planned for ColdFusion Centaur.
Tuesday, May 05, 2009
Tuesday, April 07, 2009
Wednesday, February 18, 2009
The Official AMBER Alert for iPhone
Tuesday, February 17, 2009
Secure your ColdFusion application against SQL injection attacks
I'm rewriting a CF app and it's scary how vulnerable this app was. I wish tutorials would start off with security. I know it's not fun or sexy but it's needed.
Thursday, January 15, 2009
Tuesday, January 13, 2009
Cycling Weight Loss - bicycling.com
These cyclists each lost 100 pounds or more. Here are their stories--and advice on launching your own breakthrough season. FTW!
Monday, November 24, 2008
New Year, New You: Cycling Weight-Loss Stories Slide 1 : Bicycling Magazine.com
Read about it on Bicycling Magazine.com
Thursday, November 20, 2008
Google's AJAX Libraries API
http://yuiblog.com/blog/2008/11/19/yui-google/
googles info:
http://code.google.com/apis/ajaxlibs/documentation/
The AJAX Libraries API is a content distribution network and loading architecture for the most popular open source JavaScript libraries. By using the google.load() method, your application has high speed, globally available access to a growing list of the most popular JavaScript open source libraries.
They also host
- jQuery
- jQuery UI
- Prototype
- script_aculo_us
- MooTools
- Dojo
- SWFObjectNew!
Wednesday, October 29, 2008
Adobe - Developer Center : Using Ajax to retrieve data from ColdFusion
Adobe Platform Evangelist Adam Lehman demonstrates how easy it is to populate drop-down lists in a simple application with data from ColdFusion.