Category Archives: Windows
To rename a folder in Windows 7 with a keyboard shortcut, highlight the folder with the arrow keys and hit F2.
Quick Tip: Windows 7 Keyboard Shortcut To Create New Folder
Here’s a simple keyboard shortcut to create a new folder in Windows 7:
CTRL-SHIFT-N
How to install XBMC on a Windows 7 Virtual Machine in VirtualBox
Mount a Windows Shared Folder on Ubuntu 12.04 within VirtualBox
In today’s post, I will show you have to mount a Windows shared folder in Ubuntu 12.04 from within VirtualBox. A prerequisite is that you have to have VirtualBox Guest Additions already installed. If you haven’t done so and would like to know how, read this previous post where I show you how. Otherwise, continue reading and I’ll show you how to mount a shared folder.
Regular Expression Cheatsheet
Here’s a quick cheatsheet of the metacharacters used in regular expressions.
Metacharacter | Name | Matches |
---|---|---|
. | dot | any one character |
[ ... ] | character class | any character listed |
[^...] | negated character class | any character not listed |
^ | caret | the position at the start of the line |
$ | dollar | the position at the end of the line |
\< | backslash less-than | the position at the start of the word |
\> | backslash greater-than | the position at the end of the word |
| | or, bar | matches either expression it separates |
( ... ) | parentheses | used to limit scope of | |
? | question mark | one allowed; none required ("one optional") |
* | asterisk | unlimited allowed; none required ("any amount OK") |
+ | plus | unlimited allowed; one required ("at least one") |
\1, \2, ... | back reference | matches text previously matched within first, second, etc., set of parentheses |
\ | backslash | escape a metacharacter to match literally |
{ ... } | braces | Interval; counting quantifier; specify number of matches |