Jul
30
2009

I created a Facebook Fan Page today in hopes to create my first Facebook and Twitter application which is in the works. The idea of what my application will do is feed in a twitter feed to your Facebook page NOT your personal profile. There has been a few attempts but nothing yet that satisfies me. http://tinyurl.com/ZachSchneider
2 comments | tags: Facebook, Geek, Project, Twitter
Jul
27
2009
In order for your code to directly handle an exception, the tags in question must appear within a cftry block. It is a good idea to enclose an entire application page in a cftry block. You then follow the cftry block with cfcatch blocks, which respond to potential errors. When an exception occurs within the cftry block, processing is thrown to the cfcatch block for that type of exception.
Here is an outline for using cftry and cfcatch to handle errors:
<cftry>
Put your application code here ...
<cfcatch type="exception type1">
Add exception processing code here ...
</cfcatch>
<cfcatch type="exception type2">
Add exception processing code here ...
</cfcatch>
...
<cfcatch type="Any">
Add exception processing code appropriate for all other exceptions
here ...
</cfcatch>
</cftry>
no comments | tags: Code, ColdFusion, How to..., Web Dev, Web Development
Jul
17
2009
Are you a web developer like myself needing to test crossplatform and would really prefer do it all on 1 OS (not Windows) well I have the solution IEs4Linux
Type this in a Linux command terminal:
===================================================================
wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
tar zxvf ies4linux-latest.tar.gz
cd ies4linux-*
./ies4linux
===================================================================

no comments | tags: How to..., Linux, ubun, ubuntu, Web Development, Windows