Twitter4j
Getting hit by the
bug, decided to play around with the APIs.
The Java API called Twitter4j , which is a wrapper around the Twitter API is pretty good. Its as simple as calling an update method for updating your twitter status..
Check out
Twitter4j
and follow me on Twitter : Ajay George on Twitter
Video Tutorials for Programming
Recently came across a decent site which contains some good video tutorials.
ShowMeDo is about learning Free and Open Source by watching it get done, the programming languages which build it, the tools that make those languages more productive and fun to use, and of course the software and applications that mark its achievements. We aim to provide a free, clean, ad-free environment wherein members of the Open Source community can show the cool stuff going on.
We’re here to help address the need for good documentation and tutorials, the lack of which, we believe, prevents some great software from gaining the popularity it deserves. If you want to contribute, just join-up and submit a video. It’s a great way to give something back. Read more in the FAQ.
I was going through their Introduction to Shell Series, which is very lucid and will definitely help a beginner.
I am yet to go through their programming tutorials. Any of the visitors here, has visited the site or will be visiting the site and found it useful do share your experience here.
Sizeof operator implementation
here is the code which uses a simple macros to implement the sizeof operator
#include<iostream>
#include<conio.h>
#include<stdio.h>
using namespace std;
#define getsize(x) ((char *)(&(x) + 1) – (char *)&(x)) //macros
main()
{
char a[]=”hello”;
cout<<getsize(a); //output is 6 because backslash 0 has to be considered.getch();
return 0;
}












.jpg)



