Latest News Updates

Latest News    
Showing posts with label tips and Tricks. Show all posts
Showing posts with label tips and Tricks. Show all posts

Friday, 2 December 2011

Top 10 Must Have Firefox Add-Ons For Bloggers:

StumbleUpon : To browse the user submitted great content on the internet

Clipmarks : To extract and clip a part of any webpage like paragraph, sentence, image or video

Sage : A lightweight RSS and Atom feed aggregator extension

Jeteye : A web-based application for communication and social activities

Performancing : A full featured blog editor

Wizz : A good RSS and Atom news reader.

MeasureIt : A virtual ruler to get the pixel width and height of any elements on a webpage.

Show MyIP : To show your current IP address, shows static and dynamic IP both

NewsFox : RSS/Atom News Reader.

TorrentBar : A BitTorrent file search toolbar for Firefox users.

source : shaanhaider

Top 10 Must Have Firefox Add-Ons For Web-Developers

FireFTP 
FireFTP is a free, secure, cross-platform FTP client for Mozilla Firefox

IE Tab
IE Tab can embed Internet Explorer in tabs of Mozilla Firefox. So, you can use two different browser in one window.

Web Developer
It adds a menu and a toolbar with various web developer tools which improves the creativity

Firebug
Firebug integrates lots of development tools with Firefox. So, you can easily edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.

Greasemonkey
One of the most popular Firefox add-on which allows to customize the way a webpage displays using JavaScript.

Tab Mix Plus
Tab Mix Plus gives awesome tab browsing capabilities, such as duplicating tabs, controlling tab focus, tab clicking options, undo closed tabs and windows, etc. It is also having a full-featured session manager with crash recovery feature that can save and restore combinations of opened tabs and windows.

Image Zoom
The name says it all.

ColorZilla
It is having lots of image editing tools like Advanced Eyedropper, ColorPicker, Page Zoomer, etc.

IE View
It lets you load pages in Internet Explorer, or mark certain sites to *always* load in Internet Explorer. It is a very useful tool for incompatible pages, or cross-browser testing.

iMacros
It automate the web browser to record and replay repetitious work.

source : shaanhaider

Thursday, 23 December 2010

Trick to Open Multiple instances of Gtalk

Hi Friends here is a tip for those having multiple gmail account, using gtalk we can open only one instance of it but by opening the gtalk in nomutex mode u can open multiple instances of it
There are two method to achieve this




Method 1: Creating Shortcut button

1. Right-click on the desktop
2. Select New
à Shortcut
3. Paste the below text in the textbox
"c:\program files\google\google talk\googletalk.exe" /nomutex
4. Click Next
5. Give some name to ur shortcut or let it go with the default one
6. Click OK and that’s it u r done

Method 2 : Using Run Dialog Box

1.Open RUN Dialog box ( Press Windows Key + R)
Paste this line : "c:\program files\google\google talk\googletalk.exe" /nomutex
2.Click OK

Hope you like this post, in next few days I will be posting some more gtalk tips J

Wednesday, 22 December 2010

Bash Tips and Tricks

Hi friends most of the professionals work on different linux  flavours, this keyboard shortcut will be handy for them and will be updating if i find any and let me know if we can add something to this list of shortcuts.


BASH SHORT CUT COMMANDS
Esc + T
Swap the last two   words before the cursor
Ctrl + A
Go to the beginning   of the line you are currently typing on
Ctrl +   L             
Clears the Screen,   similar to the clear command
Ctrl + U
Clears the line   before the cursor position.
Ctrl + H
Same as backspace
Ctrl + R
Let’s you search   through previously used commands
Ctrl + C
Kill whatever you   are running
Ctrl + D
Exit the current   shell
Ctrl + Z
Puts whatever you   are running into a suspended background process. fg restores it.
Ctrl + W
Delete the word   before the cursor
Ctrl + T
Swap the last two   characters before the cursor
Ctrl + E
Go to the end of the   line you are currently typing on
Ctrl + K
Clear the line after   the cursor
Alt + F
Move cursor forward   one word on the current line
Alt + B
Move cursor backward   one word on the current line
Tab
Auto-complete files   and folder names
Ctrl + Y
to paste it (as in delete and   copy) all text in front of the cursor
Esc + .
To paste the argument of previous command

Friday, 17 December 2010

Forgot to mention subject in mail???


Hi friends sometimes it happens that we forgot to mention subject while writing an Official Mail and feel bad later??????? 

Yes…. It's a concern for all…. A mail without a subject brings a bad impression on us.


To avoid this, just follow the simple steps mentioned below and see the result. 

Here are the steps: - 


1. Open your Outlook,

2. Press Alt+F11. This opens the Visual Basic Editor and open Project-Project 1 (left side). If this doesn’t open Project-Project 1 then press then Press Ctrl+R.

3. On the Left Pane, one can see "Microsoft Outlook Objects" or "Project1", expand this. Now one can see the "ThisOutLookSession".

4. Double click on "ThisOutLookSession". It will open up a Code Pane on the right hand side.

5. Copy and Paste the following code in the right pane (Code Pane) and save it


Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

Dim strSubject As String

strSubject = Item.Subject

If Len(Trim(strSubject)) = 0 Then

Prompt$ = "Subject is Empty. Are you sure you want to send the Mail?"

If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Check for Subject") = vbNo Then

Cancel = True

End If

End If

End Sub


6. After pasting click on file menu and the save the project1.

7. Now whenever you try to send a mail without subject, a pop-up is raised to remind you of the blank subject.


Check out once by sending a test mail to someone without a subject and see whether it alerts you with a window displaying “Subject is Empty. Are you sure you want to send the Mail?"