Friday, October 18, 2013

Keyboard Shortcuts For ChromeVox Screen Reader

Here Is The Full List of Keyboard Shortcuts for ChromeVox Screen Reader For Chrome Browser.


Prefix Key:


The Prefix Key is enabled by pressing Control + Z.

Basic Navigation
  1. ChromeVox + Down = Navigate Forward
  2. ChromeVox + Up = Navigate backward
  3. ChromeVox + Right = Navigate forward at a more detailed level
  4. ChromeVox + Left = Navigate backward at a more detailed level
  5. ChromeVox + Equals = Change navigation level to more detail
  6. ChromeVox + Minus = Change navigation level to less detail
  7. Enter = Activate current item
  8. ChromeVox + Space = Force click on current item
  9. ChromeVox + R = Start reading from current location

  

Speech Commands


  1. Control = Stop speaking the current text
  2. ChromeVox + Single quote = Increase pitch of speech
  3. ChromeVox + Semicolon = Decrease pitch of speech
  4. ChromeVox + Close Bracket = Increase rate of speech
  5. ChromeVox + Open Bracket = Decrease rate of speech
  
Headings

To move to the next header on the page, press ChromeVox + N then H. To move to the previous header on the page, press ChromeVox + P then H.

You can also move to a specific heading level by pressing ChromeVox + N or P then the number representing that heading level. For example, to move to the next level 2 header, press ChromeVox + N then 2.

Jump Commands

ChromeVox allows you navigate through lists of similar items, such as links, headers etc. To move to a specific item on a page, press ChromeVox + either N or P. N stands for Next and P stands for Previous.

 

Other items


  1. Tab = Jump to next focusable item
  2. Shift + Tab = Jump to previous focusable item
  • Press ChromeVox + N or ChromeVox + P and then one of the following commands:
    1. A = Anchor
    2. Q = Block quote
    3. B = Button
    4. X = Checkbox
    5. C = Combobox
    6. G = Graphic
    7. H = Heading
    8. J = Jump
    9. ; = Landmark
    10. F = Form Field
    11. L = Link
    12. O = List
    13. I = List item
    14. R = Radio button
    15. S = Slider
    16. T = Table

 

Table Mode


Table Mode is activated by ChromeVox + Back slash when reading a table. The following are the commands that become available only in table mode.

  1. ChromeVox + Back space = Force exit table mode
  2. ChromeVox + Down = Go to next table row
  3. ChromeVox + Up = Go to previous table row
  4. ChromeVox + Right = Go to next table column
  5. ChromeVox + Left = Go to previous table column
  6. ChromeVox + T then H = Announce headers of the current cell
  7. ChromeVox + T then L = Announce coordinates of the current cell
  8. ChromeVox + T then Open bracket = Go to beginning of table
  9. ChromeVox + T then Close bracket = Go to end of table
  10. ChromeVox + T then Semicolon = Go to beginning of the current row
  11. ChromeVox + T then Single quote = Go to end of the current row
  12. ChromeVox + T then Comma = Go to beginning of the current column
  13. ChromeVox + T then Period = Go to end of the current column
Use the command help menu ChromeVox + Period to explore additional table commands.


Getting Help


  1. ChromeVox + O then T = Open ChromeVox Tutorial
  2. ChromeVox + Period = Show ChromeVox command help
  3. Escape = Hide ChromeVox command help
  4. ChromeVox + O then O = Open options page
  5. ChromeVox + Forward Slash = Enable search within the page.

Browser commands


Address bar


  • Control L = Move to the address bar. From here you can type your search term in the address bar and press Enter to see results. In addition to search terms, you can type in the web address of a site, and press Enter to go to the site.

Working with tabs


  1. Control + T = Open a new Tab
  2. Control + W = Close a Tab
  3. Control + Tab = Move through Tabs

 

Keyboard explorer


  • ChromeVox + O + K = Open keyboard explorer

 

Chrome OS Keyboard


  • An overview of the Chrome OS keyboard layout is available.

 

Deactivate ChromeVox


  • ChromeVox can be activated / deactivated at any time by pressing ChromeVox + A + A.

Monday, October 7, 2013

10 - Shocking Facts about Mondays



10 - Shocking Facts about Mondays


1.     Most people do not smile on Mondays until 11.16 am.
2.     People spend on the average of 12 minutes complaining about Mondays.
3.     The Monday syndrome affects people between the ages of 45 and 54 years old more than any other age group.
4.     Monday’s productivity at work is typically about 50% of all other days.
5.     The number of victims of heart attacks increases by 20% on Monday.
6.     Most suicides occur on Monday.
7.     Now for some positive news about Monday. Monday is the least rainy day of the week.
8.     Monday is the best day to buy a car, as the majority of sales are made on weekends and sellers rely less on the successful sale of the day, and as a consequence are more willing to make deals.
9.     Monday is less Rainy Day.
10.  Almost 50% of employee are late to work

Sunday, October 6, 2013

VIM Editor Command Shortcuts

VIM Editor Command Shortcuts

How to Exit


:q[uit]
Quit Vim. This fails when changes have been made.
:q[uit]!
Quit without writing.
:cq[uit]
Quit always, without writing.
:wq
Write the current file and exit.
:wq!
Write the current file and exit always.
:wq {file}
Write to {file}. Exit if not editing the last
:wq! {file}
Write to {file} and exit always.
:[range]wq[!]
[file] Same as above, but only write the lines in [range].
ZZ
Write current file, if modified, and exit.
ZQ
Quit current file and exit (same as ":q!").


Editing a File


:e[dit]
Edit the current file. This is useful to re-edit the current file, when it has been changed outside of Vim.
:e[dit]!
Edit the current file always. Discard any changes to the current buffer. This is useful if you want to start all over again.
:e[dit] {file}
Edit {file}.
:e[dit]! {file}
Edit {file} always. Discard any changes to the current buffer.
gf
Edit the file whose name is under or after the cursor. Mnemonic: "goto file".

Inserting Text


a
Append text after the cursor [count] times.
A
Append text at the end of the line [count] times.
i
Insert text before the cursor [count] times.
I
Insert text before the first non-blank in the line [count] times.
gI
Insert text in column 1 [count] times.
o
Begin a new line below the cursor and insert text, repeat [count] times.
O
Begin a new line above the cursor and insert text, repeat [count] times.




Inserting a file

:r[ead] [name]
Insert the file [name] below the cursor.
:r[ead] !{cmd}
Execute {cmd} and insert its standard output below the cursor.

Deleting Text


<Del> or
x
Delete [count] characters under and after the cursor
X
Delete [count] characters before the cursor
d{motion}
Delete text that {motion} moves over
dd
Delete [count] lines
D
Delete the characters under the cursor until the end of the line
{Visual}x or
{Visual}d
Delete the highlighted text (for {Visual}
{Visual}CTRL-H or
{Visual}
When in Select mode: Delete the highlighted text
{Visual}X or
{Visual}D
Delete the highlighted lines
:[range]d[elete]
Delete [range] lines (default: current line)
:[range]d[elete] {count}
Delete {count} lines, starting with [range]

Changing (or Replacing) Text


r{char}
replace the character under the cursor with {char}.
R
Enter Insert mode, replacing characters rather than inserting
~
Switch case of the character under the cursor and move the cursor to the right. If a [count] is given, do that many characters.
~{motion}
switch case of {motion} text.
{Visual}~
Switch case of highlighted text


Substituting


The arguments that you can use for the substitute commands:

[c] Confirm each substitution. Vim positions the cursor on the matching

 string. You can type:

 'y' to substitute this match

 'n' to skip this match

  to skip this match

 'a' to substitute this and all remaining matches {not in Vi}

 'q' to quit substituting {not in Vi}

 CTRL-E to scroll the screen up {not in Vi}

 CTRL-Y to scroll the screen down {not in Vi}.

[e] When the search pattern fails, do not issue an error message and, in

 particular, continue in maps as if no error occurred. 

[g] Replace all occurrences in the line. Without this argument,

 replacement occurs only for the first occurrence in each line.

[i] Ignore case for the pattern. 

[I] Don't ignore case for the pattern. 

[p] Print the line containing the last substitute.


Copying and Moving Text

"{a-zA-Z0-9.%#:-"}
Use register {a-zA-Z0-9.%#:-"} for next delete, yank or put (use uppercase character to append with delete and yank) ({.%#:} only work with put).
:reg[isters]
Display the contents of all numbered and named registers.
:reg[isters] {arg}
Display the contents of the numbered and named registers that are mentioned in {arg}.
:di[splay] [arg]
Same as :registers.
["x]y{motion}
Yank {motion} text [into register x].
["x]yy
Yank [count] lines [into register x]
["x]Y
yank [count] lines [into register x] (synonym for yy).
{Visual}["x]y
Yank the highlighted text [into register x]
{Visual}["x]Y
Yank the highlighted lines [into register x]
:[range]y[ank] [x]
Yank [range] lines [into register x].
:[range]y[ank] [x] {count}
Yank {count} lines, starting with last line number in [range] (default: current line), [into register x].
["x]p
Put the text [from register x] after the cursor [count] times.
["x]P
Put the text [from register x] before the cursor [count] times.
["x]gp
Just like "p", but leave the cursor just after the new text.
["x]gP
Just like "P", but leave the cursor just after the new text.
:[line]pu[t] [x]
Put the text [from register x] after [line] (default current line).
:[line]pu[t]! [x]
Put the text [from register x] before [line] (default current line).

Undo/Redo/Repeat

u
Undo [count] changes.
:u[ndo]
Undo one change.
CTRL-R
Redo [count] changes which were undone.
:red[o]
Redo one change which was undone.
U
Undo all latest changes on one line. {Vi: while not moved off of it}
.
Repeat last change, with count replaced with [count].

Moving Around

Basic motion commands:


0
To the first character of the line (exclusive).
<Home>
To the first character of the line (exclusive).
^
To the first non-blank character of the line
$ or <End>
To the end of the line and [count - 1] lines downward
g0 or g<Home>
When lines wrap ('wrap on): To the first character of the screen line (exclusive). Differs from "0" when a
line is wider than the screen. When lines don't wrap ('wrap' off): To the leftmost character of the current
line that is on the screen. Differs from "0" when the first character of the line is not on the screen.
g^
When lines wrap ('wrap' on): To the first non-blank character of the screen line (exclusive). Differs from "^" when a line is wider than the screen. When lines don't wrap ('wrap' off): To the leftmost non-blank character of the current line that is on the screen. Differs from "^" when the first non-blank character of the line is not on the screen.
g$ or g<End&gr;
When lines wrap ('wrap' on): To the last character of the screen line and [count - 1] screen lines downward (inclusive). Differs from "$" when a line is wider than the screen. When lines don't wrap ('wrap' off): To the rightmost character of the current line that is visible on the screen. Differs from "$" when the last character of the line is not on the screen or when a count is used.
f{char}
To [count]'th occurrence of {char} to the right. The cursor is placed on {char} (inclusive).
F{char}
To the [count]'th occurrence of {char} to the left. The cursor is placed on {char} (inclusive).
t{char}
Till before [count]'th occurrence of {char} to the right. The cursor is placed on the character left of {char} (inclusive).
T{char}
Till after [count]'th occurrence of {char} to the left. The cursor is placed on the character right of {char} (inclusive).
;
Repeat latest f, t, F or T [count] times.
,
Repeat latest f, t, F or T in opposite direction [count] times.
- <minus>
[count] lines upward, on the first non-blank character (linewise).
+ or CTRL-M or <CR>
[count] lines downward, on the first non-blank character (linewise).
_ <underscore>
[count] - 1 lines downward, on the first non-blank character (linewise).
<C-End> or G
Goto line [count], default last line, on the first non-blank character.
<C-Home> or gg
Goto line [count], default first line, on the first non-blank character.
<S-Right> or w
[count] words forward
<C-Right> or W
[count] WORDS forward
e
Forward to the end of word [count]
E
Forward to the end of WORD [count]
<S-Left> or b
[count] words backward
<C-Left> or B
[count] WORDS backward
ge
Backward to the end of word [count]
gE
Backward to the end of WORD [count]

These commands move over words or WORDS.

(
[count] sentences backward
)
[count] sentences forward
{
[count] paragraphs backward
}
[count] paragraphs forward
]]
[count] sections forward or to the next '{' in the first column. When used after an operator, then the '}' in the first column.
][
[count] sections forward or to the next '}' in the first column
[[
[count] sections backward or to the previous '{' in the first column
[]
[count] sections backward or to the previous '}' in the first column

Marks


m{a-zA-Z}
Set mark {a-zA-Z} at cursor position (does not move the cursor, this is not a motion command).
m' or
m`
Set the previous context mark. This can be jumped to with the "''" or "``" command (does not move the cursor, this is not a motion command).
:[range]ma[rk] {a-zA-Z}
Set mark {a-zA-Z} at last line number in [range], column 0. Default is cursor line.
:[range]k{a-zA-Z}
Same as :mark, but the space before the mark name can be omitted.
'{a-z}
To the first non-blank character on the line with mark {a-z} (linewise).
'{A-Z0-9}
To the first non-blank character on the line with mark {A-Z0-9} in the correct file
`{a-z}
To the mark {a-z}
`{A-Z0-9}
To the mark {A-Z0-9} in the correct file
:marks
List all the current marks (not a motion command).
:marks {arg}
List the marks that are mentioned in {arg} (not a motion command). For example:

Searching


/{pattern}[/]
Search forward for the [count]'th occurrence of {pattern}
/{pattern}/{offset}
Search forward for the [count]'th occurrence of {pattern} and go {offset} lines up or down.
/<CR>
Search forward for the [count]'th latest used pattern
//{offset}<CR>
Search forward for the [count]'th latest used pattern with new. If {offset} is empty no offset is used.
?{pattern}[?]<CR>
Search backward for the [count]'th previous occurrence of {pattern}
?{pattern}?{offset}<CR>
Search backward for the [count]'th previous occurrence of {pattern} and go {offset} lines up or down
?<CR>
Search backward for the [count]'th latest used pattern
??{offset}<CR>
Search backward for the [count]'th latest used pattern with new {offset}. If {offset} is empty no offset is used.
n
Repeat the latest "/" or "?" [count] times.
N
Repeat the latest "/" or "?" [count] times in opposite direction.



Selecting Text (Visual Mode)


~ switch case
 d delete
 c change
 y yank
 > shift right
 < shift left
 ! filter through external command
 = filter through 'equalprg' option command
 gq format lines to 'textwidth' length
The operators that can be used are:

 ~ switch case

 d delete

 c change

 y yank

 > shift right 

 < shift left 

 ! filter through external command 

 = filter through 'equalprg' option command 

 gq format lines to 'textwidth' length 
v
start Visual mode per character.
V
start Visual mode linewise.
<Esc>
exit Visual mode without making any changes

How to Suspend


CTRL-Z
Suspend Vim, like ":stop". Works in Normal and in Visual mode. In Insert and Command-line mode, the CTRL-Z is inserted as a normal character.
:sus[pend][!] or
:st[op][!]
Suspend Vim. If the '!' is not given and 'autowrite' is set, every buffer with changes and a file name is written out. If the '!' is given or 'autowrite' is not set, changed buffers are not written, don't forget to bring Vim back to the foreground later!