Keyboard shortcuts for every Google webapp
All good geeks know that keyboard shortcuts are the shiznit. I have been a dedicated user of Gmail since I got my hands on an invite over a year ago. I thought I was a power-user until someone told me that you could archive a conversation by pressing ‘y’. “Shortcuts in webapps?!” I screamed. After this mini epiphany/freak-out, I ran around the help files of all my favourite webapps, looking for the shortcuts. Here they are. They’re useful. Go wild.
Contents
Google Mail
Note: pressing <shift> and clicking or typing a keyboard shortcut will open the item in a new window (if applicable).
| Key | Name | Action | c | Compose | Compose a new email |
|---|---|---|
| / | Search | Moves the cursor to the search field |
| k | Newer conversation | Moves to the next conversation |
| j | Older conversation | Moves to the previous conversation |
| n | Next message | Selects the next message in a conversation |
| p | Previous message | Selects the next message in a conversation |
| o | Open | Opens the selected element |
| u | Conversation list | Goes back to the list of conversations |
| y | Archive | Archives, de-stars or un-labels the selected conversation, depending on your current view |
| x | Select conversation | Checks the current conversation ready for further commands |
| s | Star | Stars a message or conversation |
| ! | Report spam | Reports the current message as spam and removes it |
| r | Reply | Opens a reply to the current message |
| a | Reply to all | Replies to all message recipients |
| f | Forward | Forwards the current message |
| <esc> | Deselect | Removes the cursor from the current input field |
| g then a | All mail | Switches to the ‘all mail’ view |
| g then s | Starred mail | Switches to the ’starred mail’ view |
| g then c | Contacts | Displays your Gmail contacts |
| g then d | Drafts | Switches to a list of your drafts |
| g then i | Inbox | Returns you to the inbox |
Google Calendar
| Key | Name | Action | c | Create event | Displays the create event dialog |
|---|---|---|
| / | Search | Places the cursor in the search field |
| p | Previous date range | Moves calendar view to previous date range |
| n | Next date range | Moves calendar view to next date range |
| t | Jump to “Today” | Moves calendar view to include current day |
| d | Day view | Switches to day view |
| w | Week view | Switches to week view |
| m | Month view | Switches calendar to month view |
| x | Customised view | Switches calendar to customised view |
| a | Agenda view | Displays your upcoming appointments |
| q | Quick Add | Opens Quick Add and moves cursor there |
| Esc | Back to calendar | Back to default calendar view |
Google Reader
| Key | Name | Action | j | Next | Move to the next item in your reading list |
|---|---|---|
| k | Previous | Move to the previous item in your reading list |
| n | Scan down | Scroll to the next item without viewing it |
| p | Scan up | Scroll to the previous item without viewing it |
| shift + n | Page down | Scroll down one screen of items |
| shift + p | Page up | Scroll up one screen of items |
| o | Open | View the selected item |
| h | Top | Go to the top of your reading list |
| r | Refresh | Refresh your reading list |
| s | Star | Star the current item |
| l | Label | Go to the item labelling dialog |
| v | View original | Opens the original item in a new window |
| g then h | Home | Loads your reading list items |
| g then s | Starred items | Opens your starred items |
| g then u | Subscriptions | Opens the edit subscriptions pane |
| g then r | Read items | Opens your read items |
| g then l | Label selector | Lets you type in a label then loads it |
Writely
Note: all the usual word-processor shortcuts are as you would expect, and are accessed using ctrl + letter, where letter can be b = bold, u = underline, i = italic, x = cut, c = copy, v = paste, s = save.
| Key | Name | Action | ctrl + z | Undo | Undo last action |
|---|---|---|
| ctrl + y | Redo | Redo last undo |
| ctrl + p | Open print menu | |
| ctrl + m | Add comment | Add a comment to the selected text |
Google Video
| Key | Name | Action | space | Play / pause | Toggles pause on and off |
|---|---|---|
| Right arrow | Skip forward | Skips forward in the video by 5% |
| Left arrow | Skip backward | Skips backward in the video by 5% |
| Up arrow | Increase volume | Increases volume by 5% |
| Down arrow | Decrease volume | Decreases volume by 5% |
| m | Mute | Toggles muting on and off |
| f | Full screen | Toggles full-screen mode on and off |
Google Maps
| Key | Name | Action | Arrow keys | Pan | Pan around the map |
|---|---|---|
| Page Up / Down | Pan wider | Pan up and down the map in wider increments |
| Home / End | Pan wider | Pan left and right in wider increments |
| + | Zoom in | Zoom in to the map |
| - | Zoom out | Zoom out of the map |
暂时没有时间和精力,那位仁兄可以给翻译下造福一下民众:)
原文链接见这里
升级到WordPress 2.1,用的仍是yskin的2.07中文包,并无大碍。
k2主题升级到0.95RC1。插入连接的按钮怎么跑右边了。晕。
UTW升级到3.1415926。之前非常担心会在2.1下失效的Page Post 2,也照常运行。另外,傻逼妹在2.1中运行正常。我使用的其他插件暂时没有因升级而失效的。
暂时没有发现什么问题,浏览过程中如果大家有见到麻烦通个信。也没有发现什么好玩儿的。
此专辑中有我此次升级的一些截图。
坦白说很讨厌这种频繁地升级。想想DZ升级的频繁,我很欣慰。
update:刚注意到,友情连接的排序给搞乱了。巧克力工厂提到了UTW和ELA在2.1中的问题,我暂时还没有发现。随后的更新中应该会有,我没有那么幸运。
Update:UTW已经升级,修复了2.1下的问题。点击下载。
wordpress 2.1.2 以及之前的版本
今天看了看wordpress模板的机制,发现存在了漏洞。大家可以认为这个漏洞不要紧。但是配合其他漏洞可以拿下WEB空间。权限允许可以拿下主机。
好久没有写漏洞的文章了,忘记格式了,呵呵,随便写写。
wordpress的模板文件,缺少访问验证,直接访问模板里的文件,就会泄露物理路径。这个不是PHP漏洞,是WordPress的漏洞。
比如访问:http://hostname/wordpress/wp-content/themes/default
就会显示:
Fatal error: Unknown function: get_header() in /home/public_html/yz/wp-content/themes/default/index.php on line 1
解决办法
在模板里的文件头部加上以下代码,可以防止泄露路径。
[coolcode] if(!defined(’WP_USE_THEMES’)) {
exit(’Access Denied’);
}
?>[/coolcode]
转自:SaBlog







