<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
<channel>
<title>stephan</title>
<link>http://www.computersight.com//stephan.</link>
<description>New posts by stephan</description>
<item>
<title>Adobe Photoshop Express</title>
<link>http://www.computersight.com/Software/Photoshop/Adobe-Photoshop-Express.105926</link>
<description>
<![CDATA[<p>A short while ago Adobe launched a free online version of their Photoshop program. It can be accessed <a href="http://www.photoshop.com/express" target="_blank">here</a>. For those that re not familiar with Photoshop, it is a software that allows you to edit pictures. Alot of professionals are using it to improve images. You probably have heard about the question "Have you googled it?" meaning have you searched for it on the Internet. Well there is also the question "Have you photoshoped it?" meaning have you edited the image.</p>
 
<p>Photoshop is a quite expensive program but it is worth it. Now the free online version is certainly not a full blown application. It can do a few things but will not replace the application it self.</p>
 
<p>Photoshop Express is free to sign up to. Adobe gives you a 2GB space on which you can create albums and upload images to. From there you can download images, email them to friends and family and also link to from other websites.</p>
 
<p>The Interface is simple and easy to use. It is clear about where you have to click to get certain actions. No need to search for hours to find a simple function.</p>
 
<p>When you start editing your images, you will be able to access three types of tools:</p>
 <ol>
<li>Basics</li>
<li>Tuning</li>
<li>Effects</li>
</ol> 
<p>In the Basic Tools you will find tools to crop the image or rotate it, auto correct colors, change the exposure, remove red eyes and a couple more.</p>
 
<p>The Tuning Tools are quite usefull too. Here you can change the White Balance, sharpen or soften the images, change the fill light and more.</p>
 
<p>The effect tools are as well only very basic. You can distort thr image, change it into a sketch image, change it to a black and white one and some other tools.</p>
 
<p>All together Adobe managed to createa useful application and if they continue to improve it, they will be able to match the full blown application soon. The question then will be if they will continue to offer this service for free or for a charge.</p>
 
<p>Well done Adobe.</p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FSoftware%2FPhotoshop%2FAdobe-Photoshop-Express.105926"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FSoftware%2FPhotoshop%2FAdobe-Photoshop-Express.105926" border="0"/></a>]]></description>
<pubDate>Mon, 07 Apr 2008 06:51:39 PST</pubDate></item>
<item>
<title>Cpanel Automation</title>
<link>http://www.computersight.com/Programming/PHP/Cpanel-Automation.80002</link>
<description>
<![CDATA[																																																<p>Are you running or planning on running a community website? If so how would you like to give every user automatically an email address, a sub domain and a ftp account? You might think that you need a special server in order to do this. But you are wrong. If your Hosting Control Panel is CPanel then you can still do this easily.</p>
 
<p>Before you look at the code and start playing with it you need to remember a few things.</p>
 
<ul>
<li>Never trust the input of your users and always validate their input</li>
<li>Nothing is 100% secure</li>
<li>Always test, test, test, test before releasing new functionality to users</li>
</ul>
<p>In order to set up this automatization you need a few things.</p>
 
<ul>
<li>CPanel username</li>
<li>CPanel password</li>
<li>Your domain</li>
<li>CPanel port</li>
<li>CPanel theme</li>
</ul>
<p>You should know your username and password already. If not you need to contact your hosting company. If you log into your CPanel and look at the address bar in your browser you can easily find out the rest of the information.</p>
 
<p>Sample URL</p>
 <p>http://www.yourdomain.com:2082/frontend/x/index.html www.yourdomain.com = Your domain2082 = CPanel portx = CPanel theme</p> 
<p>With this information you can now use the php class below. It is very easy. It has the following features</p>
 Features
 
 
<p><strong>Emails: </strong></p>
 
<ul>
<li>Create Email addresses </li>
<li>Delete Email addresses</li>
<li>Change Email address Password</li>
<li>Change Quota of Email address in box</li>
</ul>
<p><strong>FTP:</strong></p>
 
<ul>
<li>Create FTP account</li>
<li>Delete FTP account</li>
<li>Change FTP account Quota </li>
<li>Change FTP account Password</li>
</ul>
<p><strong>Subdomain:</strong></p>
 
<ul>
<li>Create Subdomain</li>
<li>Delete Subdomain </li>
<li>Create Redirection for a subdomain</li>
<li>Delete Redirection of a subdomain</li>
</ul>
<h3>PHP Class</h3>
 
<p>Simply copy the code below into a file and call it anything you want ie cpanel.php</p>
 
<p> </p>
 
<p></p>
<pre>class cpanel {
 
 	var $cpanel_username = "user";
 	var $cpanel_password = "pass";
 	var $your_domain = "www.domain.com";
 	var $port = "2082";
 	var $cpanel_theme ='x';
 	var $url = '';
 
 	function cpanel () {
 	 $this->url = "http://".$this->cpanel_username.':'.$this->cpanel_password. '@'.$this->your_domain.':'.$this->port.'/frontend/'.$this-> cpanel_theme;	
 	}
 
 	// email
 	function CreateEmail($user,$domain,$password,$quota) {
         @file($this->url.'/mail/doaddpop.html?email='.$user.'&amp;domain='. $domain.'&amp;password='.$password.'&amp;quota='.$quota);
     }
 
     function DeleteEmail($user,$domain) {
         @file($this->url.'/mail/realdelpop.html?email='.$user.' &amp;domain=' .$domain);
     } 
 
     function UpdateEmailQuota($user,$domain,$quota) {
         @file($this->url.'/mail/doeditquota.html?email='.$user.' &amp;domain= '.$domain.'&amp;quota='.$quota);
     } 
 
     function UpdateEmailPassword($user,$domain,$password) {
 	 @file($this->url.'/mail/dopasswdpop.html?email='.$user.' &amp;domain= '.$domain.'&amp;password='.$password);
 	}
 
 	// ftp
 	function CreateFTP($login,$password,$homedir,$quota) {
         @file($this->url.'/ftp/doaddftp.html?login='.$login.'&amp;password=' .$password.'&amp;homedir='.$homedir.'&amp;quota='.$quota);
     }
 
     function DeleteFTP($login) {
         @file($this->url.'/ftp/realdodelftp.html?login='.$login);
     }
 
     function UpdateFTPQuota($login,$quota) {
 	 @file($this->url.'/ftp/doeditquota.html?acct='.$login.'&amp;quota='. $quota);
 	}
 
     function UpdateFTPPassword($login,$password) {
 	 @file($this->url.'/ftp/dopasswdftp.html?acct='.$login.'&amp;password ='.$password);
 	}
 
 	// subdomains
 	function CreateSubDomain ($domain,$root) {
 	 @file($this->url.'/subdomain/doadddomain.html?domain='.$domain. '&amp;rootdomain='.$root);
 	}
 
 	function DeleteSubDomain ($domain,$root) {
 	 @file($this->url.'/subdomain/dodeldomain.html?domain='.$domain. '_'.$root);
 	}
 
 	function CreateRedirect ($domain,$root,$url) {
 	 @file($this->url.'/subdomain/saveredirect.html?domain='.$domain. '_'.$root.'&amp;url='.urlencode($url));	
 	}
 
 	function DeleteRedirect ($domain,$root) {
 	 @file($this->url.'/subdomain/donoredirect.html?domain='.$domain. '_'.$root);	
 	}
 }
 
 
 ?></pre>
 
<h3>How to use the class</h3>
 
<p>First you must include the class</p>
<p>include('cpanel.php');
 
 Then you must create a new object
 
 $cpanel = new cpanel();</p>
 
<p>Lets go quickly through the different functions</p>
<p>CreateEmail($user,$domain,$password,$quota)
 $user: The username before the @
 $domain: After the @ (without the www.)
 $password: Password for the email account
 $quota: How much space you give the email account (0=unlimited)</p>
 
<p>Example:</p>
<p>$cpanel->CreateEmail('Mark','mydomain.com','password','10');
 
 DeleteEmail($user,$domain)
 $user: The username before the @
 $domain: After the @ (without the www.)</p>
 
<p>Example:</p>
<p>$cpanel->DeleteEmail('Mark','mydomain.com');
 
 UpdateEmailQuota($user,$domain,$quota)
 $user: The username before the @
 $domain: After the @ (without the www.)
 $quota: How much space you give the email account (0=unlimited)</p>
 
<p>Example:</p>
<p>$cpanel->UpdateEmailQuota('Mark','mydomain.com','0');
 
 UpdateEmailPassword($user,$domain,$password)
 $user: The username before the @
 $domain: After the @ (without the www.)
 $password: Password for the email account</p>
 
<p>Example:</p>
<p>$cpanel->UpdateEmailPassword('Mark','mydomain.com','newpassword');
 
 CreateFTP($login,$password,$homedir,$quota)
 $login: This will be the username. Usually it will get the domain name added ie @yourdomain.com
 $password: Password for the email account (always from your rot directory)
 $homedir: Which directory he can access. (!!carefull don't give them access to your root directory.)
 $quota: How much space you give the ftp account (0=unlimited)</p>
 
<p>Example:</p>
<p>$cpanel->CreateFTP('Mark','password','/Mark','100');
 
 DeleteFTP($login)
 $login: This will be the username without the @yourdomain.com</p>
 
<p>Example:</p>
<p>$cpanel->DeleteFTP('Mark');
 
 UpdateFTPQuota($login,$quota)
 $login: This will be the username without the @yourdomain.com
 $quota: How much space you give the ftp account (0=unlimited)</p>
 
<p>Example:</p>
<p>$cpanel->UpdateFTPQuota('Mark','200');
 
 UpdateFTPPassword($login,$password)
 $login: This will be the username without the @yourdomain.com
 $quota: How much space you give the ftp account (0=unlimited)</p>
 
<p>Example:</p>
<p>$cpanel->UpdateFTPPassword('Mark','newpassword');
 
 CreateSubDomain ($domain,$root)
 $domain: the subdomain name i.e. Mark
 $root: the domain i.e. yourdomain.com</p>
 
<p>Example:</p>
<p>$cpanel->CreateSubDomain('Mark','mydomain.com',);
 
 DeleteSubDomain ($domain,$root)
 $domain: the subdomain name i.e. Mark
 $root: the domain i.e. yourdomain.com</p>
 
<p>Example:</p>
<p>$cpanel->DeleteSubDomain('Mark','mydomain.com');
 
 CreateRedirect ($domain,$root,$url)
 $domain: the subdomain name i.e. Mark
 $root: the domain i.e. yourdomain.com
 $url: where you which to redirect the user to i.e. http://www.yournewdomain.com</p>
 
<p>Example:</p>
<p>$cpanel->CreateRedirect('Mark','mydomain.com',
'http://www.mynewdomain.com');
 
 DeleteRedirect ($domain,$root)
 $domain: the subdomain name i.e. Mark
 $root: the domain i.e. yourdomain.com</p>
 
<p>Example:</p>
<p>$cpanel->DeleteRedirect('Mark','mydomain.com');</p>
 
<p>So I hope this will help you and please remember that you need to test loads before you can release this functionality to your users. You need to make sure that it is safe which I can guarantee. Just imagine if something goes wrong and you give one of your users access to your root directory.</p>
 
<p>Enjoy</p>																																										<a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FProgramming%2FPHP%2FCpanel-Automation.80002"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FProgramming%2FPHP%2FCpanel-Automation.80002" border="0"/></a>]]></description>
<pubDate>Mon, 04 Feb 2008 11:03:43 PST</pubDate></item>
<item>
<title>Generate Random Password with PHP</title>
<link>http://www.computersight.com/Programming/PHP/Generate-Random-Password-with-PHP.79972</link>
<description>
<![CDATA[<p>This function generated a random password of a desired length. The default length is 10 but you can easily change the length by passing the desired length to the function.</p>
 
<p>function randomPassword ($passwordLength = 10) {
 
   // First we start with an empth password
   $randPassword = '';
 
   // Then we say which characters we want to have in the random password
   $allowedCharacters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; 
 
   // We add the desired number of characters to the password
   for ($i=0; $i &amp;lt; $passwordLength; $i++) { 
 
     // We randomly choose a new character
     $character = substr($allowedCharacters, mt_rand(0, strlen($allowedCharacters)-1), 1);
 
     // And add it to the randmom password
     $randPassword .= $character;
 
   }
 
   // Simply return the generated password and DONE
   return $randPassword;
 
 }
 ?&amp;gt;</p>
 
<p>And this is how it is being used.</p>
 
<p>Save the function in a file and call it password.php</p>
 
<p>Then in the same folder create a file and call it passwordtest.php</p>
 
<p>In the file password test write the following code</p>
 
<p>include('password.php');
 
 echo "A random password with default length: ";
 echo randomPassword();
 
 echo "<br />A random password with a length of 6 characters: ";
 echo randomPassword(6);
 ?&amp;gt;</p>
 
<p>Hope you can use this function.</p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FProgramming%2FPHP%2FGenerate-Random-Password-with-PHP.79972"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FProgramming%2FPHP%2FGenerate-Random-Password-with-PHP.79972" border="0"/></a>]]></description>
<pubDate>Mon, 04 Feb 2008 10:26:54 PST</pubDate></item>
<item>
<title>Free Up Some Space on Your Computer</title>
<link>http://www.computersight.com/Computers/Free-Up-Some-Space-on-Your-Computer.61139</link>
<description>
<![CDATA[<p>Are you running out of space on your hard drive? There are some easy simple and basic ways to free up some space.

</p>


<h3>
Run the Disk Cleanup Utility.</h3>




<ol><li>Click on Start  </li>
<li>All Programs </li>
 <li>Accessories </li>

<li>System Tools</li>

<li>Disk Cleanup </li></ol>




<p>First you need to select the drive you wish to clean up and press OK. The Tool will then analyze your hard drive and calculate how much space you could gain by running this tool. This may take a few minutes. You will see a selection of data types and how much you could save by deleting them.</p>


	
<p>Downloaded Program Files: These are Active X controls and Java applets that you have downloaded / installed from websites. If you delete these files you will have to install them again when you visit the website which uses the applet or control. If there are any big applets or active x controls that you use regularly then maybe you should not delete them. If the space you could save you should consider deleting them.
	</p>

	 
<p>Temporary Internet Files: When you look at websites some files will be saved on you computer to speed up browsing. This is especially true for images and JavaScript files. There is a big chance that you want to delete them all.</p>

	
	 <ul><li>Offline WebPages: same as above.</li>
	
	 
<li>Recycle Bin: Don't think I need to say anything else</li>

	
	
<li>Temporary Files: You can probably delete them all. </li>

<li>Whenever you start writing a word document without saving the content will be saved there.  </li>   


	 
<li>Compress Old Files: If you don't use files for a long time, Windows can compress them and save a little bit more space. Next time you use the file you may find that it will take slightly longer to open it though. Usually you won't save much space by doing it.
	</li></ul>

	
	
<h3>Next we will have a look at the More Options Tab</h3>

	
	 <ul>
<li>Remove Window Components: There might be some features of Windows that you never use. Have a look through the list and uninstall them. You can always install them later again.</li>

	
	 
<li>Remove Installed Programs: Have a look through the list of software you installed. There might be some that you have forgotten about and that you don't use. Only uninstall those that you are not using.</li>


	
<li>Remove System Restore: If you install and uninstall a lot of software then there is a good chance that this can free up a lot of space. Before you do this make sure everything is working fine on your computer</li>
</ul>

<h3> Convert Bitmaps</h3>



<p>Many articles don't mention this step. Bitmap images can be very large and you can convert them to jpg and save a lot of space. You can convert a 2.3MB bmp image to about 0.1MB jpg image. It always depends on what is in the image. 
</p>


<ol><li>First find the images.</li>



<li>Click on Start -> Search</li>



<li>Choose the option Pictures, Music or Videos</li>



<li>Select the box "Images and Photos" and enter bmp in the box "All or part of the file name:"
</li></ol>


<p>You probably want to change the way you view the images so you can see how big they are. To do this go to the menu and click on "View" and select "Details".
</p>


<p>Now when you look through the list of images you need to make sure that you DO NOT convert images that are used by other programs as this my cause them to not work correctly.
</p>


<p>If you have found an image open it with paint and click on "Menu - > Save as" and select the JPG image type. Then you can delete the bmp image.  </p>

<h3>
 Run Defragmenter Utility.</h3>




<p>Click on Start -> All Programs -> Accessories -> System Tools -> Disk Defragmenter</p>




<p>Since you have deleted a lot of files you can free up some more space by eliminating some holes on your hard drive. This will also speed up your computer a little. </p>



<p>If you have a large hard drive this might take a while. You can do this overnight but remember to switch all appliances that are not needed (i.e. Printer, Scanner, Speakers, Monitor) off to safe electricity.</p>



<h3> Finished. </h3>


<p>You should have now plenty more space. But I have to mention that you take the above steps on your own responsibility. I will not take and responsibility if something happens which will result in loss of data or anything else.</p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FComputers%2FFree-Up-Some-Space-on-Your-Computer.61139"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FComputers%2FFree-Up-Some-Space-on-Your-Computer.61139" border="0"/></a>]]></description>
<pubDate>Fri, 23 Nov 2007 10:35:11 PST</pubDate></item>
<item>
<title>Free Software for Your Business</title>
<link>http://www.computersight.com/Software/Free-Software-for-Your-Business.60829</link>
<description>
<![CDATA[<p>There are millions of websites and some of them can actually help you run your business. These online tools will make it possible to access your company information wherever you are and all you need is a internet connection. It also can help your company if you are spread over different locations.</p>
 
 <p>I compiled some of the most useful online tools that are free of charge here.</p>
 
 <h3><a href="http://www.whosoff.com/">Who's Off</a></h3>
 <p>Struggling to manage your holiday calendar? With WhosOff you can run reports and see on a monthly basis or yearly basis who is on holiday and whos not. Your employees can even put in holiday requests.</p>
 
 <h3><a href="http://www.ask500people.com/">Ask 500 People</a></h3>
 <p>Do you need to run a short questionnaire and struggling to find the people. Try Ask500People and you can get feedback from 500 people and you can see them answering in real time.</p>
 
 <h3><a href="http://mind42.com/">Mind 42</a></h3>
 <p>With mind42 you can create your mind maps online alone or with other employees. If they are in the same room or on the other side of the World. Brilliant.</p>
 
 <h3><a href="http://www.walletproof.com">Walletproof</a></h3>
 <p>Struggling to keep your finances straight? Scribbling your figures still and pieces of scrap paper and loosing them? Have a look at Walletproof and get organised!</p>
 
 <h3><a href="http://www.sidejobtrack.com/index_old.php">Side Job Track</a></h3>
 <p>Do you struggle to keep track of projects, estimates and invoices? SideJobTrack has exactly what you need. You will never forget about an unpaid invoice or any estimates and quotes.</p>
 
 <h3><a href="http://www.actionize.com/">Actionize</a></h3>
 <p>Get your projects back under control. With this tool you can create projects and tasks and assign them to your employees.</p>
 
 <p>All these tools will help you to work as a team and be successful. Even if your team is spread throughout the world. Doesn't matter. If you know of any other tools just post the links below.</p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FSoftware%2FFree-Software-for-Your-Business.60829"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FSoftware%2FFree-Software-for-Your-Business.60829" border="0"/></a>]]></description>
<pubDate>Thu, 22 Nov 2007 07:27:15 PST</pubDate></item>
<item>
<title>The Don'ts And Dos Of Passwords</title>
<link>http://www.computersight.com/Communication-&amp;-Networks/Security/The-Donts-And-Dos-Of-Passwords.60560</link>
<description>
<![CDATA[<p>I hear so often that people complain that someone managed to "break" into their Facebook or email account. When I speak to them and ask them questions I soon find out that it was just a matter of time until their password was figured out.  Here is a list of don'ts and Dos that hopefully will help keeping your "private" stuff really private.</p>
 

<h3> Don'ts</h3>

 <p>Never ever use you user name as the password. That is probably one of the first thing people try. Other things that peopletry as passwords are Calendar months i.e. March or week days i.e. Monday. you should also never use dates as passwords. So if you are thinking about using your birthday as password forget it think again. When choosing a password never use a sequence ie 22222222 or 12345678 or qwertyu.</p>
 
<p>
 If your password is in the dictionary of any language then there is a very good chance that some hacker will be able to break into your account.
 
 Password should be kept secret. Don't share them with anyone and don't write them down. If you have to give someone your password for whatever reason, make sure you change it asap after the person has finished with whatever he/she was doing. 
 
 I have friends that use the same password on all websites that they use. Does that make sense? No! If one account is broken into all of them are broken into. Which leads us to the Does.
 </p>

 
<h3>Dos</h3>

 <p>Make sure you use different passwords for different websites. make it as difficult as possible for anyone to simply guess your password. Use a mixture of UPPERCASE and lowercase letters and as many numbers and symbols (where allowed) as possible. Make sure you your chosen password is at least 8 characters long and remember the longer the better. </p>
 
<p>
 Microsoft has a website where you can check your password strength. (HERE) You might be surprised that your password is very weak.
 
 Change your password regularly. Every month if possible but at least every 90 days.
 
 I hope this will help you to keep your stuff save and secure.
</p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FCommunication-%26amp%3B-Networks%2FSecurity%2FThe-Donts-And-Dos-Of-Passwords.60560"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FCommunication-%26amp%3B-Networks%2FSecurity%2FThe-Donts-And-Dos-Of-Passwords.60560" border="0"/></a>]]></description>
<pubDate>Wed, 21 Nov 2007 09:09:12 PST</pubDate></item>
<item>
<title>Free Software - Part 2</title>
<link>http://www.computersight.com/Software/Free-Software---Part-2.59998</link>
<description>
<![CDATA[<p>If you haven't read 
<a target="_blank" href="http://www.computersight.com/Software/Free-Software---Part-1.58773">Part 1 of my guide,</a>
 please do this first.</p> 
 
 



 <p>Here are a few more free software programs which could be useful to you:</p>
 

<h3> Photoshop</h3>

 <p>I haven't actually tried this one yet (only because I haven't had time) but <a href="http://www.getpaint.net/index.html">Paint.NET</a> looks very promising.</p>
 

<h3> Antivirus</h3>

 <p>There are quite a few anti virus programs around try one of these <a href="http://www.clamav.net/">ClamAV</a>, <a href="http://www.avast.com/">Avast</a>, <a href="http://www.free-av.com/">AntiVir</a> or <a href="http://free.grisoft.com/">AVG</a>. Well you could simply try all 4 of them since it doesn't cost you anything.</p>

 
 
<h3>Sound Recording Editing</h3>


 <p>There are probably better once out there but they will charge you for their software. So try <a href="http://audacity.sourceforge.net/">Audacity</a>. It certainly has some nice features and I am sure you will get used to it.</p>

<h3> 
 Winzip</h3>

 <p>There is a complete free software called <a href="http://www.7-zip.org">7-zip</a>. Can extract from many different formats but sadly can not compress into the same. But hey, it's free. </p>
 

<h3> Sage</h3>

 <p>Fed up with paying loads of money for sage but then not even use all its features that you pay for. Maybe <a href="http://www.turbocashuk.com/">Turbocashuk</a> can help you to save a little bit of cash. Not sure how good it is since I don't need them.</p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FSoftware%2FFree-Software---Part-2.59998"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FSoftware%2FFree-Software---Part-2.59998" border="0"/></a>]]></description>
<pubDate>Mon, 19 Nov 2007 07:07:01 PST</pubDate></item>
<item>
<title>Proxy Scripts</title>
<link>http://www.computersight.com/Programming/PHP/Proxy-Scripts.58780</link>
<description>
<![CDATA[<h3>If you want to start your own proxy site you need 3 things.</h3>
 <ol>
<li>    A Web Host that allows proxy sites on their servers. </li>
<li>    An easy to remember domain name.</li>
<li>    And finally Proxy Script.</li>
 </ol>
 <h3>Here is a list of free Proxy Scripts.</h3>
 <ol>

<li><h3> Zelune</h3>
 
 This is a free php proxy script. According to the website it is the fastest proxy script. Needs cURL enabled.
 <a href="http://www.zelune.net/">Zelune.net</a></li>
 
<li><h3> PHProxy</h3>
 
 This is another php proxy script.
 <a href="http://sourceforge.net/project/showfiles.php?group_id=110693">PHProxy</a></li>
 
<li><h3> CGIProxy</h3>
 
 This is a cgi proxy script. Often even the hosts that allow proxy scripts won't allow cgi scripts. So maybe choose a php on
 <a href="http://www.jmarshall.com/tools/cgiproxy/">CGIProxy</a></li>
 
<li><h3> Glype</h3>
 
 And again a php proxy script. Needs PHP5 and cURL enabled.
 <a href="http://www.glype.com/">Glype</a></li>
 
<li><h3> Surrogafier</h3>
 
 As most scripts this is also a php one. It gives you the nice feature to route your traffic through a second proxy site.
 <a href="http://bcable.net/project.php?surrogafier">Surrogafier</a></li></ol>
 
<p> If you have set up your proxy don't forget to <a href="http://proxy.computersniffer.com">submit</a> it to one of the proxy network sites. </p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FProgramming%2FPHP%2FProxy-Scripts.58780"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FProgramming%2FPHP%2FProxy-Scripts.58780" border="0"/></a>]]></description>
<pubDate>Thu, 15 Nov 2007 07:40:48 PST</pubDate></item>
<item>
<title>Free Software - Part 1</title>
<link>http://www.computersight.com/Software/Free-Software---Part-1.58773</link>
<description>
<![CDATA[<p>Quite often we need software and don't have the money to buy them. At this point we are faced with a decision: Shall I just download it illegally or not?</p>
 
 <p>By Law this is illegal and you can be prosecuted for doing this. Another danger are viruses that are often hidden in files you download.</p>
 
 
 <p>There is another option. There are plenty of free programs that are an alternative to the expensive ones. Often they can do exactly the same as the one you were looking to buy.</p>
 
 
<h3>Here is a list of some alternative programs</h3>

 
<ol><li> 
<h3>Microsoft Office</h3>

 <p>This is a programme most people need and is very expensive. <a href="http://www.openoffice.org/">Open Office</a> is a very good alternative to Microsoft Office. It can open pretty much all MS Office files except Access. You can also save them as MS Office files. </p>
 
 <p>Another alternative is 
<a href="http://docs.google.com">Google Docs</a>. Yes thats right Google. You can create Spreadsheets, Presentations and Text Documents online or you can upload existing ones. The advantage is that you can access them from anywhere as long as you have internet access. You can also share them with other people online.</p></li>
 
<li> 
<h3>Dreamweaver</h3>

 <p>Dreamweaver is quite expensive but why not simply try <a href="http://www.mpsoftware.dk/phpdesigner.php">PHP Designer</a>. There is a Personal Edition available which is free of charge but comes with limits. It is quite good and has very useful features.</p></li>
 
 <li>
<h3>Nero</h3>

 <p>Nero isn't that expensive but you can still get it cheaper. Have a look at <a href="http://cdburnerxp.se">CD Burner XP</a>. You can pretty much do anything you can o with Nero. Create ISO's, burn ISO's, burn DVD's and much much more. </p></li>
 
 <li>
<h3>Maya, 3D Max</h3>

 <p>These programes are very expensive. A Free option is <a href="http://www.blender.org/">Blender</a>. It is available for Windows, Linux and Mac and produces amazing results.</p></li>
 
 <li>
<h3>Photoshop</h3>

 <p>Another expensive programe some people can't/wont live without. Download <a href="http://www.gimp.org/">Gimp</a> and produce results that are just like the one from Photoshop but free.</p></li>
 <li>
 <h3>Outlook</h3>
 <p>Alot of people use Outlook and don't even know that there is software available that does exactly the same and is free. <a href="http://www.mozilla-europe.org/en/products/thunderbird/">Thunderbird</a> has proven to be very good and very cheap.</p></li></ol>
 
 
 
 <p>I will soon post the next part covering Antivirus and more and also provide more free alternatives to some of the above programs.</p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FSoftware%2FFree-Software---Part-1.58773"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FSoftware%2FFree-Software---Part-1.58773" border="0"/></a>]]></description>
<pubDate>Thu, 15 Nov 2007 07:00:23 PST</pubDate></item>
<item>
<title>Danger of Proxy Sites</title>
<link>http://www.computersight.com/Communication-&amp;-Networks/Security/Danger-of-Proxy-Sites.48239</link>
<description>
<![CDATA[<p>Many schools and companies block certain websites. This is being done for many reasons. Companies may want to stop employees to waste time during working hours and Schools may want to ensure that the internet is only being used for educational purposes. Because people still want to use those sites people turn to proxy websites.</p>
 
 <p>By using proxy websites they can get passed the firewall and access the website they want. So people use 
<a target="_blank" href="http://www.Myspace.com">Myspace</a>
, 
<a target="_blank" href="http://www.facebook.com">Facebook</a>
, 
<a target="_blank" href="http://www.Bebo.com">Bebo</a>
, and other websites through a different website. You might wonder what the danger is? Well the danger is the actual proxy website. To understand the danger better we will have a look at how they work.</p>
 
 <p>When you enter a URL on a proxy website, the proxy website requests the page for you and changes then all the links on a page so that when you click on a link you will not be send to the real website. When you click on a link you will be sent to the proxy website which will then request the new page for you. This is also the case if you use forms.</p>
 
 <p>If you use 
<a target="_blank" href="http://www.Google.com">Google </a>
through a proxy website for example. You enter a search phrase or word in the text box and the information will be sent to the proxy website first who will then sent it to Google. The result that Google returns will again be changed and then be sent to you. Whats the danger there you wonder? Well the danger is if you look at websites that require a login. Proxy scripts can be easily changed so that they will record all usernames and passwords. The owner can then easily log into your account and steal it from you. He can change password email address and anything he wants. If you use a proxy website to check your online bank account or 
<a target="_blank" href="http://www.Paypal.com">Paypal</a>
 balance, they proxy owner could log on later and transfer all your money to a different account.</p>
 
 <p>We are not saying that this is actually happening but it is easy to do. So be safe and don't use a proxy website to log onto another one. If could be the last time you do that. </p><a href="http://www.pheedo.com/click.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FCommunication-%26amp%3B-Networks%2FSecurity%2FDanger-of-Proxy-Sites.48239"><img src="http://www.pheedo.com/img.phdo?x=&u=http%3A%2F%2Fwww.computersight.com%2FCommunication-%26amp%3B-Networks%2FSecurity%2FDanger-of-Proxy-Sites.48239" border="0"/></a>]]></description>
<pubDate>Mon, 24 Sep 2007 11:27:51 PST</pubDate></item>
</channel>
</rss>
