admin
This user hasn't shared any biographical information
Posts by admin
Back to my roots
May 18th
I recently created a flyer/poster design for my synagogue which gave me an opportunity to refresh my old graphic design skills. It’s not much, and since this was a non-profit I did it fairly quickly and used a business card design I found on adobe as the basis for the design. So really all I did was layout some typography, but it was fun nonetheless!
It was well received so I’m kind of impressed with it. I have done several of these flyers and posters for my Temple so far and it’s going pretty good.
On the other hand however, I have tried to help on the temple web site, but they got that locked down pretty well. I would love to give that thing an overhaul though.
Date string comparison in Coldfusion
May 16th
I discovered the other day an interesting tid-bit in cf 8 when comparing two date strings that were set as the following:
<cfset date1 = '5/19/2010' /> <cfset date2 = '19/5/2010' /> <cfif date1 eq date2>the same<cfelse>different</cfif>
When doing so the strings are considered equal. I gather this is because it translates both strings as dates automatically but one is in d/m/yyyy format and the other is m/d/yyyyy format. This was troublesome for me since I was comparing two dates that come from a possible user input, entering them into a text field of a form as an alternative to using the date picker.
DateCompare() results the same. In order to solve my issue without creating a brand new date using createDate(), I was able to use the compare() function as in the following:
<cfif compare(date1,date2) eq 0>the same<cfelse>different</cfif>
Strange thing about cf but not really a bug.
Loading images as they become available
Feb 6th
Currently working on a project that required me to create an image upload and processing factory. Basically, it allows you to upload media (photos and video) and then processes media, encodes video, resize images etc.
The problem: After uploading a batch of images, the user is brought to a page where they may name each photo they just uploaded and add descriptions. However, since we allow them to upload many photos at once, the images are not available right away. So they will see a default placeholder image until the new oneĀ is availble. When the new image is loaded, we use javascript to change the image on the page, without reloading.
The solution: a little javascript, a little jQuery.
More >
Smurf You! launches to brighten up the week.
Nov 19th
Update: I let my domain expire. It was a fun expieriment, but time for more important things.
Been a long couple weeks for me and several others as we are dealing with some malicious site activity at work. However, Smurf You! is now live and I am very happy with the results.
Smurf You! is a micro blogging application that allows you to post your status to Twitter through SMS and all kinds of cool gadgets, some still in development. Using the open source micro-blogging service, SatusNet, and a javascript written by Adrian Speyer, you can send status updates to your friends and family and translate those into smurf-talk using the translate function.
Just having a bit of fun with it, but eventually I can step through my experience using statusnet and implementing it in a blog series to come.
The new www.ORLive.com has launched
Jun 17th
June 1 the company I work for, ORLive, Inc. launched a total site redesign. I played a major role in developing this redesign and to architect the back end. I worked with one other developer and one designer and outsourced about 10-15% of the work to other vendors.
Although the working conditions for this project were not ideal and the time line was shorter than we could have wanted, this was probably one of those projects where, if asked in an interview what my greatest challenge and/or accomplishment was…. this would be it.
Three months total to get a whole new back end in a Content Management System with limited documentation. I am still surprised we did it. Granted it launched minus some key features we intended to make, it was still a success. The design has flaws we are working out. Navigation is a problem. Countless other things need to happen but www.orlive.com is here and it launched June 1 as planned.
Let me know what you think?
Google Wave Is Coming
Jun 14th
If you are looking for the new wave of social networking, watch this video from Google I/O 2009 conference. It shows a sneak peak at the new innovative communication tool. It will be open source and from the looks it can open up a huge role of possibilities. Very cool stuff.
http://www.youtube.com/watch?v=v_UyVmITiYQ
