<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="http://www.FluffyCat.com/rss.xml" rel="self" type="application/rss+xml" /> 
<title>FluffyCat.com</title>
<link>http://www.FluffyCat.com/</link>
<description>FluffyCat.com</description>
<language>en-us</language>
<pubDate>Wed, 22 Feb 2012 03:19:02 EST</pubDate>
<webMaster>larry@FluffyCat.com (Larry Truett)</webMaster>
<item>
<title>Java Casting</title>
<link>http://www.FluffyCat.com/Java/Casting/</link>
<description>Getting a String out of an ArrayList

String StringName = (String)arrayListName.get(n);


Getting a double out of an ArrayList (Stored in the ArrayList as a Double)

double doubName = ((Double)arrayListName.get(n)).doubleValue();


Getting a...</description>
<guid isPermaLink="false">article359</guid>
</item>
<item>
<title>PHP Design Patterns Flyweight</title>
<link>http://www.FluffyCat.com/PHP-Design-Patterns/Flyweight/</link>
<description>About the Flyweight

In the flyweight pattern instances of a class which are identical are shared in an implementation instead of creating a new instance of that class for every instance.



This is done largely to assist performance, and works...</description>
<guid isPermaLink="false">article1049</guid>
</item>
<item>
<title>PHP Design Patterns Decorator</title>
<link>http://www.FluffyCat.com/PHP-Design-Patterns/Decorator/</link>
<description>About the Decorator

In the Decorator pattern, a class will add functionality to another class, without changing the other classes structure.



In this example, the Book class will have its title shown in different ways by the BookTitleDecorator...</description>
<guid isPermaLink="false">article70</guid>
</item>
<item>
<title>PHP Design Patterns Composite</title>
<link>http://www.FluffyCat.com/PHP-Design-Patterns/Composite/</link>
<description>About the Composite

In the Composite pattern an idividual object or a group of that object will have similar behaviors.



In this example, the OneBook class is the individual object.  The SeveralBooks class is a group of zero or more OneBook objects.



Both...</description>
<guid isPermaLink="false">article62</guid>
</item>
<item>
<title>PHP Design Patterns State</title>
<link>http://www.FluffyCat.com/PHP-Design-Patterns/State/</link>
<description>About the State

In the State Pattern a class will change its behavior when circumstances change.



In this example, the BookContext class holds an implementation of the BookTitleStateInterface, starting with BookTitleStateStars.  BookTitleStateStars...</description>
<guid isPermaLink="false">article1068</guid>
</item>
<item>
<title>SQL Tables</title>
<link>http://www.FluffyCat.com/SQL/Tables/</link>
<description>The Tables Used on the FluffyCat.com SQL Reference and Example Site.

Director_Film_Table


 Director_Last_Name - 30 Characters
 Director_First_Name - 30 Characters
 Film_Title - 50 Characters
 unique key - Director_Last_Name, Director_First_Name,...</description>
<guid isPermaLink="false">article147</guid>
</item>
<item>
<title>Java Design Patterns Factory Method</title>
<link>http://www.FluffyCat.com/Java-Design-Patterns/Factory-Method/</link>
<description>Factory Method Overview

Methods to make and return components of one object various ways. 



In this example the SoupFactoryMethod defines the makeSoupBuffet method which returns a SoupBuffet object. The SoupFactoryMethod also defines the methods...</description>
<guid isPermaLink="false">article552</guid>
</item>
<item>
<title>Java Design Patterns Singleton</title>
<link>http://www.FluffyCat.com/Java-Design-Patterns/Singleton/</link>
<description>Singleton Overview
A class distributes the only instance of itself. 



In this example SingleSpoon class holds one instance of SingleSpoon in private static SingleSpoon theSpoon;andquot;. The SingleSpoon class determines the spoons availability...</description>
<guid isPermaLink="false">article576</guid>
</item>
<item>
<title>Java Design Patterns Builder</title>
<link>http://www.FluffyCat.com/Java-Design-Patterns/Builder/</link>
<description>Builder OverviewMake and return one object various ways. 



In this example the abstract SoupBuffetBuilder defines the methods necessary to create a SoupBuffet. 



BostonSoupBuffetBuilder and the HonoluluSoupBuffetBuilder both extend the SoupBuffetBuilder....</description>
<guid isPermaLink="false">article539</guid>
</item>
<item>
<title>Java Design Patterns Abstract Factory</title>
<link>http://www.FluffyCat.com/Java-Design-Patterns/Abstract-Factory/</link>
<description>Abstract Factory (AKA Kit) Overview
An abstract factory has sets of methods to make families of various objects.



In this example the AbstractSoupFactory defines the method names and return types to make various kinds of soup. 



The BostonConcreteSoupFactory...</description>
<guid isPermaLink="false">article530</guid>
</item>
<item>
<title>Comment about Java Accessability on Monday, February 13th, 2012 11:55am</title>
<link>http://www.FluffyCat.com/Java/Accessability/</link>
<description>...</description>
<guid isPermaLink="false">comment268</guid>
</item>
<item>
<title>Comment about Java Casting on Monday, February 13th, 2012 11:15am</title>
<link>http://www.FluffyCat.com/Java/Casting/</link>
<description>Thank you for this useful sharing, , but you wrote lines from Getting a String out of an ArrayList to double to int two times.</description>
<guid isPermaLink="false">comment267</guid>
</item>
<item>
<title>Comment about SQL MySQL Database Backup With PHP on Friday, January 20th, 2012 1:56am</title>
<link>http://www.FluffyCat.com/SQL/MySQL-Database-Backup-With-PHP/</link>
<description>This program does rely on php having authority to create a file.
Ive had the same permission problem before with PHP scripts and also when running the mysqldump command. Looking for backup tools I found MySQLBackupFTP (http://mysqlbackupftp.com). You...</description>
<guid isPermaLink="false">comment263</guid>
</item>
<item>
<title>Comment about COBOL Initialize on Thursday, April 21st, 2011 11:48am</title>
<link>http://www.FluffyCat.com/COBOL/Initialize/</link>
<description>Also (as TheMadProfessor points out), there is a way to force specific values into specific field types...  

I use this on a regular basis when trying to dynamically get the number of occurences in a table/array.  As opposed to having the value hard-coded...</description>
<guid isPermaLink="false">comment262</guid>
</item>
<item>
<title>Comment about COBOL Initialize on Thursday, April 21st, 2011 11:01am</title>
<link>http://www.FluffyCat.com/COBOL/Initialize/</link>
<description>As a practice, if using to initialize a record area, I have always moved spaces to the record prior to the INITIALIZE as the initialize does not initialize FILLER areas (could be only on some compilers)

01  recorda.
    05  key  pic x(20).
    05...</description>
<guid isPermaLink="false">comment261</guid>
</item>
<item>
<title>Comment about Java This and Super on Saturday, May 7th, 2011 6:54am</title>
<link>http://www.FluffyCat.com/Java/This-and-Super/</link>
<description>Thanks for your sharing. I learned this and super thanks to you. Very clean explanation.</description>
<guid isPermaLink="false">comment260</guid>
</item>
<item>
<title>Comment about PHP Design Patterns PHP Performance Tuning if VS switch on Thursday, April 1st, 2010 8:54pm</title>
<link>http://www.FluffyCat.com/PHP-Design-Patterns/PHP-Performance-Tuning-if-VS-switch/</link>
<description>Orginal only 5
Performance Testing PHP if / else VS switch with 100,000 iterations

total if / else time: 0.36938524246216
total case time: 0.37775444984436

if / else is quicker by 0.0083692073822021

I increased the code to 10 and the if /else...</description>
<guid isPermaLink="false">comment257</guid>
</item>
<item>
<title>Comment about Java Design Patterns Abstract Factory on Thursday, March 11th, 2010 5:11am</title>
<link>http://www.FluffyCat.com/Java-Design-Patterns/Abstract-Factory/</link>
<description>Great explanation and I agree with Boris, Congrat</description>
<guid isPermaLink="false">comment256</guid>
</item>
<item>
<title>Comment about PHP Design Patterns PHP OO Class Basics on Thursday, December 10th, 2009 5:32am</title>
<link>http://www.FluffyCat.com/PHP-Design-Patterns/PHP-OO-Class-Basics/</link>
<description>create a class, create another class, show both classes - class addresses object here.</description>
<guid isPermaLink="false">comment254</guid>
</item>
<item>
<title>Comment about PHP Design Patterns Command on Friday, October 30th, 2009 12:13am</title>
<link>http://www.FluffyCat.com/PHP-Design-Patterns/Command/</link>
<description>Hi There,

First comment, good work. 

Few points of improvement
1. BookStarsOnCommand , BookStarsOffCommand both command missing constructor which sets BookCommandee object inside it self. If you add it can make clear understanding.
2. callCommand...</description>
<guid isPermaLink="false">comment253</guid>
</item>
</channel>
</rss>

