<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Geekpedia - Source Code</title>
<link>http://www.geekpedia.com/CodeArchive.html</link>
<description>Latest source code snippets at Geekpedia.com.</description>
<copyright>Copyright 2004 - 2008 Geekpedia.com. All rights reserved.</copyright>
<language>en-us</language>
<generator>Geekpedia RSS Generator</generator>
<image><url>http://www.geekpedia.com/Graphics/GeekpediaLogo.png</url><title>Geekpedia - Code</title><link>http://www.geekpedia.com/CodeArchive.html</link></image>
<item>
<title>Random Password Using PHP</title>
<description>A function that generates strong passwords by mixing uppercase and lowercase characters with numbers.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code126_Random-Password-Using-PHP.html&quot;&gt;View This PHP Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code126_Random-Password-Using-PHP.html</link>
<guid>http://www.geekpedia.com/code126_Random-Password-Using-PHP.html</guid>
<pubDate>Tue, 10 Jun 2008 15:02:34 -0400</pubDate>
</item>
<item>
<title>Resize Image With Aspect Ratio</title>
<description>A C# method that resizes pictures and maintains their aspect ratio, optionally only if a maximum width is exceeded. The method works with both images that have a higher height than width and viceversa.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code125_Resize-Image-With-Aspect-Ratio.html&quot;&gt;View This C# Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code125_Resize-Image-With-Aspect-Ratio.html</link>
<guid>http://www.geekpedia.com/code125_Resize-Image-With-Aspect-Ratio.html</guid>
<pubDate>Fri, 02 May 2008 23:39:12 -0400</pubDate>
</item>
<item>
<title>Count Words In String</title>
<description>The simplest way to count words in a string using Ruby and regular expressions by splitting the string at each space.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code124_Count-Words-In-String.html&quot;&gt;View This Ruby Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code124_Count-Words-In-String.html</link>
<guid>http://www.geekpedia.com/code124_Count-Words-In-String.html</guid>
<pubDate>Fri, 02 May 2008 23:20:05 -0400</pubDate>
</item>
<item>
<title>Execute A File Or Application</title>
<description>Get your .NET application to open a file using the operating system&#039;s file type assignments, just like the file would open when double clicked.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code123_Execute-A-File-Or-Application.html&quot;&gt;View This C# Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code123_Execute-A-File-Or-Application.html</link>
<guid>http://www.geekpedia.com/code123_Execute-A-File-Or-Application.html</guid>
<pubDate>Fri, 02 May 2008 23:16:45 -0400</pubDate>
</item>
<item>
<title>Show A 0-5 Rate As Stars</title>
<description>Show a 0 to 5 floating point rating in graphic stars using a PHP function. You can specify which direction to align the graphic stars (left or right)&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code122_Show-A-0-5-Rate-As-Stars.html&quot;&gt;View This PHP Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code122_Show-A-0-5-Rate-As-Stars.html</link>
<guid>http://www.geekpedia.com/code122_Show-A-0-5-Rate-As-Stars.html</guid>
<pubDate>Thu, 24 Apr 2008 20:31:34 -0400</pubDate>
</item>
<item>
<title>Fibonacci Sequence Generator</title>
<description>Generate the Fibonacci sequence for the specified amount of numbers, using a C function.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code121_Fibonacci-Sequence-Generator.html&quot;&gt;View This C Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code121_Fibonacci-Sequence-Generator.html</link>
<guid>http://www.geekpedia.com/code121_Fibonacci-Sequence-Generator.html</guid>
<pubDate>Thu, 24 Apr 2008 20:20:07 -0400</pubDate>
</item>
<item>
<title>Find The Greatest Common Divisor</title>
<description>Implement the Euclidean algorithm into a Python function in order to calculate the largest common divisor of two numbers.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code120_Find-The-Greatest-Common-Divisor.html&quot;&gt;View This Python Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code120_Find-The-Greatest-Common-Divisor.html</link>
<guid>http://www.geekpedia.com/code120_Find-The-Greatest-Common-Divisor.html</guid>
<pubDate>Thu, 24 Apr 2008 20:07:05 -0400</pubDate>
</item>
<item>
<title>List All Running Processes</title>
<description>Get a list of all running Windows processes through which you can step using a foreach loop.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code119_List-All-Running-Processes.html&quot;&gt;View This C# Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code119_List-All-Running-Processes.html</link>
<guid>http://www.geekpedia.com/code119_List-All-Running-Processes.html</guid>
<pubDate>Thu, 24 Apr 2008 19:56:25 -0400</pubDate>
</item>
<item>
<title>Beep In The PC Speaker</title>
<description>Generate a beep in the PC speaker using C# and an unmanaged call to the Beep() function that is part of the Windows kernel.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code118_Beep-In-The-PC-Speaker.html&quot;&gt;View This C# Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code118_Beep-In-The-PC-Speaker.html</link>
<guid>http://www.geekpedia.com/code118_Beep-In-The-PC-Speaker.html</guid>
<pubDate>Thu, 24 Apr 2008 01:03:19 -0400</pubDate>
</item>
<item>
<title>Get And Set The System Date And Time</title>
<description>C# code snippet that uses unmanaged code to retrieve the current date and time of the Windows operating system, and also sets it to the specified values.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekpedia.com/code117_Get-And-Set-The-System-Date-And-Time.html&quot;&gt;View This C# Code Snippet&lt;/a&gt;</description>
<link>http://www.geekpedia.com/code117_Get-And-Set-The-System-Date-And-Time.html</link>
<guid>http://www.geekpedia.com/code117_Get-And-Set-The-System-Date-And-Time.html</guid>
<pubDate>Wed, 23 Apr 2008 23:23:29 -0400</pubDate>
</item>
</channel>
</rss>