Monday, December 3, 2018

How to Get to the SendTo Folder in Windows 7

Where is the SendTo Folder in Windows 7? 

The Windows SendTo folder location is different in Windows 7 than it was in Windows XP. In Windows 7 the path to its location is in the form of the following:

C:\Users\yourusername\AppData\Roaming\Microsoft\Windows\SendTo

A shortcut that one can type in Windows Explorer to get to the same directory:

shell:SendTo




Saturday, April 29, 2017

How to Improve Virtual Machine Performance

In situations where the VM is installed on the same hard drive as the host's operating system the performance bottleneck is often the system's ability to read and write from the hard drive while running the VM and host operating system at the same time.

To improve VM performance try changing the location of the VM installation to a separate physical drive from the one on which the operating system of the host is installed.


Monday, July 20, 2015

32-bit or 64-bit CPU

How to Determine Whether Computer is Using a 32-bit or 64-bit Processor

To find out if your computer is using a 32-bit or 64-bit Intel processor look up the model specifications at http://ark.intel.com/

If it is a 64-bit processor the following should be seen in the table  "Intel® 64: yes".

One can also run CPU-Z to find out. Under the CPU menu Instructions field you should see EM64T listed.


AMD  64-bit processors will show AMD64.

In Windows, once can also get a description of the processor by typing into a command prompt the following: wmic cpu get description

The instructions here are on how to find out if you are using a 32-bit or 64-bit CPU not how to find out if you are using a 32-bit or 64-bit version Windows operating system.  Some of the instructions found on other sites although claiming to address the former seem to be answering the latter question and not the former.

Wednesday, May 27, 2015

Working with HTMLCollections in JavaScript and jQuery

To manipulate HTMLCollections successfully, one must be able to correctly identify and select the kind of object that one is working with. Depending on the command used on an HTMLCollection a DOM element or jQuery object may be returned.  The kind of commands that can be used on such returned elements or objects depends on the nature of that element or object. jQuery methods can only be used on jQuery objects not DOM elements.

Select and Create HTMLCollection

For example to select and create an HTMLCollection from all paragraph elements in an HTML document:

JavaScript 

document.getElementsByTagName("p")

jQuery

$('p')

Access HTMLCollection and Get Item as DOM Element

To return the first element (in the above case paragraph) in an HTMLCollection as a DOM element use one of the following:

JavaScript

document.getElementsByTagName("p")[0]
document.getElementsByTagName("p").item(0) 

jQuery

$('p')[0]
$('p').get(0)

Note the above jQuery commands return the first element as a DOM element.  DOM elements cannot be modified with jQuery methods. For jQuery methods to work they need to operate on jQuery objects. So something such as $('p')[0].text() will not return the expected result.  Use $('p')[0].textContent instead.

Retrieve Item from HTMLCollections as jQuery Object

To return the first element as a jQuery object use one of the following:

$('p').eq(0)
$('p:eq(0)')
 
Since it returns a jQuery object the command $('p').eq(0).text() should work.

Resources

Thursday, May 21, 2015

Pangrams for Faster Typing

Typing Test Pangrams

 A pangram is a phrase or sentence that contains all 26 letters of the alphabet. 

"The quick brown fox jumps over the lazy dog" is probably the best known pangram.  It is commonly used as an example in typing lessons to get one used to touch typing. But there are other pangrams one could also practice typing out. Using a variety of pangrams may efficiently help increase muscle memory with varied letter combinations and patterns. Therefore typing pangrams is an effective way to improve touch typing speed.

Here are a few pangrams to use for typing practice:

Five jumping wizards hex bolty quick.
Pack my box with five dozen liquor jugs.
The jay, pig, fox, zebra and my wolves quack!
A wizard’s job is to vex chumps quickly in fog.  
Amazingly few discotheques provide jukeboxes. 
Watch “Jeopardy!”, Alex Trebek’s fun TV quiz game.
While making deep excavations we found quaint bronze jewelry.
A quart jar of oil mixed with zinc oxide makes a very bright paint.
The job requires extra pluck and zeal from every young wage earner.
The jukebox music puzzled a gentle visitor from a quaint valley town.
The public was amazed to view the quickness and dexterity of the juggler.

Pangram Typing Tips

Make sure you are in a comfortable position.

First learn them one at a time getting comfortable typing each one out over and over on its own then start adding and alternating the ones you have mastered in combination.

Practice typing for accuracy first then start typing with a view to accelerating speed.

Learn to tap the keys lightly and string common letter combinations together. 

Practice typing drills with these pangrams for a week or two and see your touch typing speed improve! 

Tuesday, May 19, 2015

Non-Breaking Space Keyboard Shortcut

Non-Breaking Space HotKey

To insert a non-breaking space also called a hard space or fixed space:

In Microsoft Office or LibreOffice type

CTRL + SHIFT + SPACE

In Windows and Notepad

Hold ALT then type 0160

In HTML use

  or  


Sunday, May 10, 2015

Customize Sublime Text 3 Context Menu in Windows 7

Edit Context Menu in Sublime Text 3

To change the right-click context menu in Sublime Text 3 and add extra commands one will need to create Context.sublime-menu file with the following general format similar to JSON:

 [
    { "caption": "-", "id": "separator" },
    { "command": "new", "caption": "New" },
    { "command": "open", "caption": "Open" },
    { "caption": "-" }
]


Example: Add the Use Selection for Find and Use Selection for Replace to the Right-click Context Menu



To determine the commands associated with the Use Selection for Find and Use Selection for Replace instructions, first find the hotkeys for the Use Selection for Find and Use Selection for Replace instructions. In the top menubar under Find one sees the hotkeys for Use Selection for Find (Ctrl+E) and Use Selection for Replace (Ctrl+Shift+E).

Open the Default(Windows).sublime-keymap file (Preferences - Key Bindings - Default) and search for Ctrl+E and Ctrl+Shift+E to find  associated commands.

One will find that the commands associated with Ctrl+E (Use Selection for Find) and Ctrl+Shift+E (Use Selection for Replace) are "slurp_find_string" and "slurp_replace_string".

Once the commands are known create a file called Context.sublime-menu in Sublime Text 3's Data\Packages\User directory containing the following:

[
    { "caption": "-" },
    { "command": "slurp_find_string", "caption": "Use Selection for Find" },
    { "command": "slurp_replace_string", "caption": "Use Selection for Replace" },
    { "caption": "-", "id": "end" }
]

Save the file.  Opening the right-click context menu should now show the options Use Selection for Find and Use Selection for Replace