<?xml version="1.0" encoding="iso-8859-1"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
	<channel>
		<title>Solution Samir</title>
		<description>Welcome to the new and improved SolutionSamir.com where you can useful information on solving your everyday computer problems, advanced topics in programming, tutorials on various topics and a host of other cool stuff like music, videos, live DJ mix downloads and much much more.</description>
		<link>http://www.solutionsamir.com</link>
		<lastBuildDate>Sun, 05 Feb 2012 05:14:27 +0100</lastBuildDate>
		<generator>FeedCreator 1.7.2</generator>
		<image>
			<url>http://www.solutionsamir.com/images/favicon.ico</url>
			<title>SolutionSamir.com</title>
			<link>http://www.solutionsamir.com</link>
			<description>Welcome to the new and improved SolutionSamir.com where you can useful information on solving your everyday computer problems, advanced topics in programming, tutorials on various topics and a host of other cool stuff like music, videos, live DJ mix downloads and much much more.</description>
		</image>
		<item>
			<title>How to create a self signed SSL certificate in ubuntu</title>
			<link>http://www.solutionsamir.com/20111108161/Operating-Systems/Linux-Unix/How-to-create-a-self-signed-SSL-certificate-in-ubuntu.html</link>
			<description><![CDATA[
            
              The following is an extremely simplified view of how SSL is
              implemented and what part the certificate plays in the entire process.
            
         ...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Tue, 08 Nov 2011 15:22:38 +0100</pubDate>
		</item>
		<item>
			<title>how to enable mod_rewrite in apache2.2 (debian/ubuntu)</title>
			<link>http://www.solutionsamir.com/20111104160/Operating-Systems/Linux-Unix/how-to-enable-mod_rewrite-in-apache2.2-debian_ubuntu.html</link>
			<description><![CDATA[In default installion of apache2.2 on debian never enable mod_rewrite default. So you may need to enable .
First install the apache2.2 with this command :
debian user please use “su” before start th...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Fri, 04 Nov 2011 11:19:07 +0100</pubDate>
		</item>
		<item>
			<title>THE ZEITGEIST MOVEMENT: RESPONSE TO &quot;OCCUPY WALL STREET&quot;</title>
			<link>http://www.solutionsamir.com/20110928159/Blog/Current-Issues/THE-ZEITGEIST-MOVEMENT-RESPONSE-TO-OCCUPY-WALL-STREET.html</link>
			<description><![CDATA[On Sept 17th 2011, a grassroots expression of contempt was launched in
the heart of the world's financial center in lower Manhattan of New York
City, also commonly known to the world as the institut...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Wed, 28 Sep 2011 14:42:03 +0100</pubDate>
		</item>
		<item>
			<title>PHP Function to convert XML to multidimensional array</title>
			<link>http://www.solutionsamir.com/20110802158/Programming/PHP/PHP-Function-to-convert-XML-to-multidimensional-array.html</link>
			<description><![CDATA[Function converts any XML document into a PHP array.

function xml_to_array($contents, $get_attributes=1){
	
	if(!$contents) return array();
	
	if(!function_exists('xml_parser_create')) {
		
	...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Tue, 02 Aug 2011 12:16:56 +0100</pubDate>
		</item>
		<item>
			<title>How to add all unversioned files to svn linux commandline</title>
			<link>http://www.solutionsamir.com/20110725157/Operating-Systems/Linux-Unix/How-to-add-all-unversioned-files-to-svn-linux-commandline.html</link>
			<description><![CDATA[
Ensure you are in the checked out project folder, then issue this command.

svn --force --depth infinity add .

You can then issue a svn commit.]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Mon, 25 Jul 2011 13:44:58 +0100</pubDate>
		</item>
		<item>
			<title>Scrape a list of PHP function names and a link to their definition</title>
			<link>http://www.solutionsamir.com/20110720156/Programming/PHP/Scrape-a-list-of-PHP-function-names-and-a-link-to-their-definition.html</link>
			<description><![CDATA[This snippet scrapes php.net for a list of functions and their links and stores it in a database table. 
Click here (20110720155/Programming/PHP/Stand-Alone-Joomla-Database-Abstraction-Class.html) to...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Wed, 20 Jul 2011 21:53:46 +0100</pubDate>
		</item>
		<item>
			<title>Stand Alone Joomla Database Abstraction Class</title>
			<link>http://www.solutionsamir.com/20110720155/Programming/PHP/Stand-Alone-Joomla-Database-Abstraction-Class.html</link>
			<description><![CDATA[I have extracted the Database class from within Joomla, and made it a standalone file. Just include this class in your code, and you can use the standard joomla database calls. I have included a snipp...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Wed, 20 Jul 2011 21:38:01 +0100</pubDate>
		</item>
		<item>
			<title>Save SVN+SSH Password on windows for tortoise SVN by generating and saving an SSH Key</title>
			<link>http://www.solutionsamir.com/20110720154/Operating-Systems/Windows/Save-SVN+SSH-Password-on-windows-for-tortoise-SVN-by-generating-and-saving-an-SSH-Key.html</link>
			<description><![CDATA[
You can use the Tortoise SVN software as a graphical front end to Subversion (http://support.tigertech.net/subversion). Tortoise SVN is available for Windows computers and can be downloaded for free...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Windows</category>
			<pubDate>Wed, 20 Jul 2011 12:48:13 +0100</pubDate>
		</item>
		<item>
			<title>Time PHP Scripts</title>
			<link>http://www.solutionsamir.com/20110718153/Programming/PHP/Time-PHP-Scripts.html</link>
			<description><![CDATA[

$start_time = getTime();

#
#
#Code that you want to time goes here.
#
#

$end_time = getTime();

#Display the time in minutes.
$time_taken = "Time taken = ".number_format( ( ( $end_tim...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Mon, 18 Jul 2011 15:11:15 +0100</pubDate>
		</item>
		<item>
			<title>How to count the number of files in a directory in linux</title>
			<link>http://www.solutionsamir.com/20110715152/Operating-Systems/Linux-Unix/How-to-count-the-number-of-files-in-a-directory-in-linux.html</link>
			<description><![CDATA[Replace the .ext with a * if you want to show all files.The -i in grep is a case insensitive flag, remove it if you want to preserve case.ls -1R | grep -i .*.jpg | wc -l ]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Fri, 15 Jul 2011 06:20:07 +0100</pubDate>
		</item>
		<item>
			<title>How to change the primary monitor in Ubuntu or other Linux distributions </title>
			<link>http://www.solutionsamir.com/20110713150/Operating-Systems/Linux-Unix/How-to-change-the-primary-monitor-in-Ubuntu-or-other-Linux-distributions.html</link>
			<description><![CDATA[Using dual or multiple monitors in Linux is relatively 
straightforward as most monitors are automatically detected on the major
 distributions. However, Gnome does not give an option for specifying...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 13 Jul 2011 06:10:57 +0100</pubDate>
		</item>
		<item>
			<title>How to view, edit and remove cron jobs from linux server</title>
			<link>http://www.solutionsamir.com/20110614147/Operating-Systems/Linux-Unix/How-to-view-edit-and-remove-cron-jobs-from-linux-server.html</link>
			<description><![CDATA[crontab command is used to edit/remove the current cron job on the server. Below are the few options of crontab command:crontab -l  - Displays the current cron jobs.crontab -e - To edit the cron jobs....]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Tue, 14 Jun 2011 06:17:23 +0100</pubDate>
		</item>
		<item>
			<title>Snow Leopard Java problems (and fix)</title>
			<link>http://www.solutionsamir.com/20110512146/Blog/Current-Issues/Snow-Leopard-Java-problems-and-fix.html</link>
			<description><![CDATA[Update: OneSwarm 0.6.7 is now available and fixes most Snow Leopard compatibility issues. Download here (http://oneswarm.cs.washington.edu/download.html)
The OneSwarm (http://oneswarm.cs.washington.e...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Thu, 12 May 2011 19:46:44 +0100</pubDate>
		</item>
		<item>
			<title>ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock'</title>
			<link>http://www.solutionsamir.com/20110413145/Operating-Systems/Linux-Unix/ERROR-2002-HY000-Can-t-connect-to-local-MySQL-server-through-socket-_var_run_mysqld_mysqld.sock.html</link>
			<description><![CDATA[Ubuntu server error for mysql. Perform these steps to resolve.First: Make sure that the owner of /var/lib/mysql and its files and subdirectories is mysql user of mysql group



to do that run the ...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 13 Apr 2011 06:29:09 +0100</pubDate>
		</item>
		<item>
			<title>How to expand ubuntu disk when adding disk space to vmware server</title>
			<link>http://www.solutionsamir.com/20110331142/Operating-Systems/Linux-Unix/How-to-expand-ubuntu-disk-when-adding-disk-space-to-vmware-server.html</link>
			<description><![CDATA[We set up an ubuntu VM server with a 7 gig drive. As time passed this was obviously not enough, so we added the space in vmware. The assumption was that the host OS, in this case ubuntu server 10.1, w...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Thu, 31 Mar 2011 09:35:50 +0100</pubDate>
		</item>
		<item>
			<title>How to get top level hard drive info in ubuntu</title>
			<link>http://www.solutionsamir.com/20110328141/Operating-Systems/Linux-Unix/How-to-get-top-level-hard-drive-info-in-ubuntu.html</link>
			<description><![CDATA[sudo lshw -businfo -C disk]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Mon, 28 Mar 2011 09:27:51 +0100</pubDate>
		</item>
		<item>
			<title>How to enable mod_rewrite on ubuntu server for apache2</title>
			<link>http://www.solutionsamir.com/20110303140/Operating-Systems/Linux-Unix/How-to-enable-mod_rewrite-on-ubuntu-server-for-apache2.html</link>
			<description><![CDATA[First install the apache2.2 with this command : debian user please use “su” before start this process ubuntu user please use “sudo su” before start this processapt-get install apache2 (it will install...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Thu, 03 Mar 2011 13:15:53 +0100</pubDate>
		</item>
		<item>
			<title>Murphy's Law and its progeny</title>
			<link>http://www.solutionsamir.com/20101214139/Blog/Current-Issues/Murphy-s-Law-and-its-progeny.html</link>
			<description><![CDATA[My favorites are O'Toole's Commentary and the Unspeakable Law.
Anyway, these laws are presented with minimal formatting - just download it and read at your leisure.MURPHY'S LAW    If anything can go ...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Tue, 14 Dec 2010 12:15:59 +0100</pubDate>
		</item>
		<item>
			<title>10 Cool ways to use nmap</title>
			<link>http://www.solutionsamir.com/20101214138/Operating-Systems/Linux-Unix/10-Cool-ways-to-use-nmap.html</link>
			<description><![CDATA[Here are some really cool scanning techniques using Nmap1) Get info about remote host ports and OS detectionnmap -sS -P0 -sV -O &lt;target&gt;Where &lt; target &gt; may be a single IP, a hostname or a...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Tue, 14 Dec 2010 12:10:22 +0100</pubDate>
		</item>
		<item>
			<title>Dalai Lama's 18 rules for living </title>
			<link>http://www.solutionsamir.com/20101214137/Blog/Current-Issues/Dalai-Lama-s-18-rules-for-living.html</link>
			<description><![CDATA[At the start of the new millennium the Dalai Lama apparently issued eighteen rules for living. 1. Take into account that great love and great achievements involve great risk.   2. When you lose, don’t...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Tue, 14 Dec 2010 12:01:43 +0100</pubDate>
		</item>
		<item>
			<title>Footprinting</title>
			<link>http://www.solutionsamir.com/20101202136/Blog/Current-Issues/Footprinting.html</link>
			<description><![CDATA[Footprinting is the blueprinting of the security profile of an organization, undertaken in a methodological manner. Footprinting is a passive process of that is designed to profile an organization wit...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Thu, 02 Dec 2010 07:55:15 +0100</pubDate>
		</item>
		<item>
			<title>Quotations about Risk </title>
			<link>http://www.solutionsamir.com/20101108135/Blog/Current-Issues/Quotations-about-Risk.html</link>
			<description><![CDATA[Don't refuse to go on an occasional wild goose chase - that's what wild geese are for.  ~Author UnknownTo dare is to lose one's footing momentarily.  To not dare is to lose oneself.  ~Soren Kierkegaar...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Mon, 08 Nov 2010 06:53:49 +0100</pubDate>
		</item>
		<item>
			<title>How to view percent free space on drive in linux</title>
			<link>http://www.solutionsamir.com/20100928134/Operating-Systems/Linux-Unix/How-to-view-percent-free-space-on-drive-in-linux.html</link>
			<description><![CDATA[df -H]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Tue, 28 Sep 2010 20:29:00 +0100</pubDate>
		</item>
		<item>
			<title>How to get the current line number of code in PHP</title>
			<link>http://www.solutionsamir.com/20100825133/Programming/PHP/How-to-get-the-current-line-number-of-code-in-PHP.html</link>
			<description><![CDATA[

// Echo's the line number in the function, not where the error happened.
function echo_error($text)
{
     echo 'ERROR: '.$text.' on '.__LINE__;
}
]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Wed, 25 Aug 2010 11:04:28 +0100</pubDate>
		</item>
		<item>
			<title>How to view information about all physical disks and drives connected to a linux box</title>
			<link>http://www.solutionsamir.com/20100804131/Operating-Systems/Linux-Unix/How-to-view-information-about-all-physical-disks-and-drives-connected-to-a-linux-box.html</link>
			<description><![CDATA[Issue
sudo lshw -C disk

 
Which should show you something like this:

  *-cdrom                 
       description: DVD reader
       product: CDRW/DVD SM-352B
       vendor: SAMSUNG
     ...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 04 Aug 2010 13:12:08 +0100</pubDate>
		</item>
		<item>
			<title>Add more module positions in joomla 1.0</title>
			<link>http://www.solutionsamir.com/20100728130/Programming/PHP/Add-more-module-positions-in-joomla-1.0.html</link>
			<description><![CDATA[In the file administrator\components\com_templates and opening admin.templates.html.phpOn line 357: 

  function editPositions(  $positions, $option ) {
      global $adminLanguage;
      $rows = ...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Wed, 28 Jul 2010 14:48:07 +0100</pubDate>
		</item>
		<item>
			<title>404 Error while trying to access http://localhost/phpmyadmin install on ubuntu</title>
			<link>http://www.solutionsamir.com/20100708127/Operating-Systems/Linux-Unix/404-Error-while-trying-to-access-http__localhost_phpmyadmin-install-on-ubuntu.html</link>
			<description><![CDATA[I encountered a little bit of a hitch while trying to install phpmyadmin on my ubuntu devbox. I issued the standard apt command apt-get install phpmyadminand went through with runnig dpkg-reconfigure ...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Thu, 08 Jul 2010 17:01:32 +0100</pubDate>
		</item>
		<item>
			<title>How to generate an SSL CSR using openssl</title>
			<link>http://www.solutionsamir.com/20100608126/Operating-Systems/Linux-Unix/How-to-generate-an-SSL-CSR-using-openssl.html</link>
			<description><![CDATA[openssl req -new -newkey rsa:2048 -nodes -keyout csr.txt -out csr.txt]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Tue, 08 Jun 2010 10:05:44 +0100</pubDate>
		</item>
		<item>
			<title>Disk usage report in command line.</title>
			<link>http://www.solutionsamir.com/20100505125/Operating-Systems/Linux-Unix/Disk-usage-report-in-command-line.html</link>
			<description><![CDATA[
du -s -m *
]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 05 May 2010 08:26:02 +0100</pubDate>
		</item>
		<item>
			<title>Thank you GOD for showing me this picture</title>
			<link>http://www.solutionsamir.com/20100429124/Blog/Current-Issues/Thank-you-GOD-for-showing-me-this-picture.html</link>
			<description><![CDATA[Clean up your desk mess, usb cables, network cables, reduce clutter with no additional investment! ]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Thu, 29 Apr 2010 07:33:11 +0100</pubDate>
		</item>
		<item>
			<title>How to install cvs and cvsd on ubuntu</title>
			<link>http://www.solutionsamir.com/20100420123/Operating-Systems/Linux-Unix/How-to-install-cvs-and-cvsd-on-ubuntu.html</link>
			<description><![CDATA[Install CVS files:sudo apt-get install cvsInstall

 the CVS server:sudo 
apt-get install cvsdWhen prompted in the cvsd 
installation process for Repository, type in “/cvsrepo”. Now that
 the cvsd...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Tue, 20 Apr 2010 17:42:30 +0100</pubDate>
		</item>
		<item>
			<title>vsftpd FTP server on ubuntu server</title>
			<link>http://www.solutionsamir.com/20100416122/Operating-Systems/Linux-Unix/vsftpd-FTP-server-on-ubuntu-server.html</link>
			<description><![CDATA[File Transfer Protocol (FTP) is a TCP protocol for uploading and downloading files between computers. FTP works on a client/server model. The server component is called an FTP daemon. It continuously ...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Fri, 16 Apr 2010 15:10:24 +0100</pubDate>
		</item>
		<item>
			<title>mod_rewrite installed on apache but custom redirection rule not working with .htaccess</title>
			<link>http://www.solutionsamir.com/20100415121/Operating-Systems/Linux-Unix/mod_rewrite-installed-on-apache-but-custom-redirection-rule-not-working-with-.htaccess.html</link>
			<description><![CDATA[To set up a custom redirect to add a prefix of http://www.domain.com to your domain instead of http://domain.com

Create a .htaccess file in the root directory of your website.

Type in the follow...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Thu, 15 Apr 2010 14:46:18 +0100</pubDate>
		</item>
		<item>
			<title>How to exclude files in a tar backup</title>
			<link>http://www.solutionsamir.com/20100306119/Operating-Systems/Linux-Unix/How-to-exclude-files-in-a-tar-backup.html</link>
			<description><![CDATA[If you want to exclude certain folders while making a tar backup here is the command you can use. 
tar -pczf website.tar.gz /var/www/ --exclude "/var/www/images/" --exclude "/var/www/pictures" ]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Sat, 06 Mar 2010 06:50:31 +0100</pubDate>
		</item>
		<item>
			<title>How to list all installed packages in ubuntu</title>
			<link>http://www.solutionsamir.com/20100217118/Operating-Systems/Linux-Unix/How-to-list-all-installed-packages-in-ubuntu.html</link>
			<description><![CDATA[sudo dpkg --get-selections]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 17 Feb 2010 21:15:56 +0100</pubDate>
		</item>
		<item>
			<title>How to Detect Known Hard Drives in Ubuntu </title>
			<link>http://www.solutionsamir.com/20100217117/Operating-Systems/Linux-Unix/How-to-Detect-Known-Hard-Drives-in-Ubuntu.html</link>
			<description><![CDATA[sudo lshw -C disk



  *-disk:0                
       description: SCSI Disk
       product: MAW3147NC
       vendor: FUJITSU
       physical id: 0.0.0
       bus info: scsi@2:0.0.0
       ...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 17 Feb 2010 16:16:06 +0100</pubDate>
		</item>
		<item>
			<title>How to install CURL on ubuntu php5</title>
			<link>http://www.solutionsamir.com/20100204116/Operating-Systems/Linux-Unix/How-to-install-CURL-on-ubuntu-php5.html</link>
			<description><![CDATA[Open up a terminal and type  
sudo apt-get install curl libcurl3 libcurl3-dev php5-curl php5-mcrypt ]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Thu, 04 Feb 2010 09:33:47 +0100</pubDate>
		</item>
		<item>
			<title>Apache Ubuntu how to set up sub domains</title>
			<link>http://www.solutionsamir.com/20100202115/Operating-Systems/Linux-Unix/Apache-Ubuntu-how-to-set-up-sub-domains.html</link>
			<description><![CDATA[Edit /etc/apache2/sites-available/default using your favourite command line editor.  #NameVirtualHost *:80




        DocumentRoot /var/www/
        ServerName server_name.com
        ServerAd...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Tue, 02 Feb 2010 13:23:12 +0100</pubDate>
		</item>
		<item>
			<title>Find Replace search text in a mysql table field</title>
			<link>http://www.solutionsamir.com/20100128114/Programming/SQL/Find-Replace-search-text-in-a-mysql-table-field.html</link>
			<description><![CDATA[This little query updates a search string and replaces it with a replace string. Find and replace query for mysql  UPDATE `table_name` SET `field_name` = replace(`field_name`, 'search_term' , 'replace...]]></description>
			<author>Administrator</author>
			<category>Programming - SQL</category>
			<pubDate>Thu, 28 Jan 2010 08:50:28 +0100</pubDate>
		</item>
		<item>
			<title>Web Publishing with FileMaker and PHP - A comparison of FX.php and the FileMaker API for PHP</title>
			<link>http://www.solutionsamir.com/20090923113/Programming/PHP/Web-Publishing-with-FileMaker-and-PHP-A-comparison-of-FX.php-and-the-FileMaker-API-for-PHP.html</link>
			<description><![CDATA[



Introduction
        Who should read this document
                FileMaker developers who are new to web publishing. FileMaker developers who are feeling constrained by IWP. FileMaker deve...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Wed, 23 Sep 2009 10:50:04 +0100</pubDate>
		</item>
		<item>
			<title>ELECTRIC MAYHEM II Saturday June 20th, 2009</title>
			<link>http://www.solutionsamir.com/20090805112/DJing/Parties/ELECTRIC-MAYHEM-II-Saturday-June-20th-2009.html</link>
			<description><![CDATA[ ]]></description>
			<author>Administrator</author>
			<category>DJing - Parties</category>
			<pubDate>Wed, 05 Aug 2009 15:48:32 +0100</pubDate>
		</item>
		<item>
			<title> ELECTRIC SHAKEDOWN ELEVEN 8/29/09 satx  </title>
			<link>http://www.solutionsamir.com/20090805111/DJing/Parties/-ELECTRIC-SHAKEDOWN-ELEVEN-8_29_09-satx.html</link>
			<description><![CDATA[ ]]></description>
			<author>Administrator</author>
			<category>DJing - Parties</category>
			<pubDate>Wed, 05 Aug 2009 15:36:53 +0100</pubDate>
		</item>
		<item>
			<title>Howto: Ubuntu Linux convert DHCP network configuration to static IP configuration</title>
			<link>http://www.solutionsamir.com/20090729110/Operating-Systems/Linux-Unix/Howto-Ubuntu-Linux-convert-DHCP-network-configuration-to-static-IP-configuration.html</link>
			<description><![CDATA[My friend wanted to know how to change or convert DHCP network
configuration to static configuration. After initial installation, he
wanted to change network settings. Further, his system is w/o GUI...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 29 Jul 2009 09:03:53 +0100</pubDate>
		</item>
		<item>
			<title>How to perform a batch download using wget</title>
			<link>http://www.solutionsamir.com/20090722108/Operating-Systems/Linux-Unix/How-to-perform-a-batch-download-using-wget.html</link>
			<description><![CDATA[If I want to download all files in a directory of a website, i have to perform a long wget command, they is what I do at first:

wget -nd -r -l1 --no-parent http://www.foo.com/mp3/

This works fin...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 22 Jul 2009 07:07:36 +0100</pubDate>
		</item>
		<item>
			<title>Transmission on Ubuntu server with startup script</title>
			<link>http://www.solutionsamir.com/20090715107/Operating-Systems/Linux-Unix/Transmission-on-Ubuntu-server-with-startup-script.html</link>
			<description><![CDATA[Transmission, the default torrent program on Ubuntu now, also has a
command line version that can be run on a server. This combined with
Clutch, the web user interface for transmission, makes a nice...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 15 Jul 2009 11:44:54 +0100</pubDate>
		</item>
		<item>
			<title>Open rar file or Extract rar files under Linux or UNIX</title>
			<link>http://www.solutionsamir.com/20090715106/Operating-Systems/Linux-Unix/Open-rar-file-or-Extract-rar-files-under-Linux-or-UNIX.html</link>
			<description><![CDATA[Q. How do I open rar archive files under Linux / UNIX operating systems?

A. RAR files are in
compressed archive format, if you have downloaded rar files from the
Internet, you need to unpack or u...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 15 Jul 2009 11:18:29 +0100</pubDate>
		</item>
		<item>
			<title>Setup Headless Browser Based VNC Server for Ubuntu</title>
			<link>http://www.solutionsamir.com/20090610105/Operating-Systems/Linux-Unix/Setup-Headless-Browser-Based-VNC-Server-for-Ubuntu.html</link>
			<description><![CDATA[


 (http://www.blogger.com/rearrange?blogID=5202095606494672181 widgetType=HTML widgetId=HTML1 action=editWidget)
I just did this on Gutsy, and I thought that it might be worth
sharing as a simp...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Wed, 10 Jun 2009 20:02:05 +0100</pubDate>
		</item>
		<item>
			<title>PHP Function to convert tabs to spaces</title>
			<link>http://www.solutionsamir.com/20090515103/Programming/PHP/PHP-Function-to-convert-tabs-to-spaces.html</link>
			<description><![CDATA[
function tab2space($text, $spaces = 4)
{
    // Explode the text into an array of single lines
    $lines = explode('\n', $text);
    
    // Loop through each line
    foreach ($lines as $lin...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Fri, 15 May 2009 12:01:31 +0100</pubDate>
		</item>
		<item>
			<title>(MEGA BASSIX 2) Friday 4/24/09 Blue Bubble Ballroom SATX </title>
			<link>http://www.solutionsamir.com/20090405101/DJing/Parties/MEGA-BASSIX-2-Friday-4_24_09-Blue-Bubble-Ballroom-SATX.html</link>
			<description><![CDATA[ ]]></description>
			<author>Administrator</author>
			<category>DJing - Parties</category>
			<pubDate>Sun, 05 Apr 2009 11:35:37 +0100</pubDate>
		</item>
		<item>
			<title> SATX 03.28.09 Get Ill w/ Big Rich, DJ Code &amp; 3/5's of Endless Crunk </title>
			<link>http://www.solutionsamir.com/20090405100/DJing/Parties/-SATX-03.28.09-Get-Ill-w_-Big-Rich-DJ-Code-3_5-s-of-Endless-Crunk.html</link>
			<description><![CDATA[We got ~80 heads out to this one. ]]></description>
			<author>Administrator</author>
			<category>DJing - Parties</category>
			<pubDate>Sun, 05 Apr 2009 11:33:10 +0100</pubDate>
		</item>
		<item>
			<title>SATX April 3rd First Friday Funk!!!!!!!!!</title>
			<link>http://www.solutionsamir.com/2009040599/DJing/Parties/SATX-April-3rd-First-Friday-Funk.html</link>
			<description><![CDATA[This First Friday Join Us @ The Blue Star Brewery!!

As we bring you good vibes and great music and most of all..

COLD BEER!!
 Djs 

Big Rich

Paz Joaquin

Dj Code

Josh Mullins.

No C...]]></description>
			<author>Administrator</author>
			<category>DJing - Parties</category>
			<pubDate>Sun, 05 Apr 2009 11:31:11 +0100</pubDate>
		</item>
		<item>
			<title> SATX SATURDAY APRIL 11TH Ill#2 WILDSTYLE!!!! </title>
			<link>http://www.solutionsamir.com/2009040598/DJing/Parties/-SATX-SATURDAY-APRIL-11TH-Ill-2-WILDSTYLE.html</link>
			<description><![CDATA[ill#2 WILDSTYLE!

Special Tag Team Set By:

Big Rich

Khary Kadaver

Terpsi

Opening Set By: 

Dj Code


Always Good Vibes And Great Music!!!

21   up

1$  Cover For Guys

GIRLS F...]]></description>
			<author>Administrator</author>
			<category>DJing - Parties</category>
			<pubDate>Sun, 05 Apr 2009 11:29:10 +0100</pubDate>
		</item>
		<item>
			<title>How to enable error reporting without modifying the php.ini file</title>
			<link>http://www.solutionsamir.com/2009032397/Programming/PHP/How-to-enable-error-reporting-without-modifying-the-php.ini-file.html</link>
			<description><![CDATA[
ini_set ('display_errors',1);
error_reporting (E_ALL   ~ E_NOTICE);
]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Mon, 23 Mar 2009 07:30:53 +0100</pubDate>
		</item>
		<item>
			<title>How to enable remote access to mysql on a linux server</title>
			<link>http://www.solutionsamir.com/2009021096/Operating-Systems/Linux-Unix/How-to-enable-remote-access-to-mysql-on-a-linux-server.html</link>
			<description><![CDATA[Here is how to enable remote access to mysql on linux. SSH into your machine or open up a terminal window if you are sitting in front of it and type. sudo nano /etc/mysql/my.cnfFind the line bind-addr...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Tue, 10 Feb 2009 15:06:15 +0100</pubDate>
		</item>
		<item>
			<title>Javascript function to reset all forms in a document</title>
			<link>http://www.solutionsamir.com/2009011491/Programming/AJAX/Javascript-function-to-reset-all-forms-in-a-document.html</link>
			<description><![CDATA[
function resetAllForms (windowOrLayer) {
  if (!windowOrLayer)
    windowOrLayer = window;
  for (var f = 0; f &lt; document.forms.length; f++)
    windowOrLayer.document.forms[f].reset();
  if...]]></description>
			<author>Administrator</author>
			<category>Programming - AJAX</category>
			<pubDate>Wed, 14 Jan 2009 13:37:24 +0100</pubDate>
		</item>
		<item>
			<title>How to click a link from javascript - cross browser function</title>
			<link>http://www.solutionsamir.com/2008121989/Programming/AJAX/How-to-click-a-link-from-javascript-cross-browser-function.html</link>
			<description><![CDATA[
function fireEvent(obj,evt){

var fireOnThis = obj;
if( document.createEvent ) {
var evObj = document.createEvent('MouseEvents');
evObj.initEvent( evt, true, false );
fireOnThis.dispatchEvent(...]]></description>
			<author>Administrator</author>
			<category>Programming - AJAX</category>
			<pubDate>Fri, 19 Dec 2008 10:26:15 +0100</pubDate>
		</item>
		<item>
			<title>Javascript function that is equivalent to PHP's urlencode</title>
			<link>http://www.solutionsamir.com/2008121688/Programming/AJAX/Javascript-function-that-is-equivalent-to-PHP-s-urlencode.html</link>
			<description><![CDATA[
function urlencode(s) {
  s = encodeURIComponent(s);
  return s.replace(/~/g,'%7E').replace(/%20/g,'+');
}
]]></description>
			<author>Administrator</author>
			<category>Programming - AJAX</category>
			<pubDate>Tue, 16 Dec 2008 07:41:57 +0100</pubDate>
		</item>
		<item>
			<title>How to post a form via POST using AJAX</title>
			<link>http://www.solutionsamir.com/2008121587/Programming/AJAX/How-to-post-a-form-via-POST-using-AJAX.html</link>
			<description><![CDATA[
unction submitEditProfileNameDetailsAjax(){
	if(validatemyNameForm()){
				$('editNameDetailsSubmitButtonDiv').innerHTML = '';
				//$('NameForm_res').innerHTML = "";
				var url = 'name_of_page...]]></description>
			<author>Administrator</author>
			<category>Programming - AJAX</category>
			<pubDate>Mon, 15 Dec 2008 11:35:38 +0100</pubDate>
		</item>
		<item>
			<title>Cross Browser create an xmlHttpRequest object</title>
			<link>http://www.solutionsamir.com/2008121286/Programming/AJAX/Cross-Browser-create-an-xmlHttpRequest-object.html</link>
			<description><![CDATA[

]]></description>
			<author>Administrator</author>
			<category>Programming - AJAX</category>
			<pubDate>Fri, 12 Dec 2008 08:31:07 +0100</pubDate>
		</item>
		<item>
			<title>Cross Browser Hide / Show Div Script</title>
			<link>http://www.solutionsamir.com/2008121285/Programming/AJAX/Cross-Browser-Hide-_-Show-Div-Script.html</link>
			<description><![CDATA[

]]></description>
			<author>Administrator</author>
			<category>Programming - AJAX</category>
			<pubDate>Fri, 12 Dec 2008 08:29:22 +0100</pubDate>
		</item>
		<item>
			<title>How google calculates page rank and performs database queries at a high rate</title>
			<link>http://www.solutionsamir.com/2008112484/Blog/Current-Issues/The-Anatomy-of-a-Large-Scale-Hypertextual-Web-Search-Engine.html</link>
			<description><![CDATA[

The Anatomy of a Large-Scale Hypertextual Web Search Engine


Sergey Brin and Lawrence Page


@cs.stanford.edu


Computer Science Department, Stanford University, Stanford, CA
94305

...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Mon, 24 Nov 2008 15:08:43 +0100</pubDate>
		</item>
		<item>
			<title>Javascript function that is equivalent to PHP's urlencode() function</title>
			<link>http://www.solutionsamir.com/2008110383/Programming/AJAX/Javascript-function-that-is-equivalent-to-PHP-s-urlencode-function.html</link>
			<description><![CDATA[
function urlencode(str){
  return escape(str).replace(/\+/g,'%2B').replace(/%20/g, '+').replace(/\*/g, '%2A').replace(/\//g, '%2F').replace(/@/g, '%40');
}
]]></description>
			<author>Administrator</author>
			<category>Programming - AJAX</category>
			<pubDate>Mon, 03 Nov 2008 14:40:21 +0100</pubDate>
		</item>
		<item>
			<title>My internet connection is really slow when i know it should be faster</title>
			<link>http://www.solutionsamir.com/2008101480/Blog/Current-Issues/My-internet-connection-is-really-slow-when-i-know-it-should-be-faster.html</link>
			<description><![CDATA[I have high speed internet from time warner. I purchased the turbo package. This means that my connection speed should be 12+mbps. I unfortunately was only getting 5 mbps down. I tested three differen...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Tue, 14 Oct 2008 11:37:43 +0100</pubDate>
		</item>
		<item>
			<title>www.sendavirtualgift.com</title>
			<link>http://www.solutionsamir.com/2008101379/Web-Design/Websites/www.sendavirtualgift.com.html</link>
			<description><![CDATA[

Site designed to send virtual gifts from anyone to anyone else on the web.
Application tracks points per item. 
If the recipient views the gift on the site, the points are credited to the sender...]]></description>
			<author>Administrator</author>
			<category>Web Design - Websites</category>
			<pubDate>Mon, 13 Oct 2008 17:10:33 +0100</pubDate>
		</item>
		<item>
			<title>Bassix @ The Heights</title>
			<link>http://www.solutionsamir.com/2008100978/DJing/Parties/Bassix-The-Heights.html</link>
			<description><![CDATA[ ]]></description>
			<author>Administrator</author>
			<category>DJing - Parties</category>
			<pubDate>Thu, 09 Oct 2008 08:27:15 +0100</pubDate>
		</item>
		<item>
			<title>Planet Of The Brain Monkeys</title>
			<link>http://www.solutionsamir.com/2008100977/DJing/Parties/Planet-Of-The-Brain-Monkeys.html</link>
			<description><![CDATA[ ]]></description>
			<author>Administrator</author>
			<category>DJing - Parties</category>
			<pubDate>Thu, 09 Oct 2008 08:21:33 +0100</pubDate>
		</item>
		<item>
			<title>Lost In The Abyss</title>
			<link>http://www.solutionsamir.com/2008100976/DJing/Vinyl/Lost-In-The-Abyss.html</link>
			<description><![CDATA[ ]]></description>
			<author>Administrator</author>
			<category>DJing - Vinyl</category>
			<pubDate>Thu, 09 Oct 2008 08:20:41 +0100</pubDate>
		</item>
		<item>
			<title>www.theillbeat.com</title>
			<link>http://www.solutionsamir.com/2008091973/Web-Design/Websites/www.theillbeat.com.html</link>
			<description><![CDATA[

Hobby website designed to enable DJ's to upload their mixes.
Members have their own profiles with the ability to write blogs, upload videos, upload pictures, add mix comments, etc...
Site functi...]]></description>
			<author>Administrator</author>
			<category>Web Design - Websites</category>
			<pubDate>Fri, 19 Sep 2008 19:17:40 +0100</pubDate>
		</item>
		<item>
			<title>www.texoffroad.com</title>
			<link>http://www.solutionsamir.com/2008091972/Web-Design/Websites/www.texoffroad.com.html</link>
			<description><![CDATA[ 

Designed for an ATV / Dirtbike park.
Customized front end registration system designed for making reservations.
System accomodates annual members and supports multiple registrations per email a...]]></description>
			<author>Administrator</author>
			<category>Web Design - Websites</category>
			<pubDate>Fri, 19 Sep 2008 19:11:11 +0100</pubDate>
		</item>
		<item>
			<title>Get the last inserted id in from php on a mysql database</title>
			<link>http://www.solutionsamir.com/2008091870/Programming/PHP/Get-the-last-inserted-id-in-from-php-on-a-mysql-database.html</link>
			<description><![CDATA[This is useful when you are working with multi page forms. If you want to update some information on one page, for one record, and then move to another page and update the same record some more you wi...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Thu, 18 Sep 2008 14:10:08 +0100</pubDate>
		</item>
		<item>
			<title>www.focusinsurance.ca</title>
			<link>http://www.solutionsamir.com/2008081369/Web-Design/Websites/www.focusinsurance.ca.html</link>
			<description><![CDATA[ Website designed for a Canadian Film Insurance BrokerFull fledged login system that members can use to access protected insurance documents.Members have the ability to choose the insurance applicatio...]]></description>
			<author>Administrator</author>
			<category>Web Design - Websites</category>
			<pubDate>Wed, 13 Aug 2008 14:05:48 +0100</pubDate>
		</item>
		<item>
			<title>www.ciboloconservancy.org</title>
			<link>http://www.solutionsamir.com/2008081368/Web-Design/Websites/www.ciboloconservancy.org.html</link>
			<description><![CDATA[ Designed for The Cibolo Conservancy located in Borne, Texas.Clean bold design for easy navigation and content display.Rotating right banner.Lighbox image gallery displaying easement properties.Sample...]]></description>
			<author>Administrator</author>
			<category>Web Design - Websites</category>
			<pubDate>Wed, 13 Aug 2008 13:55:34 +0100</pubDate>
		</item>
		<item>
			<title>How to find latitude and longitude from a google map without looking at the url.</title>
			<link>http://www.solutionsamir.com/2008081167/Blog/Current-Issues/How-to-find-latitude-and-longitude-from-a-google-map-without-looking-at-the-url.html</link>
			<description><![CDATA[Here is a neat article I found on lifehacker that provides the solution using a one liner.


javascript:void(prompt('',gApplication.getMap().getCenter()));

The always helpful Tech-Recipes has co...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Mon, 11 Aug 2008 10:40:17 +0100</pubDate>
		</item>
		<item>
			<title>DJ Code Mix 12 - Phonograph Warmonger</title>
			<link>http://www.solutionsamir.com/2008072066/DnB-Mixes/Trippy-Neuro-Funk-_-Tech-Mixes/DJ-Code-Mix-12-Phonograph-Warmonger.html</link>
			<description><![CDATA[ /media/mixes/DJCode_Mix_12_Phonograph_Warmonger_DnB.mp3 ]]></description>
			<author>Administrator</author>
			<category>DnB Mixes - Trippy Neuro Funk / Tech Mixes</category>
			<pubDate>Sun, 20 Jul 2008 22:07:43 +0100</pubDate>
		</item>
		<item>
			<title>DJ Code Mix 10 - Low Frequency Oscillator</title>
			<link>http://www.solutionsamir.com/2008072065/DnB-Mixes/Trippy-Neuro-Funk-_-Tech-Mixes/DJ-Code-Mix-10-Low-Frequency-Oscillator.html</link>
			<description><![CDATA[/media/mixes/DJCode_Mix_10_Low_Frequency_Oscillator_DnB.mp3 ]]></description>
			<author>Administrator</author>
			<category>DnB Mixes - Trippy Neuro Funk / Tech Mixes</category>
			<pubDate>Sun, 20 Jul 2008 21:54:56 +0100</pubDate>
		</item>
		<item>
			<title>Data mining and content aggregation with PHP</title>
			<link>http://www.solutionsamir.com/2008071864/Programming/PHP/Data-mining-and-content-aggregation-with-PHP.html</link>
			<description><![CDATA[This is an interesting article I came across. It is mirrored and the link is provided at the end of the page.The functions described in this article will allow you to parse unstructured data from HTML...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Fri, 18 Jul 2008 15:38:16 +0100</pubDate>
		</item>
		<item>
			<title>The Man Show's Periodic Table</title>
			<link>http://www.solutionsamir.com/2008071763/Jokes/Funny-Geeky-Stuff/The-Man-Show-s-Periodic-Table.html</link>
			<description></description>
			<author>Administrator</author>
			<category>Jokes - Funny Geeky Stuff</category>
			<pubDate>Thu, 17 Jul 2008 19:02:50 +0100</pubDate>
		</item>
		<item>
			<title>How to dress for a programming position job interview </title>
			<link>http://www.solutionsamir.com/2008071562/Blog/Current-Issues/How-to-dress-for-a-programming-position-job-interview.html</link>
			<description><![CDATA[
Show some confidence - don't wear a suit to the interview.

A good-quality shirt if you're a PC, a turtleneck if you're a mac, a
T-shirt if you're linux, or a leather jacket if you're *bsd.

Sl...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Tue, 15 Jul 2008 21:53:31 +0100</pubDate>
		</item>
		<item>
			<title>problems connecting from a windows mysql client to a ubuntu linux mysql server</title>
			<link>http://www.solutionsamir.com/2008063058/Programming/SQL/problems-connecting-from-a-windows-mysql-client-to-a-ubuntu-linux-mysql-server.html</link>
			<description><![CDATA[The mysql default configuration is such that only local applications can access the server. After checking all the firewall configurations, this solution was the only one that worked.Elegance in simpl...]]></description>
			<author>Administrator</author>
			<category>Programming - SQL</category>
			<pubDate>Mon, 30 Jun 2008 04:07:51 +0100</pubDate>
		</item>
		<item>
			<title>How to limit the number of words typed in a textbox using javascript</title>
			<link>http://www.solutionsamir.com/2008062557/Programming/AJAX/How-to-limit-the-number-of-words-typed-in-a-textbox-using-javascript.html</link>
			<description><![CDATA[In this example we are going to create a function that will check the length of a html textarea element and dynamically update two span tags. The tags will display the number of words remaining and th...]]></description>
			<author>Administrator</author>
			<category>Programming - AJAX</category>
			<pubDate>Wed, 25 Jun 2008 20:06:15 +0100</pubDate>
		</item>
		<item>
			<title>DJ Code Mix 6 Get Your Trip On</title>
			<link>http://www.solutionsamir.com/2008062356/Breaks-Mixes/Nu-Skool-Breaks/DJ-Code-Mix-6-Get-Your-Trip-On.html</link>
			<description><![CDATA[/media/mixes/DJCode_Mix_6_Get_Your_Trip_On_Breaks.mp3 ]]></description>
			<author>Administrator</author>
			<category>Breaks Mixes - Nu Skool Breaks</category>
			<pubDate>Mon, 23 Jun 2008 23:16:11 +0100</pubDate>
		</item>
		<item>
			<title>DJ Code Breaks Mix 5 Dance Better With Molly</title>
			<link>http://www.solutionsamir.com/2008062355/Breaks-Mixes/Nu-Skool-Breaks/DJ-Code-Breaks-Mix-5-Dance-Better-With-Molly.html</link>
			<description><![CDATA[ /media/mixes/DJCode_Mix_5_Dance_Better_With_Molly_Breaks.mp3]]></description>
			<author>Administrator</author>
			<category>Breaks Mixes - Nu Skool Breaks</category>
			<pubDate>Mon, 23 Jun 2008 23:15:08 +0100</pubDate>
		</item>
		<item>
			<title>www.weddingq.com</title>
			<link>http://www.solutionsamir.com/2008062354/Web-Design/Websites/www.weddingq.com.html</link>
			<description><![CDATA[ Social networking like website for wedding couples to get their wedding sponsored.Points system allows the members to earn points by sending out invites to their friends and participate in the site. ...]]></description>
			<author>Administrator</author>
			<category>Web Design - Websites</category>
			<pubDate>Mon, 23 Jun 2008 00:35:26 +0100</pubDate>
		</item>
		<item>
			<title>Time for breakbeat tracks in a DAW like Reason, Cubase, Pro tools etc.</title>
			<link>http://www.solutionsamir.com/2008062253/Producing/Reason/Time-for-breakbeat-tracks-in-a-DAW-like-Reason-Cubase-Pro-tools-etc.html</link>
			<description><![CDATA[Breakbeat tracks tend to follow a certain pattern. Even though every track is unique, there are similarities in each track that make for an aesthetic mix and a DJ Friendly track. Here is the paradigm ...]]></description>
			<author>Administrator</author>
			<category>Producing - Reason</category>
			<pubDate>Sun, 22 Jun 2008 19:16:20 +0100</pubDate>
		</item>
		<item>
			<title>Readline Emacs Editing Mode Cheat Sheet Default Keyboard Shortcuts for Bash</title>
			<link>http://www.solutionsamir.com/2008062252/Operating-Systems/Linux-Unix/Readline-Emacs-Editing-Mode-Cheat-Sheet-Default-Keyboard-Shortcuts-for-Bash.html</link>
			<description><![CDATA[
 

Shortcut 
Function Name Description

Commands for 
Moving:

C-a beginning-of-line Move to the beginning of line.


C-e end-of-line Move to the end of line.


C-f forward-char Move f...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Sun, 22 Jun 2008 19:04:41 +0100</pubDate>
		</item>
		<item>
			<title>mysql sample select queries</title>
			<link>http://www.solutionsamir.com/2008062251/Programming/SQL/mysql-sample-select-queries.html</link>
			<description><![CDATA[The select statement has to be one of the most useful statements in SQL. The queries mentioned here can be used across the board with most of the popular databases out there including my personal favo...]]></description>
			<author>Administrator</author>
			<category>Programming - SQL</category>
			<pubDate>Sun, 22 Jun 2008 18:58:19 +0100</pubDate>
		</item>
		<item>
			<title>PHP Basics Reference Cheat Sheet</title>
			<link>http://www.solutionsamir.com/2008062250/Programming/PHP/PHP-Basics-Reference-Cheat-Sheet.html</link>
			<description><![CDATA[This cheat sheet covers Data Types, Variable Declarations, Common Array Functions, Comments, Arithmetic Operators, Relational Operators, Logical Operators, Assignment Operators, String Concatenation, ...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Sun, 22 Jun 2008 18:42:06 +0100</pubDate>
		</item>
		<item>
			<title>Advanced PHP Cheat Sheet</title>
			<link>http://www.solutionsamir.com/2008062249/Programming/PHP/Advanced-PHP-Cheat-Sheet.html</link>
			<description><![CDATA[A cheat sheet containing Advanced Operators, Database MySQL, File Reading / Writing, File / Directory Handling, Function Handling, Object Functions, Constants and Magic Constants.
Advanced Operators...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Sun, 22 Jun 2008 18:23:44 +0100</pubDate>
		</item>
		<item>
			<title>How to send HTML email in PHP using the built in mail() function</title>
			<link>http://www.solutionsamir.com/2008061848/Programming/PHP/How-to-send-HTML-email-in-PHP-using-the-built-in-mail-function.html</link>
			<description><![CDATA[This snippet can be used in situations where you would like to send customized emails to prospective users that were invited by your site members to join your site.  By manipulating the headers, we ha...]]></description>
			<author>Administrator</author>
			<category>Programming - PHP</category>
			<pubDate>Wed, 18 Jun 2008 10:10:28 +0100</pubDate>
		</item>
		<item>
			<title>Code for a working shopping cart solution in classic ASP</title>
			<link>http://www.solutionsamir.com/2008061847/Programming/ASP/Code-for-a-working-shopping-cart-solution-in-classic-ASP.html</link>
			<description><![CDATA[In this article we will be looking at the code for a complete shopping cart solution implemented in ASP.In order to get this working we will have to configure a local instance of an ADODB database.Sta...]]></description>
			<author>Administrator</author>
			<category>Programming - ASP</category>
			<pubDate>Wed, 18 Jun 2008 09:53:34 +0100</pubDate>
		</item>
		<item>
			<title>www.rugcompany.net</title>
			<link>http://www.solutionsamir.com/2008060745/Web-Design/Websites/www.rugcompany.net.html</link>
			<description><![CDATA[ Main Features:A full fledged E-Commerce solution for local business selling rugs online.Designed with multiple categories in mind.Each category has multiple size and price combinations. Checkout proc...]]></description>
			<author>Administrator</author>
			<category>Web Design - Websites</category>
			<pubDate>Sat, 07 Jun 2008 16:06:36 +0100</pubDate>
		</item>
		<item>
			<title>www.cpawc.com</title>
			<link>http://www.solutionsamir.com/2008060744/Web-Design/Websites/www.cpawc.com.html</link>
			<description><![CDATA[  Main features:Static content that informs users of the organization's purpose.An automatic paid member registratration system with two user categoriea, i.e. Individual Users, Corporate UsersDifferen...]]></description>
			<author>Administrator</author>
			<category>Web Design - Websites</category>
			<pubDate>Sat, 07 Jun 2008 15:52:25 +0100</pubDate>
		</item>
		<item>
			<title>DJ Code MIx 3 Revolution of the mind - Shapeshifter DnB mix</title>
			<link>http://www.solutionsamir.com/2008060142/DnB-Mixes/Trippy-Neuro-Funk-_-Tech-Mixes/DJ-Code-MIx-3-Revolution-of-the-mind-Shapeshifter-DnB-mix.html</link>
			<description><![CDATA[ /media/mixes/DJCode_Mix3_Revolution_Of_The_Mind_DnB.mp3]]></description>
			<author>Administrator</author>
			<category>DnB Mixes - Trippy Neuro Funk / Tech Mixes</category>
			<pubDate>Sun, 01 Jun 2008 02:15:23 +0100</pubDate>
		</item>
		<item>
			<title>My experiences dealing with Lawyer steven redgate an Immigration Attorney in San Antonio Texas</title>
			<link>http://www.solutionsamir.com/2008053040/Blog/Current-Issues/My-experiences-dealing-with-Lawyer-steven-redgate-an-Immigration-Attorney-in-San-Antonio-Texas.html</link>
			<description><![CDATA[A letter that I typed up addressed to the Texas Bar to hold attorneys accountable for malpractice.  

To
whomever this may concern,

             On August
1st 2007 my wife (Rachel Patel) and I ...]]></description>
			<author>Administrator</author>
			<category>Blog - Current Issues</category>
			<pubDate>Fri, 30 May 2008 21:45:35 +0100</pubDate>
		</item>
		<item>
			<title>Artificial Intelligence - Past, Present and Future</title>
			<link>http://www.solutionsamir.com/2008053038/Programming/Other/Artificial-Intelligence-Past-Present-and-Future.html</link>
			<description><![CDATA[                                                              The history of artificial Intelligence         Our research into the history of Artificial Intelligence
begins by examining the basis of ...]]></description>
			<author>Administrator</author>
			<category>Programming - Other</category>
			<pubDate>Fri, 30 May 2008 20:52:44 +0100</pubDate>
		</item>
		<item>
			<title>Use the iPhone with any SIM carrier in the united states</title>
			<link>http://www.solutionsamir.com/2008053036/Operating-Systems/Linux-Unix/Use-the-iPhone-with-any-SIM-carrier-in-the-united-states.html</link>
			<description><![CDATA[Hack your 1.1.4 firmware iPhone with a neat new program called iLiberty. 
Instructions are also included to create a custom bundle, which will allow you to see your carrier's logo and access carrier ...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Fri, 30 May 2008 03:01:44 +0100</pubDate>
		</item>
		<item>
			<title>Folder weight tool in ASP.NET </title>
			<link>http://www.solutionsamir.com/2008053035/Programming/ASP.NET/This-program-calculates-the-weight-of-each-folder-on-your-drive.html</link>
			<description><![CDATA[ASP.NET Visual Basic application - Disk weight directory report
Index all the files on your hard drive(s) and store them in a
SQL server 2005 database
This application lists all your local drives a...]]></description>
			<author>Administrator</author>
			<category>Programming - ASP.NET</category>
			<pubDate>Fri, 30 May 2008 02:41:18 +0100</pubDate>
		</item>
		<item>
			<title>How to automatically backup a folder in Windows periodically on a schedule</title>
			<link>http://www.solutionsamir.com/2008052933/Operating-Systems/Windows/How-to-automatically-backup-a-folder-in-windows-VB-Script.html</link>
			<description><![CDATA[We have become so dependent on the information contained in our machines that  loosing it is simply not an option anymore.  There is only one thing that is certain about hard drives, and that is that ...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Windows</category>
			<pubDate>Thu, 29 May 2008 12:45:29 +0100</pubDate>
		</item>
		<item>
			<title>Search /Replace a string within a file using Shell Scripting</title>
			<link>http://www.solutionsamir.com/2008052931/Operating-Systems/Linux-Unix/Search-_Replace-a-string-within-a-file-using-Shell-Scripting.html</link>
			<description><![CDATA[This command allows you to recursively search a directory for string_nameThis
command works on all *Nix like systems. The only caveat is to issue the
command in the directory that you are interested...]]></description>
			<author>Administrator</author>
			<category>Operating Systems - Linux Unix</category>
			<pubDate>Thu, 29 May 2008 10:43:20 +0100</pubDate>
		</item>
		<item>
			<title>DJ Code Mix 2 Revolution Of the Mind</title>
			<link>http://www.solutionsamir.com/2008052629/Breaks-Mixes/Nu-Skool-Breaks/DJ-Code-Mix-2-Revolution-Of-the-Mind.html</link>
			<description><![CDATA[ /media/mixes/DJCode_Mix2_Nu_Skool_Breaks.mp3]]></description>
			<author>Administrator</author>
			<category>Breaks Mixes - Nu Skool Breaks</category>
			<pubDate>Mon, 26 May 2008 16:05:38 +0100</pubDate>
		</item>
		<item>
			<title>Code and Wreckage Mix 1 Neuro Tech DnB Full Spectrum Warriors</title>
			<link>http://www.solutionsamir.com/2008052630/DnB-Mixes/Trippy-Neuro-Funk-_-Tech-Mixes/Code-and-Wreckage-Mix-1-Neuro-Tech-DnB-Full-Spectrum-Warriors.html</link>
			<description><![CDATA[ /media/mixes/DJCode_Mix_1_Full_Spectrum_Warriors_DnB.mp3]]></description>
			<author>Administrator</author>
			<category>DnB Mixes - Trippy Neuro Funk / Tech Mixes</category>
			<pubDate>Mon, 26 May 2008 16:05:03 +0100</pubDate>
		</item>
		<item>
			<title>DJ Code Breaks Mix 4 Revolution of The Mind</title>
			<link>http://www.solutionsamir.com/2008052628/Breaks-Mixes/Nu-Skool-Breaks/DJ-Code-Breaks-Mix-4-Revolution-of-The-Mind.html</link>
			<description><![CDATA[ /media/mixes/DJCode_Mix_4_Revolution_Of_The_Mind_Breaks.mp3]]></description>
			<author>Administrator</author>
			<category>Breaks Mixes - Nu Skool Breaks</category>
			<pubDate>Mon, 26 May 2008 16:05:00 +0100</pubDate>
		</item>
	</channel>
</rss>

