Thursday, February 19, 2009

Clean Your Windows Registry to Speed up Your PC


Step1
Clutter can be scary! Pretty much everything you do in Windows is recorded somewhere in the Registry. For example, the simple fact that you are reading this article is most likely being recorded in your registry this very second. The problem with your Windows Registry is that if you open it on your computer, it's probably as cluttered as your 13-year-old's bedroom. Even though Windows can clean up some messes on your computer, the registry can sometimes get a little too messy, causing your PC to run a little more slowly than you're used to. First, if you don't have one already, you're going to need Registry Software. Most of this is free, but some you may have to purchase.

Step2
I use AVG, and it works very well. In case you don't wish to purchase software, there are also registry cleaner downloads. This download will provide you with information such as user and expert reviews and utility features that help you in selecting the tool that is best compatible with your PC. Be sure that you get your downloads from a site that you can trust that is legitimate so you don't accidentally get a virus on your computer. The best way to ensure that the download is clean is to scan it with your anti-virus and spyware programs.

Step3
Malicious viruses can cause major problems to your PC When in doubt, run your anti-virus before and after you clean your registry. Sometimes viruses or other malicious programs are embedded so deep within the registry that it is close to impossible to remove them on your own. Running your anti-virus daily will ensure that your registry is safe from any malicious spyware, and it will also remove them from your registry.

Step4
Think smart when removing programs from your PC. Remember when you started downloading that particular program, and it took too long, so you aborted it? Well that is a major cause of registry clutter. If there are programs that are half-installed on your computer, you're going to have to uninstall it. This can be done by going into your Control Panel and clicking on the Add or Remove Programs icon. Select the program that you wish to remove and follow the directions on the uninstaller wizard.

ALWAYS KEEP IN MIND

  • When you begin scanning, make sure not to have any applications running because they cause registry changes.
  • You're going to need to do the cleaning twice. The first time, you'll need to pay closer attention, but the second time you can leave the computer alone.
  • Clicking on icons or anything while the scan is running will cause registry changes, so it is best to just watch closely.
  • Cleaning your registry is not the sole way of speeding up your PC because everything depends on the condition of your Registry.
  • When cleaning your registry, don't just simply click the "next" button in the wizard in case it's accidentally removing something that you need.
  • Do not remove any program that you're not sure of. When in doubt, ask a computer expert.
SOURCE: from various ebooks and security related forum

Format a Hard Drive in Linux

Step1
When you format a computer hard drive, you will lose everything that is on the drive. Therefore it is very important to back up anything you might later want.

Step2
In order to format a secondary drive you will need root access. All commands used in this tutorial are run from a command line (terminal) as root. You may also want to make note of the size (total capacity in MB) of the drive.

Step3
Linux refers to hard drives as either “hdx” or “sdx” where x is a letter, starting with a, which represents the order in which the drive was added to or detected by the computer. The “hd” prefix is used for IDE and PATA (formerly just ATA), and the “sd” prefix is used for SCSI, SATA, and USB drives. Usually a number is also put at the end of “hdx” or “sdx” to denote different partitions on the same phisical drive, but for the purpose of formatting you only need to know which letter the drive you want to format is.

Step4
The examples given in this how-to are for a computer with two IDE hard drives attached as a master and slave. In this, the drives are “hda” and “hdb.” You will need to determine the letter of drive you want to format for your own setup. We will be formatting the drive hdb. For all examples, replace “hdb” with whatever your drive designation is.

Step5
You can see all the drives attached to you system by typing the command “ls /dev/hd*” or “ls /dev/sd*” depending on which type (IDE, SATA, etc.) the drives are. On the example system the result of this command looks like “/dev/hda /dev/hda1 /dev/hda2 /dev/hdb /dev/hdb1” The operating system is installed on hda, which has two partitions (hda1 and hda2), and there is one partition on hdb and hdb1.

Using fdisk

Step1
First you will use the fdisk command to erase any old partitions on the drive and create a new one. Any changes you make using fdisk are only made permanent if you then issue the “w” command before quitting, so feel free to play around a little if you like. If at any time you find yourself stuck, you can quit the program without saving changes by holding the "Ctrl" key and pressing "c."

Step2
At the command prompt, type “fdisk /dev/hdb” replacing the "hdb" with the letters for your drive. Upon opening, fdisk may give you a couple of warnings, all of which can be ignored. It then gives you a prompt that looks like this: Command (m for help):

Step3
Enter “p” to see the partition table of the drive. The first line of output from the “p” command will also tell you size of the drive. This is a good way to double check that you are working with the correct drive.

Step4
If there are any partitions already on the drive they will be listed as the last lines of the “p” command. On our example, this looks like “/dev/hdb1” followed by some information about the partition's size and file system.

Step5
To delete any existing partitions, press “d” then enter. It will ask you which partition number you wish to delete. The number of the partition is the number that follows hdb, so on our example system we enter 1. If there are multiple partitions repeat the “d” command for each one. You can always view the partition table again with the “p” command.

Step6
Once you have deleted all existing partitions on the drive you are ready to make a new one. Type “n” and hit enter. Then press “p” to create a primary partition. It asks you for a partition number, enter “1." Now you are asked which cylinder the partition should start at, the beginning of the drive is the default, so just hit Enter. Then you are asked for the last cylinder, the end of the drive is default so you can just press Enter again.

Step7
Now you are back at fdisk's command prompt. Use the “p” command to check the partition table. You should now see your new partition at the bottom of the output. In the example it lists “/dev/hdb1.”

Step8
You now need to set the filesystem type for your new partition with the “t” command. You are asked for the Hex code of the filesystem you wish to use. We wll use the standard Linux ext2 filesystem which is “83." If you are doing something special and know of a particular filesystem that you need to use, you can press “L” to see all the codes, which are one or two characters made up of the numbers 0-9 and the letters a-f.

Step9
Now just issue the “w” command to write your new partition table and exit fdisk.

Creating the New File System with mkfs

Step1
Now you need to create the filesystem on the drive. This is done with the “mkfs” command.

Step2
At the command prompt, enter “mkfs -t ext2 /dev/hdb1” while remembering to change the hdb1 to whatever the letters are for the partition you just created.

Step3
If you are using a different filesystem than ext2, you will have to specify that where "ext2" is in the above command.

Finalizing the Format with fsck

Step1
All that is left is to run a check on the drive and enter it into your fstab so that the drive mounts each time you start your computer. This can be done with a single fsck command.

Step2
At the command prompt, type “fsck -f -y /dev/hdb1” again replacing hdb1 with the letters and number for your partition.

Step3
After fsck runs, your new drive is formatted. Restart your system before using it.

Step4
If you reformatted your system drive, you will now need to boot off an installation disk to install an Operating system.

SOURCE:linux4u.com



































Add Signature to Outlook 2007

JUST FOLLOW THE STEPS

Step1
Open Microsoft outlook it will either be a shortcut on your desktop or from the start menu. Double click the icon on the desktop or single click the All Programs, menu option.
See picture

Step2
Options in outlook If outlook, shows outlook today for you as your start page, then go to your In-box. Once in your In-box we will want to now look at the menu items along the top select the Tools Menu then select options. See picture attached

Step3
Options Dialog Box Once you have selected options a new dialog box will appear.
See Picture

Step4
Mail Format Screen Once you are in the outlook options dialog box, you will need to make another selection here select the option for Mail Format. Once you have selected mail format, you will then want to click on Signature s on the lower right hand side. See picture attached

Step5
Signature box Once you have selected signatures a new dialog box will open up, this dialog box is the signature box. Picture attached

Step6
Signature box complete Once in this window click on “new” it will ask you for a name for your signature in outlook 2007, for this purpose I will name this ehow. Once you have entered your name, you will see it in the upper left hand side.
Once your name is in, you can use the large box below to enter your information.
See picture attached

Step7
Now that you are done click Save, and your signature will now be part of your emails. Be sure to enter a signature on the right hand side of the signature dialog box, or your signature will not be in your emails.

To add another signature, simply click on NEW and follow the same steps as before.

Create 3D Flash Photo Gallery

This tutorial shows you how to create 3D flash photo gallery to make your website/blog/Myspace more attractive in just simple.

Instructions

Step1
Import Media Import your photos & add background music.
Drag and drag your favorite digital photos to Story Board,and then process them with the built-in editing tool, which include some basic functions like crop, rotate, filter, etc by double clicking the images on the Story Board. Add a bunch of song as background music if you like.

Step2
Select Template Select "Template".
Choose a favorite template from “template” Tab.Here I select the first one of "3D Theme". Want to see more stunning templates, you can visit: http://www.ourpix.com/flash-slideshow-template.html

Step3
Select Preloader Select "Preloader".
Click "Set Preloader" on the "Template" Tab. Choose a gorgeous preloader for your own, here I choose "gear". And then, set "Percent Color" and "Background Color".

Step4
Publish Gallery Publish.
Modify some “Publish Settings" and create SWF Movie, also you can publish the 3D flash photo gallery as HTML file,Exe file,Screen Saver or even send to friends via email.

Done! Let's see our great work. Wanna a try? Just follow the steps and making your own 3D flash photo gallery.

source:http://forum.ourpix.com/forum/).

Add or Upload Music to Powerpoint Presentation

Wanna to have more fun and make your powerpoint presentation to be more interesting? With music upload would be more applicable to attract attention to your audience and match your content of your presentation.

Instructions
Step1
Go to Microsoft Office to open-> Powerpoint. In here is referring PPT version 2003. You can pick your favourite slides by choose Slide Layout, Slide Design (Color & Animation Scheme), Slide Transition. So after your prepare all your slides with your story content. Now you can add your background music

Step2
Choose your favourite Music/ Song. The must can be in waive, midi or mp3 format.
Go to Insert-> Movies and Sounds-> Sound from file. (choose your prepared music from your folder)

Step3
After click "OK" from the 'Insert' button
You will see a message box said:
"How do you want the sound start from your slide show" Two choices, either "Automatic" or "When clicked".
Mostly people will choose "Automatic" which means music will start automactic when slide shows begin.
If you choose "when clicked" which mean music will start will your click on each slide.

Step4
Music can play across different slides show by your favourite song.
Go to Slide Show-> Custom Animation-> Under Modify effect-> "Start After Previous". You may have to pick "Start Previous" Apply to every slides, then the song will stop until the last slides.

Step5
Under Custom Animation, you can also change your slides effect and speed. In 'Speed' you can choose very fast, fast, medimum, slow, or very slow. Whichever suit the needs of your presentation.

Step6
Slide Transition-> Advanced Slide->Automatically after
This function you can set how many minutes your slide will stay or hold on each presentation piece. If you choose "Apply to All Slide", all slide will have the same minutes to hold on every pieces. Usually people would like to set time difference in every slides because they wil have different needs in presentation.

Classroom Games using PowerPoint

Kids today are attracted to screens; television screens, computer screens, handheld game screens...and many classrooms are now blessed with some type of projection screen. Learn how to create a gameshow-style review game (Jeopardy! too old for your kids? Who Wants to Be A Millionaire is just as easy!) using Microsoft PowerPoint 2007 to make a fun review game that all of your kids will love.

Instructions

Step1
The first thing you want to do when designing a PowerPoint game for students is to pick an eye-catching design that'll grab and hold on to their attention. PowerPoint comes with a few pre-set designs that you can take your pick from by clicking the "Design" tab along the top of the window after opening PowerPoint 2007 (see picture). You can also change the colors of the design by using the buttons under the "Design" tab.

Step2
Most games use some sort of table of point values or dollars that can be clicked to bring up questions. To insert a "Jeopardy!" - style table, you will need to click the "Insert" tab and click "Table." You can drag your mouse to highlight the number of rows and columns you want (see picture); 6 by 6 fits pretty well for classroom game purposes.

Step3
Once your table is inserted, you will need to enlarge it to take up the whole slide, or at least most of it. The design will be covered for this slide, but don't worry, it will show on the question slides. Just click and drag the edges of the table to enlarge it to the size you desire. Then, you can type into the darker cells along the top of the table different catergories for your game (in the case of this image, the steps of the writing process). Also type point values (or dollars, or whatever you want) into each column of cells. We'll add hyperlinks in a moment.

Step4
You're going to want to make the text bigger and center it in the cells to make it more aesthetically pleasing (the kids love stuff that looks good). Highlight all of the cells, and under the "Home" tab, you can change the text font, size, and center it (see picture). Play with fonts and sizes until you find something you like.

Step5
You will need to create your question slides before you can link to them from the table slide you just created. To add a new slide to the show, simply right click in the pane on the left below the thumbnail of the slide you're working on. Select New Slide and a new slide with your chosen design will appear. Type your first question onto the new slide; we'll link to it from the table in a moment.

Step6
To hyperlink to this slide, now, you will have to go back to your first slide (the one with the table), highlight the cell in the first column, first row (for this example, the first "10"), and right-click. Select "Add Hyperlink." In the window that pops up, select "Place in this Document" in the left-hand pane (see picture). Once there, you can select the slide you want to hyperlink to (in this case, Slide 2), and a preview of it will even appear on the right. Click "OK," and you've got a hyperlink!

Step7
The hyperlinked text will now be a different color than the other text, and underlined. If you right-click it, you can choose to "Go To Hyperlink" and you will be brought to the slide you have hyperlinked to. Now, while playing the game, you will probably want to be able to jump right back to the table slide from the question slide. For this, you will want to put a "home" hyperlink on every question page that links back to the slide. I suggest clicking the "Insert" tab, selecting "Shapes," and clicking the action button that looks like a house on the bottom (see picture). You can turn this picture into a hyperlink to the first slide by right-clicking the house and repeating Step 6, linking to Slide 1. You can copy and paste this house to every question slide, and the link will work as long as you created the link before copying.

Step8
Make your question slides by repeating Step 5 as often as you need, and create hyperlinks to each question using Step 6, and you've got yourself a fun, clickable, classroom review game that the kids will love! Break students into teams and keep score for a motivating challenge they'll ask for again...and you'll be able to allow that with ease by simply changing the column titles and questions on the slides!

source:powerpoint
-forum.de

How to Burn Xbox 360 games using Mac

Do you want to burn xbox 360 games using mac just encase your having a party and you dont want everyone messing up your original copies or you just want to be safe? It is rather easy to burn Xbox 360 games on your Mac.

Instructions

Step1
To starting burning your xbox 360 games using your mac open up x360 ISO Hacker. Insert your original Xbox 360 game you want to copy. Click the Copy tab and you need to change a few settings. Unclick Hacked Ripped ISO and Burn ISO, Select the location you want to save your ISO. Click Start

Step2
Once it is finished it is time to burn the xbox 360 game using your mac. Close x360 ISO Hacker. I know that the x360 ISO Hacker has a burn tab but I don't recommend it, thats why I suggest using iBurn.

Step3
Insert a blank DVD into your drive. Open Iburn click the refresh button so that the program will find that you have a blank DVD in your drive. Click the drop down menu and select the drive that the blank DVD is in.

Step4
No to start burning your XBox 360 game using mac. Open a finder window and locate where your saved ISO is. Drag the ISO into the white box that says drop your xbox 360 image here. Select your writing recording speed. I personally don't recommend using for 2.4x recording speed when burning your xbox 360 games. The faster you use the easier it is for there to be a write error.

Tips & Warnings

  • Do not sell or distribute any of your burnt XBox Games. It is highly illegal and will get your self locked up.
  • Don't use over a 2.4x recording speed it will increase your chances of a write error and that will be a waste of a DVD.

Things You’ll Need:

  • IBurn360 This is the program you use. You can get that here - http://idog.appleguru.org/Home.html
  • X360 ISO Hacker which can be found here - http://www.wattks.com/macosx/x360/x360.html
source: warez-bb.org

About SATA Hard Drives

SATA stands for Serial Advanced Technology Attachment, a device in the computer motherboard. SATA, which uses a serial connection, replaces the older and slower parallel ATA (Advanced Technology Attachment) also known as PATA (Parallel Advanced technology Attachment). SATA utilizes thinner cables; it cools more effectively while running more reliably than ATA.

Function

Hard Disk Drive Hard Disk Drive The primary function of a SATA is to perform transmission of data in serial mode, one bit per time. It transfers data between the motherboard and other devices that provide mass storage, such as a hard drive, CD-ROM drives, and other components, such as RAM (Random Access Memory) and CPU (Central Processing Unit) of a computer. SATA supports all ATA and ATAPI (Advanced Technology Attachment with Packet Interface).

Types

There are different types of a Serial ATA: SATA 1.5Gb/s, SATA 3Gb/s, SATA 6Gb/s. SATA 1.5Gb/s, also known as, SATA/150 or SATA I, provides a transfer rate of 1.5 gigabits per second. The second type is SATA 3Gb/s or SATA/300, which provides a transfer rate of 3 gigabits per second. Another name for SATA 3Gb/s is SATA 2 or SATA II, which used to be the name of the SATA-IO (Serial ATA International Organization), a committee that defines the standards. The newest type of SATA is the SATA 6Gb/s or the SATA/600, which provides a transfer rate of 6 gigabits per second. The SATA 6Gb/s doubles the maximum throughput of the SATA300, which also benefits the flash read speeds.

Features

SATA cable SATA cable A SATA is a serial link or a single cable that has a minimum of four wires. SATA comes with flat cables compared to the older PATA, which has bulkier cables. A SATA cable can extend up to 1 meter long, while the PATA cable can only extend up to 40 centimeters long.

Considerations

When deciding on which SATA type to use, one would need to take into consideration the minimum requirements of utilization and transfer rates. For a personal computer, a SATA I would suffice, however, for enterprise-wide use the higher the transfer rates, provided by SATA II and SATA/600, the more efficient and reliable is the outcome.

Prevention/Solution

Redundancy, efficiency and speed are important for enterprise environments; that is why utilizing a SATA over an ATA is essential. The port selectors of a SATA II can allow two host connections on one drive, thereby providing redundancy. When one port or host fails, the spare one can pick up or take over the functions of the primary host, keeping the storage available for connections. Using NCQ (Native Command Queuing) improves the overall performance of a SATA II. The NCQ will provide the SATA II drive the algorithm to help improve performance by determining the best way and order to execute the commands.

Psoriasis Drug Raptiva

FDA Advises Public of Serious Adverse Event with Psoriasis Drug Raptiva

The U.S. Food and Drug Administration today issued a public health advisory concerning three confirmed, and one possible report of progressive multifocal leukoencephalopathy (PML), a rare brain infection, in patients using the psoriasis drug Raptiva (efalizumab). Three of those patients have died. All four patients were treated with the drug for more than three years. None of the patients were receiving other treatments that suppress the immune system.

The FDA is reviewing this latest information. The agency will take appropriate steps to:

  • ensure that the risks of Raptiva do not outweigh its benefits;
  • that patients prescribed Raptiva are clearly informed of the signs and symptoms of PML; and
  • that health care professionals carefully monitor patients for the possible development of PML.

PML is caused by a virus that affects the central nervous system. PML usually occurs in people whose immune systems have been severely weakened. It leads to an irreversible decline in neurologic function and death. Symptoms may include unusual weakness, loss of coordination, changes in vision, difficulty speaking and personality changes. There is no known effective prevention or treatment.

Psoriasis is a chronic disease, for which a number of effective therapeutic options are available, including four other approved biologic agents, ultraviolent light therapy, and the drugs cyclosporine, acitretin, and methotrexate. Generally, treatment for psoriasis patients involves a rotation of therapies.

In October 2008, the product labeling for Raptiva was revised to highlight in a boxed warning the risks of life-threatening infections, including PML. At that time, the FDA directed Genentech, the manufacturer, to develop a risk evaluation and mitigation strategy (REMS) to include a medication guide to educate patients about the drug’s risks.

The FDA strongly recommends that health care professionals carefully monitor patients on Raptiva, as well as those who have discontinued the drug, for any signs or symptoms of neurologic disease, and that they periodically reassess the benefits of continued treatment. Patients should be aware of the symptoms of PML and contact their health care professionals immediately if they experience any such symptoms.

Raptiva is a once-weekly injection approved for adults with moderate to severe plaque psoriasis who are candidates for systemic (whole body) therapy or phototherapy. The drug works by suppressing T-cells (blood cells that help fight infection) in the immune system. These cells, when activated, migrate to the skin and cause inflammation which results in the red, inflamed and scaly patches of skin, which is associated with psoriasis. By suppressing T-cells, Raptiva decreases the function of the immune system which increases a patient’s susceptibility to infections.

Health care professionals and consumers may report serious adverse events (side effects) or product quality problems with the use of this product to the FDA's MedWatch Adverse Event Reporting program online, by regular mail, fax or phone.

--Online: www.fda.gov/MedWatch/report.htm
--Regular Mail: use postage-paid FDA form 3500 available at: www.fda.gov/MedWatch/getforms.htm and mail to MedWatch, 5600 Fishers Lane, Rockville, MD 20852-9787
--Fax: (800) FDA-0178
--Phone: (800) FDA-1088

Read the FDA’s 2009 Public Health Advisory

Monday, February 9, 2009

Wednesday, February 4, 2009

Safety Review of Xigris

FDA Issues Early Communication about a Safety Review of Xigris

The U.S. Food and Drug Administration today announced that it is working with the maker of Xigris (drotrecogin alfa activated), Eli Lilly and Company, to further evaluate the incidence of serious bleeding events and death in patients who receive Xigris, a drug used to treat severe sepsis (a blood stream infection).

A recent study and an accompanying editorial published in the journal Critical Care Medicine reported an increased risk of serious bleeding events and death in patients with sepsis and baseline bleeding risk factors who received Xigris. The study, a retrospective review of medical records of 73 patients who were treated with Xigris, found that serious bleeding events occurred in seven of 20 patients (35 percent) who had a bleeding risk factor versus two of 53 (3.8 percent) of patients without any bleeding risk factors. More patients with baseline bleeding risk factors died (13 of 20, or 65 percent) compared with patients without any bleeding risk factors (13 of 53, or 24.5 percent). As noted by the authors, limitations of this study include the retrospective design (looking back at events that already have taken place) and small patient population.

Xigris is known to increase the risk of bleeding. The drug’s current prescribing information (labeling) includes a warning that describes bleeding as the most common serious adverse effect and lists a number of risk factors that should be carefully considered when deciding whether to use Xigris. The labeling contraindicates the use of Xigris in several clinical situations where bleeding could lead to significant adverse reactions or death.

The FDA is not recommending that prescribers stop administering this medication. Consumers and health care professionals should notify the FDA of any complaints or problems associated with this product. These reports may be made to MedWatch, the FDA’s voluntary reporting program, by calling 800-FDA-1088, or electronically at www.fda.gov/medwatch/report.htm.

The FDA uses a variety of tools to communicate important and sometimes emerging drug safety information. Early Communications mean that the FDA has begun an ongoing safety review about an important drug safety issue that has not yet been fully analyzed or confirmed by the agency. The FDA will announce its conclusions and any resulting recommendations to the public when the review of Xigris is completed, which may take several months.

The full Early Communication can be found here: http://www.fda.gov/cder/drug/early_comm/drotrecogin_alfa.html