Outlook has a lot of great features to check email, send email, create appointment and meeting request to improve the work activities. When the size of the emails gets bigger or you are allocated a certain size of email space, you will need to check how much data you are storing with Outlook. To check the data size, you can

- Click on “Tools” and “Mailbox cleanup”
- Click on “Mailbox Size”

Total size including subfolders will be calculated and shown. If you want to decrease the email size, you can either delete some emails or move the emails to a local drive by creating a folder on the left side of folder section in Outlook.

none

Morgan dollar is a true American gem which minted between 1878 to 1904 and 1921 with around one ounce of silver. Due to its design and recent interest in the silver metal, there are a lot of interest from the counterfeit coin manufacturers to fake this dollar.  Here are few tips to make sure that you dont buy fake Morgan dollar.

1- Measure the weight, always. Regardless of the mint year and location, Morgan dollar should always weigh 26.37 grams. If there is a significant weight difference (say, 24 grams, etc), it is a good proof that the Morgan dollar is fake.

2- Look at the quality of mint. If the surface of coin is not smooth an has a lot of gas bubbles, it can be cast and it is more likely fake. Here is a genuine coin that weighs 26.35 grams.

With these small tips, you can always prevent buying fake Morgan dollars.

none

If you want to send money overseas and want the recipient to have the money in around 10 minutes, MoneyGram is the fastest way to do it. You can send money in following way:

- First, make sure you are certain that you are sending the money for the right reason. If there is a 1% probability to be scammed, you could be scammed. When you are absolutely sure that you are sending the money for the right reason, you need to check the location of the MoneyGram agent in your area. To do this, you can use http://moneygram.com website.

- Arrive the agent location and make sure to bring enough cash to cover the transaction. Moneygram doesnt accept credit or debit card. You estimate the fees as following: If you want to send $500, the fees are around $10.

- In the agent location, there is a red phone. Once you give your name and the name of the recipient, make the payment to the agent. Make sure that the name of the recipient is spelled correctly so that there will be no confusion when the money is transacted.

- Email the reference number to the recipient so that he/she can get the money in 10 minutes after you send. You can find the reference number in the receipt that you received during the payment to the agent. Without reference number, the recipient cannot get the money.

- If the recipient doesn’t get the money in 45 days, you can get refund except the money sending fees that you paid.

Enjoy the fast money sending service but please make sure that you are sending the money for the right reason.

none

If you want to send a fax over the internet, there are many sites providing this service. https://faxzero.com is one of the leading site and you can send free fax up to 3 pages online. If you dont want any cover page with FaxZero name in it, you can pay $1.99 by Paypal to send fax up to 10 pages without cover pages with FaxZero logo.

none

Nicedit is one of the most versatile and light-weight WYSIWYG editor on the internet. It has been written by a couple of young developers and you can download it from  www.nicedit.com. While it is a great editor, the manual hasnt been fully established. Here are couple of tips if you want to implement the Nicedit to your PHP code:

How to implement Nicedit: You can use the following html code to use Nicedit. In terms of handling pictures, it still needs to be improved but the rest of the features are very good.

<html>

<head>

<title> Editor</title>

</head>

<body>

<form action=”index.php?page=update_article_member” method=”post” >
<input type=”hidden” name=”ArticleID” value=”{$id}”>
<input type=”hidden” name=”ArticleUserID” value=”{$ArticleUserID}”>
{literal}
<script src=”template/nicEdit.js” type=”text/javascript”></script>{/literal}{literal}
<script type=”text/javascript”>
bkLib.onDomLoaded(function() {
new nicEditor({fullPanel : true, iconsPath : ‘template/nicEditorIcons.gif’}).panelInstance(‘area1′);
});
</script>{/literal}
<br>
Title: <input type=”text” name=”article_title” value=”{$title}” maxlength=”200″ size=”100″ style=”width:500px;”/>
<br>
Tags: <input type=”text” name=”article_tags” value=”{$tags}” maxlength=”200″ size=”100″ style=”width:500px;”/>
<br>
<textarea cols=”70″ id=”area1″ name=”blog” value=”{$blog}”>{$blog}</textarea>

<input type=”submit” value=”Submit”>
</form>

</body>

</html>

none

In order to find a specific keyword in multiple files, searching large number of files manually is not easy task and you could spend hundred of hours if files are large and the number of the files are more than 20. Here is a hint how to make an efficient file search within the files:

1- Open Command Prompt by typing ‘cmd’ after pressing Windows+R keys
2- Use find function in MSDOS and do the following as an example:
find “165″ c:\Python26\work\traveler\*.*
3- The files will be opened automatically and the file names will be shown in the screen. The sections in the files containing the keyword will be shown in the screen.

none

Due to increased security policies, most of us are required to change the passwords almost every month and you can’t use your 5 previous passwords. Here is a useful Matlab code to simulate a password that contains, numbers, letters and special characters. You can save the file as makePass.m or remove the function line and execute without function mode. Enjoy.

function pass=makePass;

pool={'1','2','3','4','5','6','7','8','9','0','a','b','c','d','e','f','g','h',...
        'i','j','k','l','m','n','o','p','r','s','t','u','v','w','y','z','!','@','#','$','%','^','&','*'};

    aa=ceil(rand(1,8)*42);

    pass=[pool{aa(1)} pool{aa(2)} pool{aa(3)} pool{aa(4)} pool{aa(5)} pool{aa(6)} pool{aa(7)} pool{aa(8)}];

2 com

Matlab is a high level language software where you can do so many interesting things. Here is another example where you can play music. Who knows, maybe you can be the next Mozart by creating a unique song.

In this code, zz and zzz randomly simulates 8 notes each and z combines all simulates notes. After each simulated 8 notes, there is a pause listen the melody easier. You can save the file as an .m file, execute and listen melodies that never been heard before.

Enjoy and if you want to read more on the following url: http://nlolab.swarthmore.edu/webstuff/Phys22/MatlabWkShpII/MatlabWkShpII.pdf as it was the main inspiration of this code.

 

x=1:5000;
x=x/10000;
aa(:,1)=sin(2*pi*440*x); %do
aa(:,2)=sin(2*pi*9/8*440*x); %re
aa(:,3)=sin(2*pi*5/4*440*x); %mi
aa(:,4)=sin(2*pi*4/3*440*x); %fa
aa(:,5)=sin(2*pi*3/2*440*x); %so
aa(:,6)=sin(2*pi*5/3*440*x); %la
aa(:,7)=sin(2*pi*15/8*440*x); %ti
aa(:,8)=sin(2*pi*2*440*x); %do2
%z=[do re mi fa so la ti do2];

zz=ceil(rand(1,8)*8);
zzz=ceil(rand(1,8)*8);
ps=aa(:,zz(1))'*0;

z=[aa(:,zz(1))'  aa(:,zz(2))' aa(:,zz(3))'  aa(:,zz(4))' aa(:,zz(5))'  aa(:,zz(6))' aa(:,zz(7))'  aa(:,zz(8))' ps ps ps ps ...
    aa(:,zzz(1))'  aa(:,zzz(2))' aa(:,zzz(3))'  aa(:,zzz(4))' aa(:,zzz(5))'  aa(:,zzz(6))' aa(:,zzz(7))'  aa(:,zzz(8))' ps ps ps ps ...
    aa(:,zz(1))'  aa(:,zz(2))' aa(:,zz(3))'  aa(:,zz(4))' aa(:,zz(5))'  aa(:,zz(6))' aa(:,zz(7))'  aa(:,zz(8))' ps ps ps ps ...
    aa(:,zzz(1))'  aa(:,zzz(2))' aa(:,zzz(3))'  aa(:,zzz(4))' aa(:,zzz(5))'  aa(:,zzz(6))' aa(:,zzz(7))'  aa(:,zzz(8))' ps ps ps ps];

sound(z,10000);
none

If someone sends you an email with an attachment with .mdb, .exe, .bas extensions, Outlook probably blocks them due to default security settings. Here are the tips how to access those files:

  1. In Windows run “regedit” and find the following key:
  2. HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Outlook\Security (change 10.0 to 9.0 for Outlook 2000 SP3 or to 11.0 for Outlook 2003)
  3. After clicking this key, create a new string value under this directory: Level1Remove.
  4. As the value of this string, write down the extensions of the files that you would like to access: For .exe files, type:
    .exe
    For multiple attachment extensions, type:
    .exe;.bas
  5. Save and restart the Outlook. You should be able to access the attachment.
none

Mozilla Firefox 4 has been released in less than a month ago and become very popular. If you are having difficulty to recover the previously opened tabs, try the following in Mozilla Firefox 4:

  1. Click on ‘Tools’ in the top menu of Mozilla Firefox 4
  2. Click on ‘Options’
  3. In the ‘main’ tab, select ‘Show my windows and tabs from last time’ on ‘When Firefox starts’ section.
  4. Click ‘OK’.

You should be able to recover the previously visited tabs and windows in Mozilla Firefox 4. You can use the same tricks to recover your visited tabs in Mozilla Firefox 3 too.

none

archives

Recent Posts

Our Network:


CleanPC.org
Cleaner PC Guide

CouponsDeals.net
Coupons and Deals Guide

Daily Diet Food
Website for Daily Diet Recipes

FairyBird.com
Website for Photo Albums

HaberRSS.com
Read News from anywhere

MaterialsDigest.com
Open Source Article Directory

Raitora.com
Renewable Energy Consulting Company
ShopDirectBuy.com
Shop Direct Buy online

Shop Woman Clothes
Shop Woman Clothes online

Sozluklu.com
Useful Tips/Articles in Turkish

TraveltoCure
Health Tourism Agency to Turkey

YarimEkmek.com
Connect with your friends in Turkey

Zagao.com
Auctions with No Seller or insertion fees

Polls

How often do you check you scan your computer for computer viruses?

View Results

Loading ... Loading ...

Tags

Categories

Meta

tag cloud