<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Carlos Developer Blog</title>
	<link>http://www.carlos-alcala.com</link>
	<description>Just another developer weblog</description>
	<lastBuildDate>Wed, 02 Jun 2010 04:55:28 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
			<div  style="padding:7px; float: right; padding-right: 0; margin: 3px;"><!-- Ad number: 1 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-3924546738683546"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "336699";
		google_color_link = "0000FF"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "008000";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>CodeIgniter vCard Library to Export Vcard .VCF files with Zip Support</title>
		<description><![CDATA[The Vcard.php Library Code (applications/library/Vcard.php) :
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350&#60;?php &#160;
if &#40; ! defined&#40;'BASEPATH'&#41;&#41; exit&#40;'No direct script access allowed'&#41;;
/*
/*
&#160;* ---------------------------------------------------------------------------------------------------------------------------
&#160;* &#160;vCard library for Code Igniter applications extended from class_vcard from Troy Wolf [troy@troywolf.com]
&#160;* ---------------------------------------------------------------------------------------------------------------------------
&#160;*/
&#160;
/**
* Codeigniter vCard &#160;library
*/
class Vcard
&#123;
&#160; &#160; /**
&#160; &#160; &#160;* vcard variables
&#160; &#160; &#160;**/
&#160; &#160; protected $ci;

&#160; &#160; protected $log;
&#160; &#160; protected $data; &#160;&#160; &#160; &#160; &#160; [...]]]></description>
		<link>http://www.carlos-alcala.com/?p=98</link>
			</item>
	<item>
		<title>CodeIgniter + Email + SMTP Custom Config to Gmail Working</title>
		<description><![CDATA[I was trying to make use of the email library on codeigniter, and found some issues on the Gmail config and authentication errors, then after making my own I have made a custom configuration that works fine.
1. Create this CONSTANTS on config/constanst.php
define('MAIL_PROT', 'smtp');
define('SITE_ADMIN', 'Webmaster');
define('SITE_EMAIL', 'gmail.user@gmail.com');
define('SMTP_HOST', 'ssl://smtp.googlemail.com');
define('SMTP_USER', 'gmail.user@gmail.com');
define('SMTP_PASS', 'somepassword');
define('SMTP_PORT', 465);
define('MAIL_TYPE', 'html');
define('MAIL_CHARSET', 'utf-8');
2. Then create a smtp [...]]]></description>
		<link>http://www.carlos-alcala.com/?p=84</link>
			</item>
	<item>
		<title>30 HTML Best Practices for Beginners</title>
		<description><![CDATA[Thanks to Jeffrey Way for this great article, I just want to share to the world (and thanks Peter Hanson for this also)...
30 HTML Best Practices for Beginners
I hope it would be useful for all the Web  developers.
Carlos
]]></description>
		<link>http://www.carlos-alcala.com/?p=75</link>
			</item>
<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
			<div  style="padding:7px; float: left; padding-left: 0px; margin: 3px;"><!-- Ad number: 2 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-3924546738683546"; google_alternate_color = "FFFFFF";
		google_ad_width = 300; google_ad_height = 250;
		google_ad_format = "300x250_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "2186FA";
		google_color_link = "FFFFFF"; google_color_bg = "F7F7F7";
		google_color_text = "000000"; google_color_url = "FFFFFF";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Codeigniter SimpleXML data parser with Table View</title>
		<description><![CDATA[I read about the SimpleXML library from this blog SimpleXML Library, but this time, I mafe some changes to make the MVC concepts on the table view and xmltest controller best fit. 
First we load the Simplexml library to applications/library on codeigniter:
result="";
	$this->evalCode="";
	$values="";
	$encoding = 'UTF-8';
	$parser = xml_parser_create($encoding);
	xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
	xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
	$ok = xml_parse_into_struct($parser, $data, $values);
	if (!$ok) [...]]]></description>
		<link>http://www.carlos-alcala.com/?p=17</link>
			</item>
	<item>
		<title>Web Developer Tools</title>
		<description><![CDATA[With so many browser out there in the wild, working as a Web Developer certainly is not an easy job these days. Thankfully, over the last years, decent tools have been developed by bright people that make developing and debugging of code easier for the developer. But sometimes, it is not easy to keep track [...]]]></description>
		<link>http://www.carlos-alcala.com/?p=14</link>
			</item>
	<item>
		<title>send AJAX post parameters data with Jquery UI Dialog</title>
		<description><![CDATA[After SEVERAL HOURS of try/catch I finally came with this working example, its working on AJAX POST with new rows appends to the TABLE on the fly (that was my real problem):
The magic came with link this:
remove
remove
remove
This is the final working with AJAX POST and Jquery Dialog:
var $k = jQuery.noConflict();  //this is for NO-CONFLICT [...]]]></description>
		<link>http://www.carlos-alcala.com/?p=6</link>
			</item>
	<item>
		<title>Just another Blog site</title>
		<description><![CDATA[Welcome to my Site !
My personal Blog Site www.carlos-alcala.com is borning this day, July 4th as an "Blog Independence Day", but ONLY THIS TIME it's just for me,  and to remind every one else my comming soon Birthday on July 6th.
This site porpouse is for my blogging system and "share to the world " over [...]]]></description>
		<link>http://www.carlos-alcala.com/?p=3</link>
			</item>
<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
			<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 3 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-3924546738683546"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "336699";
		google_color_link = "0000FF"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "008000";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Hello world!</title>
		<description><![CDATA[Hello Blog World, finally I get my own blog site, enjoy it  !!!
]]></description>
		<link>http://www.carlos-alcala.com/?p=1</link>
			</item>
</channel>
</rss>
