<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tony Baltazar &#187; Books</title>
	<atom:link href="http://abaltazar.org/category/books/feed/" rel="self" type="application/rss+xml" />
	<link>http://abaltazar.org</link>
	<description>Free Software / Ruby / Security / Arsenal Football Club</description>
	<lastBuildDate>Tue, 24 Jan 2012 07:52:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>ctypes &#8211; Python&#8217;s awesome low-level library</title>
		<link>http://abaltazar.org/2011/07/21/ctypes-pythons-awesome-low-level-library/</link>
		<comments>http://abaltazar.org/2011/07/21/ctypes-pythons-awesome-low-level-library/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 04:29:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=791</guid>
		<description><![CDATA[Last week I purchased the book Gray Hat Python, by Justin Seitz. Though, I&#8217;m somewhat skeptical that I&#8217;m going to be finishing reading the book anytime soon, I started reading it&#8217;s first chapter. It appears that the book is going to be mostly based on Python&#8217;s ctypes library. Which in short, this really cool library [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I purchased the book Gray Hat Python, by Justin Seitz. Though, I&#8217;m somewhat skeptical that I&#8217;m going to be finishing reading the book anytime soon, I started reading it&#8217;s first chapter. It appears that the book is going to be mostly based on Python&#8217;s ctypes library. Which in short, this really cool library lets you create complex C datatypes and low-level memory manipulation in pure Python code. One thing that really impressed me about cytpes is its ability to call functions in dynamically linked libraries. For example, with ctypes, you&#8217;re able to call the printf function from both Linux&#8217;s and Windows C runtime libraries, which I think it&#8217;s really cool.</p>
<p>
<strong>Linux<br />
</strong><br />
<code><br />
from ctypes import *</p>
<p>love = CDLL('libc.so.6')<br />
msg = 'Hello Baby'</p>
<p>love.printf("Testing: %s\n", msg)<br />
</code><br />
Outputs:<br />
<code><br />
Testing: Hello Baby</p>
<p></code></p>
<hr />
<p><strong>MS-Windows<br />
</strong><br />
<code><br />
from ctypes import *</p>
<p>msvcrt = cdll.msvcrt</p>
<p>msg = 'Hi'</p>
<p>msvcrt.printf('Message: %s', msg)<br />
</code><br />
Outputs:<br />
<code><br />
Message: Hi<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2011/07/21/ctypes-pythons-awesome-low-level-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s in my bookshelf?</title>
		<link>http://abaltazar.org/2011/06/12/what%e2%80%99s-in-my-bookshelf-4/</link>
		<comments>http://abaltazar.org/2011/06/12/what%e2%80%99s-in-my-bookshelf-4/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 20:51:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=676</guid>
		<description><![CDATA[As always I&#8217;m pretty late in writing my book reviews. This time it&#8217;s been well over 6 months since I finished reading the book &#8220;Beginning Ruby&#8221; (first edition) by Peter Cooper. I have to say is this by far the best Ruby book that I&#8217;ve read so far. (This is out of a 13 book [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://abaltazar.org/wordpress/wp-content/uploads/2011/06/beginning-ruby-cover.jpg"><img src="http://abaltazar.org/wordpress/wp-content/uploads/2011/06/beginning-ruby-cover.jpg" alt="" title="beginning-ruby-cover" width="218" height="282" class="alignleft size-full wp-image-678" /></a>As always I&#8217;m pretty late in writing my book reviews. This time it&#8217;s been well over 6 months since I finished reading the book &#8220;Beginning Ruby&#8221; (first edition) by Peter Cooper. I have to say is this by far the best Ruby book that I&#8217;ve read so far. (<a href="http://www.flickr.com/photos/alpha01/5825451207/in/photostream">This is out of a 13 book collection that I own on Ruby programming.</a>) I&#8217;ve always been a fan of Apress &#8220;Beginning&#8221; title&#8217;s, and this book is definitely not the exception. Although this book is technically considered for beginning/intermediate programmers wanting to dive to the wonderful world of Ruby, I feel this book is perfect for all levels of programming expertise. The authors does a wonderful job explain the concepts of each chapter and slowly building you to what will be the next chapter. Like Apress&#8217; &#8220;Beginning Perl&#8221; book help me tremendously in learning the language, I have to say this book taught how to program in Ruby. </p>
<p>I&#8217;ll definitely come back to this book and use as a reference. Anyone new or already experienced using Ruby, will definitely benefit from reading this book. I hope this book (all editions) gets the high praise from the Ruby community, which it deserves, as in my eyes this is a classic programming book and I see this title as the Llama/Camel book for the Ruby World.</p>
<p>Chapter 1: Let&#8217;s Get it Started: Installing Ruby<br />
Chapter 2: Programming == Joy: A Whistle-Stop Tour of Ruby and Object Orientation<br />
Chapter 3: Ruby&#8217;s Building Blocks: Data, Expressions and Flow Control<br />
Chapter 4: Developing a Basic Ruby Application<br />
Chapter 5: The Ruby Ecosystem<br />
Chapter 6: Classes, Objects, and Modules<br />
Chapter 7: Projects and Libraries<br />
Chapter 8: Documentation, Error Handling, Debugging, and Testing<br />
Chapter 9: Files and Databases<br />
Chapter 10: Deploying Ruby Applications and Libraries<br />
Chapter 11: Advance Ruby Features<br />
Chapter 12: Tying it Together: Developing a Larger Ruby Application<br />
Chapter 13: Ruby on Rails: Ruby&#8217;s Killer App<br />
Chapter 14: Ruby and the Internet<br />
Chapter 15: Networking, Sockets, and Daemons<br />
Chapter 16: Useful Ruby Libraries and Gems</p>
<p><a href="http://www.amazon.com/Beginning-Ruby-Professional-Peter-Cooper/dp/1430223634/ref=sr_1_1?ie=UTF8&#038;qid=1307909654&#038;sr=8-1">Beginning Ruby (2nd Edition)</a><br />
5/5</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2011/06/12/what%e2%80%99s-in-my-bookshelf-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Charles Bowden &#8211; Murder City</title>
		<link>http://abaltazar.org/2011/03/11/charles-bowden-murder-city/</link>
		<comments>http://abaltazar.org/2011/03/11/charles-bowden-murder-city/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 07:43:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=584</guid>
		<description><![CDATA[
As always, Charles Bowden slaps everyone in the face with logic and common sense. 
]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="282" data="http://media.azpm.org/ondemand/swf/fp3/flowplayer.commercial-3.1.5.swf" type="application/x-shockwave-flash"><param name="movie" value="http://media.azpm.org/ondemand/swf/fp3/flowplayer.commercial-3.1.5.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value='config={"width":617,"height":372,"key":"#$c3492e48e9da60b0777","clip":{"url":"mp4:master/video/2010/5/17/qrhd/charles_bowden_murder_city.mp4","provider":"rtmpvod","scaling":"fit","autoPlay":false},"canvas":{"backgroundImage":"http://media.azpm.org/master/swf/fp3/clicktoplay480.gif"},"plugins":{"rtmpvod":{"url":"http://media.azpm.org/ondemand/swf/fp3/flowplayer.rtmp-3.1.3.swf","netConnectionUrl":"rtmp://fms.azpm.org/vod/"},"controls":{"url":"http://media.azpm.org/ondemand/swf/fp3/flowplayer.controls-3.1.5.swf","bufferGradient":"none","timeBgColor":"#666666","buttonOverColor":"#728B94","borderRadius":"0px","sliderColor":"#000000","progressGradient":"medium","buttonColor":"#6E95BE","sliderGradient":"none","durationColor":"#ffffff","tooltipColor":"#6E95BE","progressColor":"#112233","bufferColor":"#666666","backgroundColor":"#AAAAAA","volumeSliderGradient":"none","backgroundGradient":[0.6,0.3,0,0,0],"tooltipTextColor":"#ffffff","timeColor":"#FFFFFF","volumeSliderColor":"#000000","timeBgHeightRatio":0.9,"height":24,"opacity":1}},"logo":{"url":"http://media.azpm.org/master/img/fp_bugs/azpm.org.png","top":"5","right":"5","opacity":0.5,"fullscreenOnly":false,"displayTime":0,"fadeSpeed":0,"linkUrl":"http://www.azpm.org"},"playlist":[{"url":"mp4:master/video/2010/5/17/qrhd/charles_bowden_murder_city.mp4","provider":"rtmpvod","autoPlay":false}]}' /></object></p>
<p>As always, Charles Bowden slaps everyone in the face with logic and common sense. </p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2011/03/11/charles-bowden-murder-city/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s in my bookshelf?</title>
		<link>http://abaltazar.org/2011/01/15/what%e2%80%99s-in-my-bookshelf-3/</link>
		<comments>http://abaltazar.org/2011/01/15/what%e2%80%99s-in-my-bookshelf-3/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 06:13:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=450</guid>
		<description><![CDATA[It&#8217;s been a couple of months since I finished reading &#8220;Murder City Ciudad Juarez and the Global Economy&#8217;s New Killing Fields&#8221; by Charles Bowden and I just realized it&#8217;s injust to not write a review to a truly amazing book. 
Unfortunately the general public does not know that Mexico is on its way of become [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://abaltazar.org/wordpress/wp-content/uploads/2010/10/murdercity.jpg"><img src="http://abaltazar.org/wordpress/wp-content/uploads/2010/10/murdercity-196x300.jpg" alt="" title="murdercity" width="196" height="300" class="alignleft size-medium wp-image-459" /></a>It&#8217;s been a couple of months since I finished reading &#8220;Murder City Ciudad Juarez and the Global Economy&#8217;s New Killing Fields&#8221; by Charles Bowden and I just realized it&#8217;s injust to not write a review to a truly amazing book. </p>
<p>Unfortunately the general public does not know that Mexico is on its way of become a full fledge Narco state. According to United Nation&#8217;s advisor and expert in international organized, Dr Edgardo Buscaglia, &#8220;the state&#8217;s institution and Mexico&#8217;s civil society is in as criminal organizations are undermining the legitimacy of the Mexican state and getting legiticay approval and acceptance by society.&#8221;<br />
In reality is that Mexico is in a verge a civil war, caused by the failed US drug prohibition policy and many other key decisions made by the governments surrounding it.</p>
<p>The book Murder City is primarily focused in Ciudad Juarez, Chihuahua and it&#8217;s surrounding border cities.</p>
<p>The book consists of three different protagonists; Miss Sinaloa, Emilio Gutierrez, and El Sicario. In short Miss Sinaloa is a pageant queen who goes to a private party in Ciudad Juarez and she gets raped by the police and goes insane, which eventually she in ends up in a mental asylum on the outskirts of Ciudad Juarez. The second protagonist is Emilio Gutierrez. He is a journalist who published stories about the crimes that the Mexican army was committing to local residents. Eventually until receiving death threats warnings from elements of the Mexican army. The author Charles Bowden mostly describes on how the United States doesn&#8217;t want to face facts and admit that Mexico is not a country that respects human rights. What impacted on me the most on Emilio&#8217;s Gutierrez story is how currently the United States hypocritically critizes other nations for human rights abuses and when a person like Emilio Gutierrez asks for alysum, the US see&#8217;s and treats him like a criminal. The third and final protaganist on this book is &#8220;El Sicario&#8221;, which in English translates to &#8220;The Hitmen&#8221;. El Sicario&#8217;s story in my opinion is what makes this entire book a classic. Charles Bowden interviewed El Sicario, and painted his before, during and after life, after working for a drug cartel and organized crime for over 20 years. </p>
<p>This book is definitely the best non-fiction piece of literature that I&#8217;ve read in my life thus far. Although I don&#8217;t fully agree with all of Charles Bowden views, specially his views about illegal immigration. He deffinetly portrayed and informed on other things about Ciudad Juarez and Mexico to that matter, which I wouldn&#8217;t really thought or think about. The most notable being the affect of the North America Free Trade Agreement (NAFTA). This is the primary reason why he added the &#8220;Global&#8217;s economy&#8217;s Killing Field&#8217;s&#8221; subtitle to the book. Essentially what NAFTA has done in Ciudad Juarez is to, attract hundreds of thousands of peasants from southern Mexico to essentially work on American slave factories. Of These factories almost 100% turnover in a city of poverty where it&#8217;s social society is faced with the inability of being able to take care of their young, and create a culture where theres 500 &#8211; 900 street gangs.  Thus creating Ciudad Juarez the most dangerous and voilent city of the world. Where it&#8217;s violence exceeds of those in Iraq and Afghanistan. </p>
<p>Charles Bowden and Emilio Gutierrez on the &#8220;Narco State&#8221; National Geographic documentary.<br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/KaRK3e0fcAw?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/KaRK3e0fcAw?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>An Italian filmmaker interviewed &#8220;El Sicario&#8221; on the truly amazing documentary called &#8220;El Sicario &#8211; room 164&#8243;. (German subtitles)<br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/_g-lcoiy5dE?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/_g-lcoiy5dE?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object><br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/ZropVoSS5rs?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZropVoSS5rs?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object><br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/ArjyGqDWhLM?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ArjyGqDWhLM?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object><br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/YNiXQcoECVM?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YNiXQcoECVM?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>BookTV has two really good interviews made to Charles Bowden about the book.<br />
<a href="http://booktv.org/Watch/11501/2010+Los+Angeles+Times+Festival+of+Books+Interview+and+Callin+with+Charles+Bowden+Murder+City+Ciudad+Juarez+and+the+Global+Economys+New+Killing+Fields.aspx">LATimesFestival of Books Interview and Calling with Charles Bowden Murder City Ciudad Juarez and the Global Economy&#8217;s New Killing Fields</a><br />
<a href="http://booktv.org/Program/11434/Murder+City+Ciudad+Juarez+and+the+Global+Economys+New+Killing+Fields.aspx">BookTV &#8211; Charles Bowden Interview </a></p>
<p>References:<br />
<a href="http://www.youtube.com/watch?v=SBQGZrZY1Rg&#038;feature=related">http://www.youtube.com/watch?v=SBQGZrZY1Rg&#038;feature=related</a><br />
<a href="http://www.youtube.com/watch?v=jT0HD_6hfq4&#038;feature=related">http://www.youtube.com/watch?v=jT0HD_6hfq4&#038;feature=related</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2011/01/15/what%e2%80%99s-in-my-bookshelf-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s in my bookshelf?</title>
		<link>http://abaltazar.org/2010/09/14/what%e2%80%99s-in-my-bookshelf-2/</link>
		<comments>http://abaltazar.org/2010/09/14/what%e2%80%99s-in-my-bookshelf-2/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 06:39:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=353</guid>
		<description><![CDATA[
I finally finished reading my first book on Ruby programming. Ruby: Visual QuickStart Guide, by Larry Ullman has to be the perfect introduction book for anyone trying to learn the Ruby programming language, even though sadly it only has 3 five star reviews on Amazon. The author writing thoroughly explains the concepts in a friendly [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://abaltazar.org/wordpress/wp-content/uploads/2010/08/visual_ruby.jpg"><img class="alignleft size-medium wp-image-354" title="visual_ruby" src="http://abaltazar.org/wordpress/wp-content/uploads/2010/08/visual_ruby-225x300.jpg" alt="" width="225" height="300" /></a><br />
I finally finished reading my first book on Ruby programming. Ruby: Visual QuickStart Guide, by Larry Ullman has to be the perfect introduction book for anyone trying to learn the Ruby programming language, even though sadly it only has 3 five star reviews on Amazon. The author writing thoroughly explains the concepts in a friendly and easy to understand manner.  This being the third book that I&#8217;ve read from this same author, the other titles being for <a href="http://www.amazon.com/MySQL-Second-Larry-Ullman/dp/0321375734/ref=sr_1_12?ie=UTF8&#038;s=books&#038;qid=1284532161&#038;sr=8-12">MySQL</a> and <a href="http://www.amazon.com/PHP-World-Wide-Web-Third/dp/0321442490/ref=pd_bxgy_b_img_a">PHP</a> (no reviews on these yet since I&#8217;m not fully finished reading them). </p>
<p>One thing I would&#8217;ve like changed the author to change was on the database chapter, as it was mainly focused on SQLite. It would have been better if the author used MySQL instead. Also it would have been better if the author removed the dedicated chapter to Rails, and instead extended the chapter to have more generic web related like Net::HTTP, given how powerful that single class is. </p>
<p>Chapter 1: Getting Started<br />
Chapter 2: Simple Scripts<br />
Chapter 3: Simple Types<br />
Chapter 4: Array, Ranges, and Hashes<br />
Chapter 5: Control structures<br />
Chapter 6: Creating Methods<br />
Chapter 7: Creating Classes<br />
Chapter 8: Inheritance and More<br />
Chapter 9: Modules and Includes<br />
Chapter 10: Regular Expressions<br />
Chapter 11: Debugging and Error Handling<br />
Chapter 12: Rubygems<br />
Chapter 13: Directories and Files<br />
Chapter 14: Databases<br />
Chapter 15: Networking<br />
Chapter 16: Ruby on Rails<br />
Chapter 17: Dynamic Programing</p>
<p>I would highly recommended this book to anybody starting or wanting to learn Ruby.<br />
<a href="http://www.amazon.com/Ruby-Visual-QuickStart-Larry-Ullman/dp/0321553853">Ruby-Visual-QuickStart</a><br />
4/5</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/09/14/what%e2%80%99s-in-my-bookshelf-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s in my bookshelf?</title>
		<link>http://abaltazar.org/2010/07/17/what%e2%80%99s-in-my-bookshelf/</link>
		<comments>http://abaltazar.org/2010/07/17/what%e2%80%99s-in-my-bookshelf/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 16:55:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=279</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://covers.oreilly.com/images/9780596520113/cat.gif"" /><br />
I finally finished reading my second book on Perl. Unlike Apress&#8217; Beginning Perl, Learning Perl 5th Edition by Randal Schwartz, Tom Phoenix, and brian d foy is not a book for someone new to programming.<br />
With a solid understanding of dynamic languages like PHP and Ruby, I found most of the material covered on this book very comprehensive, thus said, at times I found myself re-reading portions of the chapters just to understand concept the authors were trying to cover. </p>
<p>For the most part, I read this book jointly with Apress&#8217; Beginning Perl and I found this book to have more practical real word code examples (at least if you&#8217;re a sysadmin). The most notably difference on how this book was written for someone who is new to programming with Perl, but to not new to programming are the three chapters the authors dedicate to regular expressions. </p>
<p>Chapter 1: Introduction<br />
Chapter 2: Scalar Data<br />
Chapter 3: Lists and Arrays<br />
Chapter 4: Subroutines<br />
Chapter 5: Input and Output<br />
Chapter 6: Hashes<br />
Chapter 7: In the World of Regular Expressions<br />
Chapter 8: Matching with Regular Expressions<br />
Chapter 9: Processing Text with Regular Expressions<br />
Chapter 10: More Control Structures<br />
Chapter 11: Perl Modules<br />
Chapter 12: File Tests<br />
Chapter 13: Directory Operations<br />
Chapter 14: Strings and Sorting<br />
Chapter 15: Smart Matching and given-when<br />
Chapter 16: Process Management<br />
Chapter 17: Some Advanced Perl Techniques<br />
Chapter 14 Introduction to CGI<br />
Chapter 15: Perl and DBI</p>
<p>I would only suggest this book to someone with a solid knowledge of another scripting language.<br />
<a href="http://www.amazon.com/Learning-Perl-5th-Randal-Schwartz/dp/0596520107/ref=ntt_at_ep_dpi_1">Learning Perl, 5th Edition</a><br />
3/5</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/07/17/what%e2%80%99s-in-my-bookshelf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What&#8217;s in my bookshelf?</title>
		<link>http://abaltazar.org/2010/06/05/whats-in-my-bookshelf/</link>
		<comments>http://abaltazar.org/2010/06/05/whats-in-my-bookshelf/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 23:55:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=203</guid>
		<description><![CDATA[
It only took me exactly two years to read the Apress book Beginning Perl by James Lee, and I would have to admit this is the best programming book that I&#8217;ve read so far. I would need  to give this book high praise as it was easy and fun to read ( pretty much [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/Beginning-Perl-Second-James-Lee/dp/159059391X/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1275782560&amp;sr=8-1"><img src="http://abaltazar.org/wordpress/wp-content/uploads/2010/06/beg-perl.gif" alt="" title="beginning_perl" width="125" height="164" class="alignleft size-full wp-image-204" /></a><br />
It only took me exactly two years to read the Apress book Beginning Perl by James Lee, and I would have to admit this is the best programming book that I&#8217;ve read so far. I would need  to give this book high praise as it was easy and fun to read ( pretty much taught me programming in Perl. Even tough I don&#8217;t use Perl on a daily bases, nor is Perl my prefer language of choice to write scripts ) but thanks to this book I could confidently read other programmers perl code and have an understanding on what&#8217;s going on in their program.</p>
<p>Chapter 1: First Steps in Perl<br />
Chapter 2: Scalars<br />
Chapter 3: Control Flow Constructs<br />
Chapter 4: Lists and Arrays<br />
Chapter 5: Hashes<br />
Chapter 6: Subroutines/Functions<br />
Chapter 7: Regular Expressions<br />
Chapter 8: Files and Data<br />
Chapter 9: String Processing<br />
Chapter 10: Interface to the Operating System<br />
Chapter 11: References<br />
Chapter 12: Object-Oriented Perl<br />
Chapter 13: Modules<br />
Chapter 14 Introduction to CGI<br />
Chapter 15: Perl and DBI</p>
<p>I would highly recommended this book to anybody starting or wanting to learn perl.<br />
 <a href="http://www.amazon.com/Beginning-Perl-Second-James-Lee/dp/159059391X/ref=sr_1_1?ie=UTF8&#038;s=books&#038;qid=1279382271&#038;sr=8-1">Beginning Perl, Second Edition</a><br />
5/5</p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2010/06/05/whats-in-my-bookshelf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quest towards self-taught computer programming</title>
		<link>http://abaltazar.org/2007/07/10/quest-towards-self-though-computer-programming/</link>
		<comments>http://abaltazar.org/2007/07/10/quest-towards-self-though-computer-programming/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 06:00:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://abaltazar.org/?p=5</guid>
		<description><![CDATA[After a three week hiatus I&#8217;ve got back againg reading my PHP and Bash shell programming books.



]]></description>
			<content:encoded><![CDATA[<p>After a three week hiatus I&#8217;ve got back againg reading my PHP and Bash shell programming books.<br />
<br />
<img src="http://images.amazon.com/images/P/0672327627.01.MZZZZZZZ.jpg" /></p>
<p><img src="http://images.amazon.com/images/P/0672314819.01.MZZZZZZZ.jpg" alt="Bash " /></p>
]]></content:encoded>
			<wfw:commentRss>http://abaltazar.org/2007/07/10/quest-towards-self-though-computer-programming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

