Service Pack 1 (SP1) for Windows Server 2008 R2 and Windows 7

Feb 25, 11 Service Pack 1 (SP1) for Windows Server 2008 R2 and Windows 7

Service Pack 1 (SP1) for Windows Server 2008 R2 and Windows 7 helps keep your PCs and servers on the latest support level. It provides ongoing improvements to the Windows operating system (including previous updates delivered over Windows Update and incremental updates to the Windows 7 and Windows Server 2008 R2 platforms based on customer and partner feedback) and makes it easy for organizations to deploy a single set of updates.

for more information click here http://technet.microsoft.com/en-us/windows/gg635126?ITPID=technet

 

read more

Useful Keyboard shortcuts for Microsoft Word

Feb 24, 11 Useful Keyboard shortcuts for Microsoft Word
  • Apply Heading To apply heading 1, 2 or 3, press ALT+CTRL+1, ALT+CTRL+2, and ALT+CTRL+3, respectively. Headings are an excellent way to start of sections of a document, and can later be used to automatically generate a table of contents.
  • Apply List Bullet To start typing a bulleted list, press ALT+CTRL+L.
  • Bold Text Press CTRL+B to bold text.
  • Copy Use CTRL+C to copy the current selection.
  • Delete WordTo delete the entire word preceding the cursor, press CTRL+DEL.
  • Find Text Press CTRL+F to bring up the Find Text dialog box. Using a program’s Find feature is always faster than manually scanning for something.
  • Italics Press CTRL+I to italicize text.
  • Paste Press CTRL+V to paste the contents of the clipboard.
read more

Remove All Hyperlinks in Word or Excel

Word

Hit [ALT]+[F11] to open the Visual Basic Editor

Go to “Insert” > “Module” and in the pop-up window copy:

Sub RemoveHyperlinks()
Dim oField As Field
For Each oField In ActiveDocument.Fields
If oField.Type = wdFieldHyperlink Then
oField.Unlink
End If
Next
Set oField = Nothing

read more

10 Useful RSS-Tricks and Hacks For WordPress

RSS is one of those technologies that are extremely simple yet extremely powerful. Currently, RSS is thede facto standard for blog syndication, and it is used widely in both personal and corporate settings; for example, in blogs. And because a large percentage of these blogs run on WordPress, we’ll cover in this post some (hopefully) relatively unknown but useful RSS-related tricks and hacks that will help you use RSS in a more effective way — and without unnecessary and chunky WordPress plug-ins.

Let’s take a look at 10 useful, yet rather unknown RSS-tricks for WordPress. Each section of the article presents a problem, suggests a solution and provides you with an explanation of the solution, so that you can not just solve some of your RSS-related problems but also understand what you are actually doing. Thus, you can make sure your WordPress theme remains under your control and is not bloated with some obscure source code.

1. Control When Your Posts are Available via RSS

Sm8 in 10 Useful RSS-Tricks and Hacks For WordPress

read more

Setting up PHPMyAdmin on Linux MySQL DB Server

PHPMyAdmin on Linux MySQL DB Server

PHPMyAdmin on Linux MySQL DB Server

In this HowTo, I will show, how you can set up PHPMyAdmin on your Linux DB server.

Download PHPMyAdmin from the home page:

cd /root/

wget http://internap.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-2.11.9.5-english.zip

cp phpMyAdmin* /var/www

cd /var/www/

unzip phpMyAdmin-2.11.9.5-english.zip

read more
Page 3 of 3412345...102030...Last »