Archive for the ‘IT How To’ Category

Fix: Corrupt Windows 2012 RDS Basic Color Scheme

This is a bizarre issue that has happened on multiple occasions with Windows 2012 servers in a Remote Desktop Collection. Out of nowhere, the screen colors go haywire. It seems somehow the “Windows Basic” color scheme gets corrupted. Black text becomes yellow text. White backgrounds become black backgrounds. The right-hand scroll bar becomes black with…
Read On…

iPhone / Mac Text Replacement: Shortcuts For Phrases

In both iOS and Mac OS X, Apple offers a feature called Text Replacement that allows you to configure text shortcuts for commonly used phrases. I believe Apple introduced this feature with iOS 5, and it is a great way to save time typing frequently used phrases, especially on touch devices like iPhone and iPad where…
Read On…

How To Edit Google Chrome Custom Spell Check Dictionary

So, you’ve accidentally added a misspelled word to Google Chrome’s custom dictionary, how do you remove it? On Windows, Linux, ChromeOS 1. Click the Customize Google Chrome button on the right side of the Chrome toolbar. 2. Click on Settings. 3. Click the Language and input settings button. 4. Click the Edit custom dictionary link. Instead…
Read On…

Office: Quickly Remove Text Formatting From Copy-Paste

Here are two quicker methods to copy-paste formatted text as unformatted text in Microsoft Office Outlook or Word. 1. After pasting text, highlight that text and press Ctrl + Space to remove all font and style formatting (Office 2003, 2010 and 2013 confirmed). 2. Alternatively, paste the text using Ctrl + Alt + V and choose…
Read On…

WordPress: How To Exclude Category From RSS Feed

If you need to exclude a specific category from your RSS feed, put the following code in your theme’s functions.php. Go to Appearance | Editor | Theme Functions (functions.php) // Excludes Category from RSS Feed function exclude_catid_feed( $query ) { if ( $query->is_feed ) { $query->set( ‘cat’, ‘-1’ ); } return $query; } add_filter( ‘pre_get_posts’, ‘exclude_catid_feed’);…
Read On…

[Solved] Is My iPhone Tracking Where I’ve Been?

If you are running iOS 7 or higher, then yes, your iPhone is indeed tracking where you’ve been. But, it promises to only use that information for entirely benevolent reasons. Honest! Hidden deep within the Settings app is a gem of a feature called Frequent Locations, which is a beautifully generic way for your iPhone to say,…
Read On…