By Jeff on April 14, 2009
While most people may think that you can only develop Facebook apps in PHP, they would be wrong. You can actually do it all in Flash or even ColdFusion. Adobe recently announced the work they have been doing with Facebook to enable Flash to work directly with FB:
http://www.adobe.com/devnet/facebook/Â
This is great news for the Flash community [...]
Posted in ActionScript, ActionScript 3, Advertising, ColdFusion, Facebook Development, Social | Tagged FaceBook, Flash, Social |
By Jeff on January 22, 2009
This little snippet of code will help you post entries to your Tumblr blog using the Tumblr API and ColdFusion. Enjoy!
<cfhttp method=”Post” url=”http://www.tumblr.com/api/write” timeout=”200″>
<cfhttpparam type=”Formfield”
value=”youreloginemailaddressgoeshere”
name=”email”>
<cfhttpparam type=”Formfield”
value=”yourpasswordgoeshere”
name=”password”>
<cfhttpparam type=”Formfield”
value=”regular”
name=”type”>
<cfhttpparam type=”Formfield”
value=”thenameofyourtumblrbloggoeshere.tumblr.com”
name=”group”>
<cfhttpparam type=”Formfield”
value=”thisisthetitleofyourpost”
name=”title”>
<cfhttpparam type=”Formfield”
value=”yourbodycopygoeshereforthepost”
name=”body”>
<cfhttpparam type=”Formfield”
value=”from riajournal.com”
name=”generator”>
</cfhttp>
Find out more about the Tumblr API here:
http://www.tumblr.com/docs/apiÂ
Posted in ColdFusion, Tumblr | Tagged Social, Tumblr |
By Jeff on November 14, 2008
I have a big ColdFusion 8 tag poster to give away. I will randomly select a name from the comments on this post and send you the poster.
It is the same ColdFusion 8 tag poster that can be seen here:
Rules: You can only post one time, multiple posts don’t count…
Hopefully [...]
Posted in ColdFusion |
By Jeff on April 28, 2008
Have you ever wanted to have your google sitemap updated on the fly based on your postings or other data? This is a simple but effective example:
<CFQUERY name=”qFind” datasource=”astores”>
select * from astores_names
</CFQUERY>
<cfxml variable=”mydoc”>
<urlset xmlns=”http://www.google.com/schemas/sitemap/0.84″>
<cfoutput query=”qFind”>
<url>
<loc>http://www.thewarp.org/blog/store.cfm?site=#store_name#</loc>
[...]
Posted in ColdFusion |