Wednesday, December 19, 2007

CD is now on iTunes

Songs of Praise and Victory vol 3 can now be downloaded via iTunes. Just open your iTunes and search music for Sam Singer. Or you may use this link:
http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playListId=270084962

Friday, November 30, 2007

CD Release

My cd, Songs of Praise and Victory Vol 3, based on the poems of my great-grandmother, Cordelia Hawkins Gatewood, is now available! Here's the link. Shipment is through cdbaby.com.

Monday, November 12, 2007

New CD, Songs of Praise and Victory

My new "Songs of Praise and Victory Vol. 3" is due out in just a few days. You'll be able to purchase one for yourself, friends, or family through cdbaby.com. I'll be posting the url as soon as it becomes available. This cd sounds so good and I think the cover art is great. Jaime took the photos. My great-grandmother's words will change your life. Give it a try!
Since moving to Phenix City, we've also moved our church membership to Epworth United Methodist church here in PC. Though we miss everyone in Columbus, we're enjoying meeting new people in our community.

Monday, August 13, 2007

Twitter

I'm now signed up as a member of Twitter. Follow me on Twitter to the AIR Bus Tour at the Fox Theater on Tuesday!

Saturday, June 30, 2007

CFUnited Day 4


This is the 4th and final day. Good presentations so far this morning.
Jeff Trapper gives a very good presentation on using CF and Flex.
Nic Tunney's Introduction to OO with CF was ok. Lots if information to present in an hour.
I did the repeat thing and attended Hal Helms again. More OO and programming CFCs.
Coming up is Mark Drew and Advanced CFEclipse.
Lastly today will be Matt Woodward and OO Architecture Back to Front. I should learn much.

Plane leaves about 8. Should be at the airport 3 hours in advance. Plenty of time to read.

I took notes this morning the old-fashioned way.. with paper and pen.

Friday, June 29, 2007

CFUnited Day 3

It's already day 3. Last night attendees were entertained by Adobe at an outing held at the National Zoo Big Cat Pavilion. Lots of fun. The rains came and broke up the party early.

Apple iPhone is available today.

Session 1 CF8: Advanced AJAX Development by Rakshith N.

*In AJAX model, User interface talks to Javascript and Javascript then talks to the server, vice-versa.
* In CF8, there are UI Widgets, AJAX plumbing, and JSON Support.
* CF data types available in JSON format
* cfwindow, cftree, cfgrid
* JavaScript Object Notation (JSON), representation of data in Javascript, It is a native format in Javascript
* JSON is fat free XML. { books: [
{isbn:'0002000', title:'xyz'}
,{isbn:'000358', title: 'abc'}
]
* SerializeJSON() converts ColdFusion object to JSON data format
* DeserializeJSON() converts JSON into CF objects
* IsJSON()
* CFML to JSON type mapping for string, number array struct, query row format, and query column format.
* AJAX Plumbing in CF. tag works by fetching data for the region using BIND expessions. This binds to a cfm page.
* Only what is inside the cfdiv is submitted asynchronously
*Binds.
bind="cfc:bookData.getBookDetails({bookForm:isbn.value@change})"
Four types of binds. CFC, Javascript, URL, Plain
bind="javascrip:getBookDetails('{bookForm:isbn.value@change}')"
* Creates a JavaScript proxy for a CF component. Generates a proxy function for every remote function on the cfc.
var b = new jsbooks();
var details = b. get....
*cfajaxproxy has the following built=in functions: setHttpMethod, set AsyncMode, set SyncMode, setCallBackHandler,setErrorHandler,setQueryFormat,setReturnFormat,setForm
*ColdFusion.navigate(url,id,callback,errorHandler,httpMethod,formId)
*AjaxLink(url)
Refreshes the contents of window, not page.
*AjaxOnLoad(functionName) : Calls a JS function when markup is loaded, after all CF components are initialized
* ColdFusion.getElementValue(elementname,formname,attribute)
*Enable debugging for ajax then ?cfdebug appended to Logger url will produce debug window.
*AJAX Widgets. Demos a cool email app written with AJAX technology in CF8.

presentation and sample apps at http://www.rakshith.net/blog/

Test-Driven Development by Paul Kenney
* Testing is not usually comprehensive enough. Test are usually written last in the development process. Sometimes written by people not writing the code. Test are based on documentation that is usually out of date. Testing is not automated. One fix may cause other problems that go unseen.
*Test-Driven Development is a method where no code is written without test being written first.
* Test exhibited behavior of code
* Written by the developer who writes the code
* Provides a safety net that provides confidence in the current functionality and courage to refactor.
* Tests are written as pass/fail
* Failing tests make great to do lists.
* Refactoring. The process of changing changes to existing working code without changing its external behavior. Changing how it does it, not what it does.
* When to refactor? Duplication, Unclear intent, Code smell - comments, etc.
* cfcUnit is written for CF. There is Junit, Sunit, AsUnit, FlexUnit, and more...
* cfcUnit consists of Test, TestCase, TestSuite, Assert, TestFailure, etc.....
* Writing a Testcase. Extends "org.cfcunit.framework.TestCase. Contains methods, each of which is a single test. etc...
* Example:



* Demo....


http://www.pjk.us/paul/

CF8 and Microsoft Exchange and .NET Integration

CFExchange tags use WebDAV to connect to Exchange Server. Can connect over HTTP or HTTPS. Other tags are CFExchange Connection, CFExchangeMail, CFExchangeTask, CFExchangeCalendar, CFExchange,

Thursday, June 28, 2007

CFUnited Day 2


What's New in CF8 presented by R. Kumar
This becomes a long list list very nice improvements and additions. I can display a complete list in this space. Most of this has been presented by Ben Forta or others in previous presentations.
* You may now loop over an array or text file
* Interfaces are added to cfcs. Use the tag. The implementation is by component. All methods must be implemented and method signature must match.
* 20x performance improvement in cfc
* CFC can be duplicated. Creates a deep copy of component.
* OnMissingMethod callback to component.
* OnMissingTemplate (URI)
* Per Application Settings by mappings, custom tag paths
* Multi-Threading programming, new threads run asynchronous to the page, you spawn multiple threads. Pass data in thread-safe way as attribute (attribute scope)
* Inter-Thread Communication
* File I/O using . File associated functions for use inside .
*DB related enhancements include auto-generated key retrieval, savepoints with actions setsavepoint and rollback.
* gets tables in data source, table columns, etc.
* can be output to browser, console, or file
* CFObject/CreateObject also supports .NET classes
* manipulates zip/jar files
* Secure FTP support
* File of any size may be uploaded.
* Performance improvements: cfc creation- 20x

Building Secure CF Apps by Pete Freitag
* XXS + SQL injections is number one vulnerability
* Unchecked input is the number cause i.e. invalid email
* Server-side validation is best
* Uploading files can be very dangerous. Use "accept" attribute. This doesn't work!
* Upload to a directory outside of the web root. Always check the File Extension (cffile.serverFileExt. Check File Names as well.
* What's so bad about XSS? Stealing Cookies, Phishing.
*XMLFormat and HTMLEditFormat don't always work.
* Enable ScriptProtect(doesn't always work).
* Make Your own function. Escape: <> ' " () ; #
* Enforce Maximum String Length
* SQL injection. /news.cfm?id=8;DELETE+FROM+news
*Prevention that works is !
* Use in WHERE, SELECT, UPDATE, INSERT, DELETE
* Cross Site Request Forgery. How "samy", a MySpace user got 1M friends in 24 hours. *Whenever a MySpace user visited his profile, it executed a script.




Wednesday, June 27, 2007

CFUnited Day 1



I'm currently listening to Ben Forta and Tim Buntel's keynote address. A big crowd of probably 700+ people are joining us from D.C.. I the past there have been icicles hanging from the chandeliers. The room temp is great this morning. The mind cannot absorb what the butt cannot endure.

Ben is saying that even more new features will be introduced in this presentation.

One of the biggies is CFC creation speed. Now it is much faster! In fact, the overall speed of CF8 is much faster than CF7.

Matt Chotin is delivering the 2nd keynote that is focused on Flex 3.
* new css editor
* import skins into Flex Builder
* Enhanced Constraints Model
* Support for baseline alignment
* Advanced DataGrid
* Charting Enhancements
* New List and Data Effects
* Web Services Introspection
* Data Wizards for PHP, Jave, ASP.NET (ColdFusion was released in Flex 2)

Apollo has vanished in the thin AIR!
Code named product Apollo is now known AIR.
* Native OS drag and drop support
* Multi-windowed apps
* Local Database storage
* Persistent framework caching significantly reduces size of Flex applications. Apps can be as small as 50K!

Next Presentation is Dean Harmon

Benefits of PDF format
* Caputure, process, store, and share electronically
* Retain the layout of the original document
* Online of offine distribution
* Print it
* Encrypt it
* Permission restrictions
* Attach files
* Digital Signatures


is enhanced in CF8. It supports:
* conversion of all HTML and CFML tages to PDF content, with the following exceptions:
1.
2. Flash (swf)
3. Interactive tags like
4. JavaScript (AJAX)

tage used to:
* Manuipulates forms crated in Acrobat and LiveCycle
* Populate PDF forms with CF data
* Manipulate meta data
* Add watermarks
* Merge two documents together
* allows you to do server side printing of PDFs
* User running ColdFusion needs to have access to the prater
* CF Admin will show the printers available
* GetPrinterInfo() will get the capabilities of your printer so you can pass other attributes not supported by the tag.

Ray Camden Presenting Image Handling in CF8

Image is now a data type in CF8. IsImage() now exists.
Formats are JPG, GIF, TIFF, PNG, BMP
There is one tag () and about 50 functions!

Live Cycle Data Services (formally Flex Data Services)
It is now preconfigured by default in an integrated install when CF8 is installed. The express edition is free, but is limited to 1 cpu.
RPC
LCDS Messaging
* Publish and Subscribe
* Asynchronous communication
* Messages have a header and body
* ColdFusion can be a both a Producer and Consumer

Flex Data Management
* Manage Distributed Data in Flex applications (When data is changed, it is propergated to all running clients)
* Performance improvements include cfc creations, can return a CF query directly instead of creating an array of cfcs. Also, you can choose to use structures instead of cfcs to map to AS3 objects.
*Data management notification gateway added. (It is transactional in nature. CFC Assemblers include Fill, Get Sync, and Count. There is a wizard to write this code.)

Hal Helms and OO Programming with CF Components, MVC, and Inheritance
The opposite of a correct statement is a false statement. The opposite of a profound truth may well be another profound truth.
Object orientation encompasses and codifies many of the best practices of preOO programming.
In some cases, OO strengthens these best practices.



Saturday, June 02, 2007

MacBook on my wireless network

I got my new MacBook this week. This afternoon I installed CF8 beta and CFEclipse. No problem install. Runs amazingly fast! Love everything about this great machine. I also set up a wireless NetGear network. Another no problem install. I'm really enjoying computing from my Lay-z-boy!

Friday, May 18, 2007

Ben Forta and the Scorpio Tour

ColdFusion fans were entertained by a timeless performance by cfcoder Ben Forta. The Scorpio Tour marks the latest in a long line of usually bi-annual performances for the venerable coder. The highlights of his performance updated versions of old favorites as well as well-received new materials such as and . The event was held at the Atlanta Federal Reserve Bank. The acoustics of the hall were surprising good as Ben's voice projected well even to rear of the hall. Ben was introduced by fan club president Teddy Payne. The tour has appeared 23 times in the as 26 days, performing recently in New York and Boston. The tour is scheduled to end soon with the release of Scorpio expected the last week in June.

Saturday, April 14, 2007

Saturday, February 03, 2007

Saturday February 3, 2007

Sam III's four and a half month stay at Shepherd Center in Atlanta came to an end Friday. He's now at George's as he works to get strong enough to stay in his apartment at Johnston Mill Lofts in Columbus. Sam's blog site is http://samsinger3.blogspot.com/ . He's looking forward to a little down time after so many months of rehab.

Monday, January 22, 2007

Daddy Makes YouTube!

My Daddy has made YouTube! See his narration on the founding of Westville.
http://www.youtube.com/watch?v=LkvKcnn6YJE

Thursday, January 11, 2007

Thursday, January 11

I'd like to thank you all for the prayers and comments that have been received over the past months. The tremendous support that the family has had throughout Sam III's recovery has been so valuable. We have all been uplifted by the efforts you have made in our behalf. Sam III is progressing and he will be back in Columbus in February.

Sam III now has his own blog! I now have my own blog back! Check out Sam's new blog at http://samsinger3.blogspot.com/ .

Wednesday, January 10, 2007

Wednesday, Jan. 10th

Hey guys, hope everyone is sticking to their New Years' resolutions. I hear bad habits are hard to kick. Anyways, Sam's coming home soon! He's had a little bit of a down week, sometimes you just get into a funk. No worries though, we'll all laugh again and cry again. We've had Ralph Frank painting Ctudio Sea this week and it is looking nice. For those of you guys who may not know Ralph, he's a local artist who's quite a spirit. You just turn him loose and you've got yourself a nice work of art. The plumbers finished the piping for Sam's bathroom and we'll have the tile guys in soon. Trying to get everything done by the 2nd. I hope everyone is doing well, sorry I haven't talked with some of you lately; just been a little busy. Take care and we'll talk to you soon.
George

Sunday, January 07, 2007

January, 7th, 2007

HAPPY NEW YEAR TO EVERYONE! I hope everyone had a fun and safe New Years. We had to cancel the New Year's party at the Ctudio Sea and came up to Shepherd for their New Year's party with Sam. Lan, Bobby, Clay, Gabe, Dustin, and Mailman and Tiffany came to hang out for the pizza party at Shepherd and we all had a great time. They had wheelchair limbo and a pinnate ball that dropped to symbolize the ball dropping for the new year. Sam came in 3rd in the wheelchair limbo, he sort of had an unfair advantage since his chair can recline all the way backwards. All in all we had a great New Years. This week I've been in atl with Sam for day program and he continues to do really well. He works so hard and you can tell it's paying off. His projected discharge date from day program is February 2nd, and he'll be coming home for good after that! I know he can't wait to see you guys that he hasn't had a chance to see since he first arrived here way back in September. What an improvement its been since then. Part of me feels like Sam doesn't want to come back, even though I know he really does, b/c he has had an impact on so many people here. It's seems like anywhere we go at Shepherd everyone knows him. His great personality leaves an impression on anyone he comes into contact with. Sorry it's been a while since the last post but we're still here. Take care everybody and we'll see you soon.
George