Keyboard shortcuts for Mozilla Fiirefox

For people who prefer to use keyboard rather than mouse, below are some shortcuts for most common actions while using Firefox web browser.


    Open new tab
    Ctrl -T
    Close tab
    Ctrl - W
    Open history
    Ctrl - H
    Open Downloads windows
    Ctrl -J
    Bookmark current opened page
    Ctrl - D
    Open New window
    Ctrl - N
    Close Window
    Ctrl - W
    Zoom in/Increase font size
    Ctrl  +
    Zoom out/decrease font size
    Ctrl  -
    Clear Private data(cache/form data/ search data/
    History/saved passwords)
    Ctrl - Shift - Delete

Windbg basic commands

Below is the list of commonly used windbg commands. You can also see the syntax of these commands.


Command
Description
Syntax
BP
Create break point
  1. Bp function_address
  2. BP module_name!function_name
BL
List the breakpoints
Bl
BC
Cancel break point
BC breakpoint_no (Breakpoint number can be obtained by doing bl)
K
Show current call stack
k
g
Continue with execution
g
P
Execute the next statement and break in
p
T
Same as above but steps in if it is a function call
t
!analyze -v
Analyze the crash
!analyze -v
Gu
Step out of the current function
gu
R
Display the register values
r
Db
Display the value at given address as byte
Db data_address
DW
Display the value at given address as word
Dw data_address
.sympath
Set the symbols path
.sympath symbols_location
.srcpath
Set source code path
.srcpath source_code_location
.process
Change the context to the process at the given address
.process process_address
.thread
Change the context to the thread at the given address
.thread thread_address

Blogger Templates by OurBlogTemplates.com 2008