To know any VAS (Value Added Services) you have activated on your BSNL mobile, the USSD code to use is *456*00#
For Airtel, it is *121*5#
For Airtel, it is *121*5#
/dev/video0, then move it to, say /dev/video1 (gstfakevideo will use /dev/video0 for itself by default. This also means that in Skype Video settings, /dev/video0 is to be selected).gstfakevideo v4l2src device=/dev/video1libv4l (in Ubuntu it is libv4l-0).LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skypev4lctl bright 250 v4lctl list.text-mode. Inside it, you need to write a piece of C code with proper indentation. You can switch to c-mode, but then the rest of your text starts looking weird with colors and all, and this is very distracting (to me at least). But Emacs, as usual, has a solution to this problem.M-x narrow-to-region (the keyboard shortcut for this is C-x n n). You will find yourself in a buffer with only the region you selected. Then you can enter c-mode and write the code. When done, you can go back to your original full view by using the command M-x widen (or C-x n w) and switch back to whatever mode you were in (text-mode in this case)..emacs file:
(define-skeleton c-for
"Inserts a C for loop template."
nil
> "for (;;){" \n
> _ \n
"}" > \n
)
M-x edit-abbrevs (i.e., Press Alt+x, and then give the command edit-abbrevs and press enter).
"forst" 0 "" c-for
C-c C-c (i.e., press Control+c twice). That's it.
for (;;){
_
}
M-x write-abbrevs-file if I want to use them in future emacs sessions. But that is obvious... although I have forgotten that on many occassions :-)