May 10
Facebook Graph API is nightmare for lot of guys(including me). I want to update my own Facebook status without using any Graph API authorization & authentication process. Is it possible? I searched a lot & couldn't find any ways to do that in super simple method. By accident, while I am checking mobile version of famous websites, I found a facebook url "http://www.facebook.com/mobile/" which opened a magical door to update facebook status message without doing any Graph API interaction. Actual facebook mobile url is, "http://m.facebook.com/".
Once you logged in to your facebook account, go to "http://www.facebook.com/mobile/" page, you can get personalized email account for your Facebook login. Using that email ID. Using this personalized email, you can post status updates or send photos and videos straight to your facebook profile. It is too simple.

Nov 11
I made small css based locale switcher with theme. You
can see the demo here. In this example, common.css has generic style
definations for page elements. gray.css has india locale and gray theme
style definations. yellow.css has US locale and yellow theme style
definations. Below 3 lines of javascript code will switch locale as well as theme.
<script>
function changeTheme(){
var obj = document.getElementById("themeContainer");
obj.className = (obj.className=='gray')?'yellow':'gray';
}
</script>


you can download this example here.
Nov 4
4CFF (For ColdFusion Foundation) was announced to increase the popularity of CFML and to help open source CFML projects. To get more details, check 4CFF website or follow 4CFF official twitter
Oct 3
I am happily announcing to every one, today I finished ACE
coldfusion 8 certification examination. Now I am an Adobe certified
expert on coldfusion 8. :)

Read more...
Recent Comments