<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>diy &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/diy/</link>
	<description>Feed of posts on WordPress.com tagged "diy"</description>
	<pubDate>Mon, 23 Nov 2009 22:19:56 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[DIY: Java Dependency Injection (Part 4)]]></title>
<link>http://dukeslittleb.wordpress.com/2009/11/23/diy-java-dependency-injection-part-4/</link>
<pubDate>Mon, 23 Nov 2009 22:12:23 +0000</pubDate>
<dc:creator>dukeslittleb</dc:creator>
<guid>http://dukeslittleb.wordpress.com/2009/11/23/diy-java-dependency-injection-part-4/</guid>
<description><![CDATA[Creating a simple dependency injection framework with custom annotations, reflections and JAXB You c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Creating a simple dependency injection framework with custom annotations, reflections and JAXB</strong><br />
You can <a href="http://www.mediafire.com/file/muwj2wqijzm/diy-dependency-injection-with-java.zip">download the complete source as an Eclipse Java project</a>.</p>
<h3>Already featured in the previous parts</h3>
<p>In the <a href="http://dukeslittleb.wordpress.com/2009/11/03/diy-java-dependency-injection-part-1/">first part</a> we have created the @Injected annotation, an Interface for our units of work (IUnitOfWork) and skeletons for the Injector and the Executor. The <a href="http://dukeslittleb.wordpress.com/2009/11/04/diy-java-dependency-injection-part-2/">second part</a> was all about gathering the Java reflections basics to process the annotated classes. Finally a basic introduction to JAXB has been featured in the <a href="http://dukeslittleb.wordpress.com/2009/11/12/diy-java-dependency-injection-part-3/">third part</a>. Today we will put it all together.</p>
<h3>A base directory for all configurations</h3>
<p>You already know how to create configuration instance from XML via JAXB and how to find annotated fields. Next we will define a mechanism to resolve the XML files and inject the instance into the annotated field. For our little example, we define that all configurations will be place in one directory &#8220;conf&#8221; on the root level of out project. The naming convention for the configuration XML files is <code>canonical name of the field declaration + .xml</code>. This allows an easy resolving of the configurations.<br />
Let&#8217;s improve our Injector to use the &#8220;conf&#8221; director and to inject the unmarshaled instances</p>
<pre class="brush: java;">
package dukeslittleb.tutorials.ioc;

import java.io.File;
import java.lang.reflect.Field;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;

public class Injector {

	private static final File CONFIG_DIRECTORY;

	private static final JAXBContext JAXB_CONTEXT;

	static {
		// get the configuration directory
		File f = new File(&#34;conf&#34;);
		if (!f.exists()) {
			throw new RuntimeException(f.getAbsolutePath() + &#34; does not exist&#34;);
		} else if (!f.isDirectory()) {
			throw new RuntimeException(f.getAbsolutePath()
					+ &#34; is not a directory&#34;);
		} else if (!f.canRead()) {
			throw new RuntimeException(f.getAbsolutePath() + &#34; is not readable&#34;);
		}
		CONFIG_DIRECTORY = f;
		try {
			// set up th JAXB context
			JAXB_CONTEXT = JAXBContext
					.newInstance(&#34;dukeslittleb.tutorials.ioc&#34;);
		} catch (JAXBException e) {
			throw new RuntimeException(e);
		}
	}

	public static final IUnitOfWork setUp(final IUnitOfWork unit) {

		System.out.println(&#34;Injector: setting up &#34;
				+ unit.getClass().getCanonicalName());
		for (Field field : unit.getClass().getDeclaredFields()) {
			// check if field is annotated
			if (field.isAnnotationPresent(Injected.class)) {
				System.out
						.println(&#34;  Trying to inject into &#34; + field.getName());
				field.setAccessible(true);
				try {
					// inject into field
					field.set(unit, JAXB_CONTEXT.createUnmarshaller()
							.unmarshal(
									new File(CONFIG_DIRECTORY, field.getType()
											.getCanonicalName()
											+ &#34;.xml&#34;)));
				} catch (Exception e) {
					throw new RuntimeException(e);
				}
				field.setAccessible(false);
			}
		}
		return unit;
	}
}
</pre>
<h3>Adding some live to the Executor</h3>
<p>Now let&#8217;s get back to the Executor from part 1 and apply a few changes:</p>
<pre class="brush: java;">
package dukeslittleb.tutorials.ioc;

public class Executor implements IUnitOfWork {

	@Injected
	private IConfiguration conf;

	public void run() {
		System.out.println(&#34;running &#34; + this + &#34; with a configuration of type &#34;
				+ conf.getClass().getCanonicalName());
	}
}
</pre>
<p>And add a configuration file into conf named &#8220;dukeslittleb.tutorials.ioc.IConfguration.xml&#8221;:</p>
<pre class="brush: xml;">
&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34; standalone=&#34;yes&#34;?&#62;
&#60;complex-executor-config&#62;
	&#60;sub-tasks&#62;
		&#60;class&#62;dukeslittleb.tutorials.ioc. HelloWorldUnit&#60;/class&#62;
		&#60;class&#62;dukeslittleb.tutorials.ioc. HelloConfigurationUnit&#60;/class&#62;
	&#60;/sub-tasks&#62;
&#60;/complex-executor-config&#62;
</pre>
<p>Now run IOCSampleApp. Your output should look like:</p>
<pre>
Injector: setting up dukeslittleb.tutorials.ioc.Executor
  Trying to inject into conf
running dukeslittleb.tutorials.ioc.Executor@1ad77a7 with a
configuration of type
dukeslittleb.tutorials.ioc.ComplexExecutorConfig
</pre>
<p>So far, so good.</p>
<h3>Spice it up!</h3>
<p>Until now the Excutor behaves a bit static. What we want is some more injections. To get that we will first create another interface which extends IConfiguration: IHasSubTasks (the name says it all).</p>
<pre class="brush: java;">
package dukeslittleb.tutorials.ioc;

import java.util.Collection;

public interface IHasSubTasks extends IConfiguration {

	Collection&#60;IUnitOfWork&#62; getSubTasks();

}
</pre>
<p>And then we implement the interface in ComplexExecutorConfig:</p>
<pre class="brush: java;">
package dukeslittleb.tutorials.ioc;

...

public class ComplexExecutorConfig implements IHasSubTasks {

   ...

   	public List&#60;IUnitOfWork&#62; getSubTasks() {
		List&#60;IUnitOfWork&#62; sTasks = new ArrayList&#60;IUnitOfWork&#62;();
		for (String cn : this.tasks) {
			sTasks.add(Injector.setUp(cn));
		}
		return sTasks;
	}

}
</pre>
<p>To get this to work we also add an <code>IUnitOfWork setUp(String)</code> method to the Injector to do the dynamic instancing. Neat&#8230;</p>
<pre class="brush: java;">
	public static IUnitOfWork setUp(final String cn) {
		try {
			return setUp((IUnitOfWork) Class.forName(cn).newInstance());
		} catch (Exception e) {
			throw new RuntimeException(e);
		}
	}
</pre>
<h3>Two units of work for demonstration purposes</h3>
<p>Finally, we create two additional IUnitOfWork implementations to make use of our new toys. Both implementations are simple and straight-forward.</p>
<pre class="brush: java;">
package dukeslittleb.tutorials.ioc;

public class HelloWorldUnit implements IUnitOfWork {

	@Override
	public void run() {
		System.out.println(&#34;Hello World!&#34;);
	}

}
</pre>
<pre class="brush: java;">
package dukeslittleb.tutorials.ioc;

public class HelloConfigurationUnit implements IUnitOfWork {

	@Injected
	private SimpleExecutorConfig conf;

	@Override
	public void run() {
		System.out.println(this.conf.getMessage());

	}

}
</pre>
<p>Now run IOCSampleApp again:</p>
<pre>
Injector: setting up dukeslittleb.tutorials.ioc.Executor
  Trying to inject into conf
running dukeslittleb.tutorials.ioc.Executor@1ad77a7 with a
configuration of type
dukeslittleb.tutorials.ioc.ComplexExecutorConfig
Injector: setting up dukeslittleb.tutorials.ioc.HelloWorldUnit
Injector: setting up dukeslittleb.tutorials.ioc.HelloConfigurationUnit
  Trying to inject into conf
Exception in thread "main" java.lang.RuntimeException:
java.lang.RuntimeException: javax.xml.bind.UnmarshalException
 - with linked exception:
[java.io.FileNotFoundException: ...
</pre>
<p>Boom &#8211; just as expected. As you can see the Injector is looking for the configuration file &#8220;dukeslittleb.tutorials.ioc.SimpleExecutorConfig.xml&#8221; to inject <code>conf</code> in dukeslittleb.tutorials.ioc.ComplexExecutorConfig, so let&#8217;s add it:</p>
<pre class="brush: xml;">
&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34; standalone=&#34;yes&#34;?&#62;
&#60;simple-executor-config&#62;
	&#60;message&#62;Hello from XML&#60;/message&#62;
&#60;/simple-executor-config&#62;
</pre>
<h3>Happy Ending</h3>
<p>Now let&#8217;s do the final run of IOCSample App:</p>
<pre>
Injector: setting up dukeslittleb.tutorials.ioc.Executor
  Trying to inject into conf
running dukeslittleb.tutorials.ioc.Executor@b8f82d with a
configuration of type
dukeslittleb.tutorials.ioc.ComplexExecutorConfig
Injector: setting up dukeslittleb.tutorials.ioc.HelloWorldUnit
Injector: setting up dukeslittleb.tutorials.ioc.HelloConfigurationUnit
  Trying to inject into conf
Hello World!
Hello from XML
</pre>
<p>That&#8217;s it! Now you know how to implement your own custom runtime annotations in Java, how to access fields reflectively (as a matter-of-fact methods work just the same) and how to use JAXB for your Java XML bindings.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DIY: Essential Oil Reed Diffusers]]></title>
<link>http://refashionista.wordpress.com/2009/11/23/diy-essential-oil-reed-diffusers/</link>
<pubDate>Mon, 23 Nov 2009 21:43:52 +0000</pubDate>
<dc:creator>Melissa</dc:creator>
<guid>http://refashionista.wordpress.com/2009/11/23/diy-essential-oil-reed-diffusers/</guid>
<description><![CDATA[Like to make gifts, but are pushed for time? Want to give homemade, but feel uncreative? Essential o]]></description>
<content:encoded><![CDATA[Like to make gifts, but are pushed for time? Want to give homemade, but feel uncreative? Essential o]]></content:encoded>
</item>
<item>
<title><![CDATA[make your own cornucopia]]></title>
<link>http://designchampagne.wordpress.com/2009/11/23/make-your-own-cornucopia/</link>
<pubDate>Mon, 23 Nov 2009 21:41:34 +0000</pubDate>
<dc:creator>Brit</dc:creator>
<guid>http://designchampagne.wordpress.com/2009/11/23/make-your-own-cornucopia/</guid>
<description><![CDATA[martha stewart Thanksgiving is this week. Holy cow. I felt like I was just writing about Halloween (]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_1496" class="wp-caption aligncenter" style="width: 370px"><a href="http://designchampagne.wordpress.com/files/2009/11/cornucopia.jpg"><img class="size-full wp-image-1496" title="cornucopia" src="http://designchampagne.wordpress.com/files/2009/11/cornucopia.jpg" alt="" width="360" height="450" /></a><p class="wp-caption-text">martha stewart</p></div>
<p style="text-align:center;">Thanksgiving is this week. Holy cow. I felt like I was just writing about Halloween (oh wait, I was&#8230;damn I&#8217;ve been slacking on my posts, sorry guys!). As you can probably tell from my recent lack of posts, I haven&#8217;t really had a lot of extra time on my hands, but with the holiday season ahead of us, I&#8217;ll try to not disappoint!</p>
<p style="text-align:center;">I always love having a cornucopia in a Thanksgiving decor scheme. It&#8217;s just so traditional. It&#8217;s derived from Greek mythology in which a magical goat&#8217;s horn filled itself with whatever food and drink its owner requested. It has since become a universal symbol of bounty, which, in turn, is celebrated at America&#8217;s Thanksgiving.</p>
<p style="text-align:center;">You can make your own &#8220;horn of plenty&#8221; at home and fill it with your heart&#8217;s desire. Here&#8217;s how:</p>
<p style="text-align:center;">What you need:</p>
<p style="text-align:center;">2-foot-long wicker cornucopia (available at crafts stores or floral shops)<br />
2 yards of burlap<br />
Scissors<br />
Hot-glue gun<br />
Three 200-gram packages of raffia<br />
Spool of jute string<br />
Large binder clip</p>
<ol>
<li>
<div style="text-align:left;">Pull the burlap around the wicker cornucopia frame, and tuck it inside. Trim any extra burlap with scissors, leaving enough to fold under at edges for a finished look.</div>
</li>
<li>
<div style="text-align:left;">Hot-glue the burlap to the frame, lifting the fabric in several areas to apply glue. Press firmly for several seconds so the burlap sticks. Inside the frame, fold the burlap edges under to make a clean hem, and glue to the frame.</div>
</li>
<li>
<div style="text-align:left;">Assemble a hank of raffia about 3/4 inch thick; using string, tie a knot around one end of the hank, and clip it to the table. Then wind the string around the raffia at 2-inch intervals to make a yard-long rope.</div>
</li>
<li>
<div style="text-align:left;">When you get to the other end, tie a knot. Make another raffia rope. Then, using a short piece of jute string, tie the two ropes together end to end to create one double-length rope.</div>
</li>
<li>
<div style="text-align:left;">Make a total of 9 double-length ropes to cover a cornucopia of this size. For the lip of the cornucopia, make a double-length raffia rope, about 2 1/4 inches thick, tying the string around it at 4-inch intervals so the result is looser.</div>
</li>
<li>
<div style="text-align:left;">Tie the end of a raffia rope to the tip of the frame with string. Wind the raffia around, and apply glue as you go. At the end of the rope, tie it to another with string, and continue. When all but the lip is covered, tie a long piece of string to the end of the last raffia rope and wrap it around the frame; knot it.</div>
</li>
<li>
<div style="text-align:left;">At the basket lip, attach the thicker raffia rope to the last thin rope with string, tying at 4-inch intervals.</div>
</li>
<li>
<div style="text-align:left;">Apply more hot glue where needed to secure the raffia ropes to the frame. To display, line the opening with stalks of dried wheat, and add long-lasting fruits and vegetables. I suggesting stuffing the inside with hay, leaves, or something similar&#8230;that way you won&#8217;t have to buy as many fruits and vegetables, which are a bit more expensive.</div>
</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DIY tablescape - free &amp; easy]]></title>
<link>http://jkhenry.wordpress.com/2009/11/23/diy-tablescape-free-easy/</link>
<pubDate>Mon, 23 Nov 2009 21:19:12 +0000</pubDate>
<dc:creator>Kylie</dc:creator>
<guid>http://jkhenry.wordpress.com/2009/11/23/diy-tablescape-free-easy/</guid>
<description><![CDATA[Since J and I don’t host thanksgiving and since we are currently out of town I knew this week was go]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><a href="http://newlywoodwards.blogspot.com/2009/11/dare-to-diy-blog-parties.html"><img class="aligncenter" title="DIY Dare" src="http://farm3.static.flickr.com/2631/4079810980_0374bbceb4_m.jpg" alt="" width="240" height="160" /></a></p>
<p>Since J and I don’t host thanksgiving and since we are currently out of town I knew this week was going to be something easy and made with the things I have on hand. I only set the table for 2 since usually it’s only J and I for dinners.</p>
<p><a href="http://jkhenry.files.wordpress.com/2009/11/l_2048_1536_b92e7c30-475f-4185-a834-390771f32849.jpeg"><img src="http://jkhenry.files.wordpress.com/2009/11/l_2048_1536_b92e7c30-475f-4185-a834-390771f32849.jpeg?w=300&#038;h=225" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://jkhenry.files.wordpress.com/2009/11/p_2048_1536_af7f4a52-58bf-42ba-be5f-01ae9b80fb6b.jpeg"><img src="http://jkhenry.files.wordpress.com/2009/11/p_2048_1536_af7f4a52-58bf-42ba-be5f-01ae9b80fb6b.jpeg?w=225&#038;h=300" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p>The runner came from homegoods about a month ago.</p>
<p><a href="http://jkhenry.files.wordpress.com/2009/11/p_2048_1536_f90034b7-9811-46bf-a876-2c18ae98ffec.jpeg"><img src="http://jkhenry.files.wordpress.com/2009/11/p_2048_1536_f90034b7-9811-46bf-a876-2c18ae98ffec.jpeg?w=225&#038;h=300" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p> I simply used our every day plates and set them on a red charger. I used our yellow spring bowls to play with the orange and gold in the runner. The flowers are napkin ring holders. The small candles &#38; holders are from an iron wall hanging that I haven’t put up yet.</p>
<p><a href="http://jkhenry.files.wordpress.com/2009/11/p_2048_1536_7d73b407-80a7-4ae3-94bb-48415eaa392e.jpeg"><img src="http://jkhenry.files.wordpress.com/2009/11/p_2048_1536_7d73b407-80a7-4ae3-94bb-48415eaa392e.jpeg?w=225&#038;h=300" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://jkhenry.files.wordpress.com/2009/11/l_2048_1536_f46cc181-a672-47df-98ad-cae0167d0647.jpeg"><img src="http://jkhenry.files.wordpress.com/2009/11/l_2048_1536_f46cc181-a672-47df-98ad-cae0167d0647.jpeg?w=300&#038;h=225" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
<p>For the centerpiece I used real cranberries, water, and a floating candle in a small hurricane. In the pics you can tell the cranberries were still frozen&#8230; Id reccomend thawing them first. I would have liked to use white mums or flowers instead of a candle but they would have died by the time we got back. I set the centerpiece on a fall serving platter I picked up at starbucks last winter for a whopping 5 bucks.</p>
<p>Oops! I just realized i forgot to take a full table shot! I will edit and add when we get home&#8230;</p>
<p>Overall I’m happy with what I was able to pull together for FREE and it will be nice to return to a clean and set table!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Metropolitan Farming in P-town]]></title>
<link>http://psusustainabilityfrinq.wordpress.com/2009/11/23/metropolitan-farming-in-p-town/</link>
<pubDate>Mon, 23 Nov 2009 21:14:57 +0000</pubDate>
<dc:creator>corinabobina</dc:creator>
<guid>http://psusustainabilityfrinq.wordpress.com/2009/11/23/metropolitan-farming-in-p-town/</guid>
<description><![CDATA[Don&#8217;t let the trek from city to farmland daunt you, you can have your very own organic farm in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft" src="http://rickbakas.com/wp-content/uploads/2009/10/IMG_20401-225x300.jpg" alt="" width="225" height="300" /></p>
<p>Don&#8217;t let the trek from city to farmland daunt you, you can have your very own organic farm in your own backyard. Some Portland city-dwellers are discovering the joys of raising their very own plants and animals while maintaining a day job.</p>
<p>Just as cats and dogs have evolved into common household pets, so have chickens for some local hipsters. It is legal in Portland to have up to three hens, ducks, rabbits or pigmy goats without a permit. In one of the interviews conducted on the local radio show called, &#8220;Destination DIY&#8221;, Portland residents, Scott and Salina, state their observation of this growing trend, comparing it to the pot-bellied pig fad of the mid-nineties &#8220;except you can get something from chickens.&#8221; They might not give love like cats or other household pets but they give eggs. They also have personalities. This fact might make it a bit of a challenge for those who eat meat to detach from the animal as a pet and think of it as a meal. However, by owning a chicken or other farm animal, you become involved in the entire cycle of its life.</p>
<p>It was also stated in this locally run audio show that in a recent craigslist search, there were 49 chicken related postings in Portland and the surrounding metro area. There are even different events occurring around town such as the annual Tour de Coups. This year&#8217;s tour featured 18 different coups.</p>
<p>Connor Voss and Sarah Brown, residents of Milwaukie, began their own little backyard farm with the intention of not buying any food. When they realized that they were farming more than they could consume, they began selling to friends through a CSA (Community Supported Agriculture model). In this program, seven of their friends pay between $15-20 monthly for fresh produce. In addition to farming, they raise chickens and lambs.</p>
<p>By listening to this radio show, it surprised me how many people are taking action to support themselves, their families, and community by taking action rather than sitting back and waiting for the world to change. I&#8217;ve realized in the past few months just how possible it is to live a sustainable lifestyle.</p>
<p>To listen to the radio show and for more links related to Backyard Farming in Portland go to <a href="http://destinationdiy.com/audiolibrary.html" target="_blank">http://destinationdiy.com/audiolibrary.html</a> click &#8216;all episodes&#8217; and &#8216;episode 31&#8242;.</p>
<p>Other links:</p>
<p><a href="http://tilth.org/" target="_blank">http://tilth.org/</a></p>
<p><a href="http://digginrootsfarm.com/" target="_blank">http://digginrootsfarm.com/</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Robot.ie looking for team members for Ro...]]></title>
<link>http://paulmwatson.wordpress.com/2009/11/23/robot-ie-looking-for-team-members-for-ro/</link>
<pubDate>Mon, 23 Nov 2009 20:39:35 +0000</pubDate>
<dc:creator>paulmwatson</dc:creator>
<guid>http://paulmwatson.wordpress.com/2009/11/23/robot-ie-looking-for-team-members-for-ro/</guid>
<description><![CDATA[Robot.ie looking for team members for Robot Challenge. Sounds like fun.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://robots.ie/competitions/robot-challenge/">Robot.ie looking for team members for Robot Challenge</a>. Sounds like fun.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rebuilding a 1938 Novachord keyboard]]></title>
<link>http://flyingfortress.wordpress.com/2009/11/23/rebuilding-a-1938-novachord-keyboard/</link>
<pubDate>Mon, 23 Nov 2009 19:25:11 +0000</pubDate>
<dc:creator>flyingfortress</dc:creator>
<guid>http://flyingfortress.wordpress.com/2009/11/23/rebuilding-a-1938-novachord-keyboard/</guid>
<description><![CDATA[Phil Ciricco recently documented his restoration/rebuilding of a 1938 Novachord. The novachord is an]]></description>
<content:encoded><![CDATA[Phil Ciricco recently documented his restoration/rebuilding of a 1938 Novachord. The novachord is an]]></content:encoded>
</item>
<item>
<title><![CDATA[Aq Advisor - Great Stocking Tool]]></title>
<link>http://giypsy.wordpress.com/2009/11/23/aq-advisor-great-stocking-tool/</link>
<pubDate>Mon, 23 Nov 2009 18:36:41 +0000</pubDate>
<dc:creator>Giypsy</dc:creator>
<guid>http://giypsy.wordpress.com/2009/11/23/aq-advisor-great-stocking-tool/</guid>
<description><![CDATA[Now we come to our very first product review and it is FREE! What could be better? A fellow aqua-gil]]></description>
<content:encoded><![CDATA[Now we come to our very first product review and it is FREE! What could be better? A fellow aqua-gil]]></content:encoded>
</item>
<item>
<title><![CDATA[Lag moderne juledekorasjoner selv]]></title>
<link>http://byggehus.wordpress.com/2009/11/23/lag-moderne-juledekorasjoner-selv/</link>
<pubDate>Mon, 23 Nov 2009 18:30:01 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<guid>http://byggehus.wordpress.com/2009/11/23/lag-moderne-juledekorasjoner-selv/</guid>
<description><![CDATA[Alt du trenger er noen kvister, eventuelt et tre, (her er det smart å fjerne barken), litt maling ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Alt du trenger er noen kvister, eventuelt et tre, (her er det smart å fjerne barken), litt maling &#8211; gjerne i hvitt, rødt. lilla eller sølv. Deretter noen julekuler (kjøpes billig på Ikea), gjerne noe julestrømper også, samt fiskesnøre (kjøpes i sporstsbutikker).  Heng kvisten over spisebordet, på veggen eller sett dem i en krukke.</p>
<p>Jeg lot meg inspirere av disse bildene, og lurer jammen på om jeg ikke skal ut å finne meg et lite tre eller en stor kvist <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Får vente til det slutter å regne&#8230;</p>
<p><img class="alignnone size-full wp-image-1745" title="BObloggen15" src="http://byggehus.wordpress.com/files/2009/11/bobloggen15.jpg" alt="" width="630" height="473" /></p>
<p>Foto: LivingEtc.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[An Office Project Finished]]></title>
<link>http://makemineeclectic.wordpress.com/2009/11/23/an-office-project-finished/</link>
<pubDate>Mon, 23 Nov 2009 17:42:39 +0000</pubDate>
<dc:creator>jessimarie33</dc:creator>
<guid>http://makemineeclectic.wordpress.com/2009/11/23/an-office-project-finished/</guid>
<description><![CDATA[As I said before, I have recently started a new job.  With that has come a new, but bland, office.  ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>As I said before, I have recently started a new job.  With that has come a new, but bland, office.  So, I got to work.  The first project I have completed is a table for the office.  I found this ugly guy with a paper top for a couple of dollars at the thrift store:</p>
<p><a href="http://makemineeclectic.wordpress.com/files/2009/11/birthday-trunk-and-office-table-048.jpg"><img class="aligncenter size-full wp-image-1452" title="birthday trunk and office table 048" src="http://makemineeclectic.wordpress.com/files/2009/11/birthday-trunk-and-office-table-048.jpg" alt="" width="495" height="371" /></a></p>
<p>I started by sanding the wood legs and sides a bit and then painting them black.  I then used scrapbook paper on the top.  I taped the paper down, starting with a full sheet in the very middle of the table.  When the sheets were lined up nicely, I used ModPodge to cover the sheets, using a foam brush.  I did several coats of this, drying in between. </p>
<p><a href="http://makemineeclectic.wordpress.com/files/2009/11/birthday-trunk-and-office-table-082.jpg"><img class="aligncenter size-full wp-image-1453" title="birthday trunk and office table 082" src="http://makemineeclectic.wordpress.com/files/2009/11/birthday-trunk-and-office-table-082.jpg" alt="" width="495" height="660" /></a></p>
<p>&#160;</p>
<p><a href="http://makemineeclectic.wordpress.com/files/2009/11/birthday-trunk-and-office-table-083.jpg"><img class="aligncenter size-full wp-image-1454" title="birthday trunk and office table 083" src="http://makemineeclectic.wordpress.com/files/2009/11/birthday-trunk-and-office-table-083.jpg" alt="" width="495" height="660" /></a></p>
<p><a href="http://makemineeclectic.wordpress.com/files/2009/11/birthday-trunk-and-office-table-084.jpg"><img class="aligncenter size-full wp-image-1455" title="birthday trunk and office table 084" src="http://makemineeclectic.wordpress.com/files/2009/11/birthday-trunk-and-office-table-084.jpg" alt="" width="495" height="660" /></a></p>
<p>Black and white, of course!</p>
<p>One thing I learned from using the ModPodge was that it makes the paper wet, so at first it will bubble up.  This smooths out as it dries.  But, I did make the mistake of lining the paper sheets up perfectly edge to edge.  Lining them up with a bit of overlap would have prevented the sheets from moving as they dried.  I do have a few tiny spots where there are gaps between the paper now.  I learned! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Thankful Week: Bathroom Baskets for Your Guests]]></title>
<link>http://melc328.wordpress.com/2009/11/23/thankful-week-bathroom-baskets-for-your-guests/</link>
<pubDate>Mon, 23 Nov 2009 17:07:04 +0000</pubDate>
<dc:creator>Melissa</dc:creator>
<guid>http://melc328.wordpress.com/2009/11/23/thankful-week-bathroom-baskets-for-your-guests/</guid>
<description><![CDATA[C and I both love to have guests visit. And although, in our apartment, we don&#8217;t have many ove]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>C and I both love to have guests visit.</p>
<p>And although, in our apartment, we don&#8217;t have many over night guests, we do our best to make anyone that visits comfortable, no matter how long their stay.</p>
<p>We first saw &#8220;Bathroom Baskets&#8221; on <a href="www.weddingbee.com">the Wedding Bee</a> when we were planning our wedding.</p>
<p>And basically, a bathroom basket had all kinds of goodies for your wedding guests. Anything from mouth wash to deoderant to shout pens, etc.</p>
<p>We didn&#8217;t do this at our wedding, but have thought it would be a good idea to have in your guest bathroom for your visitors to use while they are there.</p>
<p>I myself have sometimes wished I had mouthwash after eating dinner at someone&#8217;s house, or needed a shout pen.</p>
<p>And alas, I found someone who had done such great things on The <a href="http://glamlifehousewife.blogspot.com/">Glamorous Life of a Housewife</a>. Not only does she do such fabulous things, so does her mom!</p>
<p>If you are hosting guests this Thanksgiving holiday, you might stock up on a few extra goodies in case someone forgets their toothbrush.</p>
<p>Having trouble deciding what to put in your basket? Here are some ideas to put in your bathroom basket:</p>
<p><strong>First Aid</strong></p>
<ul>
<li>Tylenol/Advil</li>
<li>Antacid/Pepto Bismol</li>
<li>Benadryl</li>
<li>Gas-X</li>
<li>Cough drops</li>
<li>Bandaids</li>
<li>Antiseptic/Neosporin</li>
</ul>
<p><strong>Toiletries</strong></p>
<ul>
<li>Lens solution</li>
<li>Eye drops</li>
<li>Vaseline</li>
<li>Deodorant</li>
<li>Lotion</li>
<li>Brush-ups (disposable &#8220;toothbrushes&#8221;)</li>
<li>Floss</li>
<li>Mouthwash</li>
<li>Toothpicks</li>
<li>Hair spray</li>
<li>Body Spray</li>
<li>Feminine hygiene products (tampons, pads)</li>
</ul>
<p><strong>Tools</strong></p>
<ul>
<li>Sewing kit</li>
<li>Nail File</li>
<li>Inexpensive combs</li>
<li>Hair elastics</li>
<li>Bobby pins</li>
<li>Safety pins</li>
<li>Q-tips</li>
<li>Spot remover wipes/Tide To Go pen</li>
<li>Mints/Gum</li>
<li>Lint brush</li>
<li>Downy Wrinkle Releaser</li>
</ul>
<p><strong>For the Restroom</strong></p>
<ul>
<li>Paper Hand Towels</li>
<li>Air freshener</li>
<li>Scented candle</li>
</ul>
<p>You might even want to include a little poem:</p>
<p>To help you fell your best!<br />
Just use a little,<br />
Freshen up,<br />
And leave for other guests!</p>
<p>*These fabulous bathroom baskets are seen on the sites mentioned above.</p>
<p style="text-align:center;"> <a href="http://melc328.wordpress.com/files/2009/11/bathroo02.jpg"><img class="alignnone size-medium wp-image-421" title="bathroo02" src="http://melc328.wordpress.com/files/2009/11/bathroo02.jpg?w=300" alt="" width="300" height="201" /></a><a href="http://melc328.wordpress.com/files/2009/11/4125618684_74dacb50e2.jpg"><img class="alignnone size-medium wp-image-422" title="4125618684_74dacb50e2" src="http://melc328.wordpress.com/files/2009/11/4125618684_74dacb50e2.jpg?w=300" alt="" width="300" height="199" /></a> <a href="http://melc328.wordpress.com/files/2009/11/dsc029502.jpg"><img class="alignnone size-medium wp-image-424" title="dsc029502" src="http://melc328.wordpress.com/files/2009/11/dsc029502.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p style="text-align:left;">And if you have a little extra room, maybe you could have a little shelf for your goodies.</p>
<p style="text-align:center;">
<a href="http://melc328.wordpress.com/files/2009/11/4068498063_ac84ed0a6f.jpg"><img class="alignnone size-medium wp-image-423" title="4068498063_ac84ed0a6f" src="http://melc328.wordpress.com/files/2009/11/4068498063_ac84ed0a6f.jpg?w=199" alt="" width="199" height="300" /></a></p>
<p>Your guests are sure to leave feeling pampered!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wrap Story: Easy Does It]]></title>
<link>http://thegiftedblog.wordpress.com/2009/11/23/wrap-story-easy-does-it/</link>
<pubDate>Mon, 23 Nov 2009 17:00:51 +0000</pubDate>
<dc:creator>thegiftedblog</dc:creator>
<guid>http://thegiftedblog.wordpress.com/2009/11/23/wrap-story-easy-does-it/</guid>
<description><![CDATA[This Wrap Story is part of a mini-series, documenting every present I’ve wrapped since the launch of]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em>This Wrap Story is part of a mini-series, documenting every present I’ve wrapped since the launch of this blog. For more, click the “Wrap Story” link in the right-hand column!</em></p>
<p><img class="alignnone" title="simple bow" src="http://lh5.ggpht.com/_Yi0MtghqTE8/Svj30GFYGfI/AAAAAAAAKgQ/7fpulmIINo0/s400/P1050735.JPG" alt="" width="400" height="300" /></p>
<p>We were invited to a church friend&#8217;s birthday lunch and G. kindly watched N. so I could go. I expected a small gathering, but to my surprise we filled two banquet-length tables on the patio of <a href="http://www.yelp.com/biz/daisy-mint-pasadena">Daisy Mint</a>!</p>
<p>I gave the birthday girl a notepad made with papers retrieved from the recycling bins of <a href="http://www.moca.org/">MOCA</a> (by me, who else). I made it a card and gift in one by writing the birthday wishes on the first page of the pad.</p>
<p><img class="alignnone" title="detail of notepad" src="http://lh4.ggpht.com/_Yi0MtghqTE8/Svj31SLmfXI/AAAAAAAAKgU/Qvdywm8aHvk/s400/P1050736.JPG" alt="" width="400" height="300" /></p>
<p>As you can see, I just tied a sheer ribbon into a bow around the notepad. I thought it might be best to keep it simple for a simple gift.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DIY Botox- a stretch too far?]]></title>
<link>http://misstamar.wordpress.com/2009/11/23/diy-botox-a-stretch-too-far/</link>
<pubDate>Mon, 23 Nov 2009 16:40:06 +0000</pubDate>
<dc:creator>misstamara</dc:creator>
<guid>http://misstamar.wordpress.com/2009/11/23/diy-botox-a-stretch-too-far/</guid>
<description><![CDATA[EXPERTS have sent out a warning to Brits buying DIY botox kits online and injecting themselves with ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>EXPERTS have sent out a warning to Brits buying DIY botox kits online and injecting themselves with the drug.</p>
<p>Injecting the wrinkle smoothing jab can cause paralysis and blindness.</p>
<p>Figures show a rising number of Brits in the recession are using cheaper homekits, costing around £100 rather than spending £250-£300 for surgery treatment.</p>
<p><a href="http://www.thesun.co.uk/sol/homepage/news/2730823/Warning-to-Brits-over-DIY-Botox-kits.html">Buyers learn how to inject themselves using crude injection sheets or by following videos posted online.</a></p>
<p>Gwen Davies of the Clinic group Transform, based in Manchester said: &#8220;Buying botox off the internet is very dangerous, bypassing the procedures which are in place to protect the public.&#8221;</p>
<p>In the UK, Botox is a prescription-only drug but can be bought from internet sites, mainly in Russia and the Far East.</p>
<p>Online <a href="http://www.pharmacyescrow.com/s34190-s-BOTOX.aspx"><em>Pharmacy Escrow</em></a> is a Canada based drug store also selling Botox online.</p>
<p style="text-align:center;">
<div id="attachment_76" class="wp-caption aligncenter" style="width: 272px"><a href="http://images.google.co.uk/imgres?imgurl=http://katrinabishop.files.wordpress.com/2009/03/scary-botox.jpg&#38;imgrefurl=http://katrinabishop.wordpress.com/2009/03/21/bad-botox-browns-heading-for-some-cringing-facial-expressions/&#38;usg=__gtlklFJTh_KHZZklt14fivw7k0Y=&#38;h=550&#38;w=482&#38;sz=44&#38;hl=en&#38;start=1&#38;sig2=ZRolfqY_JgFeo7SH8Hr4gQ&#38;tbnid=QcJMc9aCNzvtCM:&#38;tbnh=133&#38;tbnw=117&#38;prev=/images%3Fq%3Dbotox%26gbv%3D2%26hl%3Den%26sa%3DG&#38;ei=aLkKS9TCG4Lv-QaS1_XFDQ"><img class="size-medium wp-image-76" title="scary-botox" src="http://misstamar.wordpress.com/files/2009/11/scary-botox.jpg?w=262" alt="" width="262" height="300" /></a><p class="wp-caption-text">Sometimes people take it too far,and botox goes wrong</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[BOOK: Mindful Beauty Is In Your Hands [On Sale Now On Amazon.com]]]></title>
<link>http://mindfulbeauty.wordpress.com/2009/11/23/book-mindful-beauty-is-in-your-hands-on-sale-now-on-amazon-com/</link>
<pubDate>Mon, 23 Nov 2009 16:13:57 +0000</pubDate>
<dc:creator>mindfulbeauty</dc:creator>
<guid>http://mindfulbeauty.wordpress.com/2009/11/23/book-mindful-beauty-is-in-your-hands-on-sale-now-on-amazon-com/</guid>
<description><![CDATA[In time for holiday gift-giving, please feel free to check out my recently published book on natural]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In time for holiday gift-giving, please feel free to check out <a title="Mindful Beauty Is In Your Hands" href="http://www.amazon.com/Mindful-Beauty-Your-Hands-Natural/dp/1935323008/">my recently published book on natural skincare</a>.  There are lots of fun recipes and tips inside.  Already I have been told that a friend&#8217;s daughter is planning to make an occasion of working through some of the recipes!  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   All of the recipes use ingredients that are easy to find at the grocery store/pharmacy!  And I explain for each one how they work and why.  Not only does this take some of the mystery out of bodycare products but it helps you see that you can easily make your own product, have fun doing it and save a little money in the process!</p>
<p>Please tell your friends and family about this book &#8211; it is my first publication and I&#8217;m eager to share my knowledge with everyone!  Stay tuned for more both on this website and in print.</p>
<p>In wellness and mindful beauty,</p>
<p>Chelvanaya</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wish List: DIY Block Letters: Success!]]></title>
<link>http://astarterhouse.wordpress.com/2009/11/23/wish-list-diy-block-letters-success/</link>
<pubDate>Mon, 23 Nov 2009 15:53:32 +0000</pubDate>
<dc:creator>Katy</dc:creator>
<guid>http://astarterhouse.wordpress.com/2009/11/23/wish-list-diy-block-letters-success/</guid>
<description><![CDATA[So its about time I had something fun to post, I&#8217;ve only been telling you about projects that ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So its about time I had something fun to post, I&#8217;ve only been telling you about projects that I&#8217;ve been working on,  but nothing to show.  Well this little project was occupying my time in between coats on the armoire ( I know still not finished but after my <span style="text-decoration:line-through;">3rd</span> 4th coat and still needing more paint) and trips to find baskets to fit in the right places.  But this is something I&#8217;ve been eyeing for awhile now, I&#8217;m so glad it is finished and I can&#8217;t wait to show you how it turned out!!</p>
<p>I was so excited with the results, and outside of drying time was easy peasy.  First, a look at what it began as, a door off of the entertainment repurpose project, cost ($0).</p>
<div id="attachment_174" class="wp-caption alignnone" style="width: 287px"><a href="http://astarterhouse.wordpress.com/files/2009/11/ballard-design-diy-002.jpg"><img class="size-large wp-image-174  " title="Cabinet Door - BEFORE" src="http://astarterhouse.wordpress.com/files/2009/11/ballard-design-diy-002.jpg?w=768" alt="" width="277" height="368" /></a><p class="wp-caption-text">Before the wood filler....</p></div>
<p>Then I filled the holes in with wood filler (already had $0), sanded it down, and added a coat of primer (already had $0)&#8230;.</p>
<div id="attachment_175" class="wp-caption alignnone" style="width: 235px"><a href="http://astarterhouse.wordpress.com/files/2009/11/ballard-design-diy-001.jpg"><img class="size-medium wp-image-175 " title="Cabinet Door Sanded" src="http://astarterhouse.wordpress.com/files/2009/11/ballard-design-diy-001.jpg?w=225" alt="" width="225" height="300" /></a><p class="wp-caption-text">Wood filler had dried, all sanded down, I then added Primer after I took this picture</p></div>
<p>&#8230;.and several coats of heirloom white (alread had $0).</p>
<p>I found an &#8220;&#38;&#8221; that I liked in my font library, blew it up, printed it off, cut it out and then traced it on the center. And then I painted it in a tinted black acrylic.  After everything dried I got my sandpaper out and went to town on the edges, distressing the heck out of it.  Then I pulled out some minwax stain I had left from our floor project and added little discoloration in spots.  I think the thing that made this project such a success was distressing the actual letter and making it look worn too.  I&#8217;m just so happy with how it turned out.  If you want to protect this piece, I would suggest putting a coat of poly/sealant to make sure that all the goodness you worked so hard on stays exactly where you want, but it&#8217;s certainly not necessary.  Love this piece, and you can&#8217;t beat $0.</p>
<div id="attachment_177" class="wp-caption alignnone" style="width: 235px"><a href="http://astarterhouse.wordpress.com/files/2009/11/ballard-design-diy-005.jpg"><img class="size-medium wp-image-177" title="All done!" src="http://astarterhouse.wordpress.com/files/2009/11/ballard-design-diy-005.jpg?w=225" alt="" width="225" height="300" /></a><p class="wp-caption-text">Here she is! In a temporary home until we get our Ikea Lack shelves hung</p></div>
<p>Stay tuned for the armoire reveal, I really think I will have it finished soon.  I FINALLY found two baskets that fit, so that will help make this armoire project a reality!  So far I&#8217;ve spent a little money on paint, and hardware, totalling about $13 and I only spent $12 on the baskets so I will have a completed piece for only $25, I&#8217;m already in love with this piece and I cannot wait to show you all its final look! Have a  great week ( I won&#8217;t be posting much with the Holidays)!</p>
<p>I&#8217;m linking this to <a title="Met Monday" href="http://betweennapsontheporch.blogspot.com/2009/11/welcome-to-45th-metamorphosis-monday.html" target="_blank">Metamorphosis Monday</a>, so head on over there to check out other great transformations!</p>
<p><a href="http://betweennapsontheporch.blogspot.com/2009/11/welcome-to-45th-metamorphosis-monday.html"><img class="alignnone size-full wp-image-178" title="Metamorphosis Monday" src="http://astarterhouse.wordpress.com/files/2009/11/met-mon.jpg" alt="" width="272" height="253" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[gears]]></title>
<link>http://mymilkglassheart.com/2009/11/23/gears/</link>
<pubDate>Mon, 23 Nov 2009 15:21:12 +0000</pubDate>
<dc:creator>Lara</dc:creator>
<guid>http://mymilkglassheart.com/2009/11/23/gears/</guid>
<description><![CDATA[A while ago,  I went through a tiny stud earring phase. I bought a bunch of little earrings made of ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A while ago,  I went through a tiny stud earring phase. I bought a bunch of little earrings made of gears and old plastic camera workings. I bought them from etsy and most eventually fell apart. (There just is no <em>lasting</em> glue for binding plastic to metal.) Just recently on <a href="http://www.notcouture.com/post/5349/">NotCouture</a> I spotted these sterling silver watch gear earings by jewelry designer Graciela Fuentes for <a href="http://store.starsandinfinitedarkness.com/tiranajewelry.html">Tiriana Jewelry</a>. Steampunk? Maybe. Awesome? Yes.</p>
<p style="text-align:center;"><img class="alignnone" title="Tiriana Jewelry" src="http://farm3.static.flickr.com/2782/4127545457_09003ec043_o.jpg" alt="" width="400" height="298" /></p>
<p style="text-align:left;">Just for good measure, I checked out what etsy had to offer again. I was a little disappointed. I&#8217;m really not a fan of something looking soooo handmade that it&#8217;s sloppy, unprofessional and childish. Do you have to add cheap beads to everything? These are the best things I could find.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-2513" title="Steampunk gear earrings" src="http://mymilkglassheart.wordpress.com/files/2009/11/steampunk-gear-earrings.jpg" alt="" width="430" height="323" /></p>
<p style="text-align:center;"><a href="http://www.etsy.com/shop/treasurecast">treasurecast</a></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-2514" title="gear earrings" src="http://mymilkglassheart.wordpress.com/files/2009/11/gear-earrings.jpg" alt="" width="430" height="430" /></p>
<p style="text-align:center;"><a href="http://www.etsy.com/shop/slvrlily">slvrlily</a></p>
<p style="text-align:left;">Of course, you can start digging around online to find gears and have yourself a little DIY fun. </p>
<p style="text-align:center;"> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Live Gig]]></title>
<link>http://holtadipolta.wordpress.com/2009/11/23/live-gig/</link>
<pubDate>Mon, 23 Nov 2009 12:59:13 +0000</pubDate>
<dc:creator>alexispryds</dc:creator>
<guid>http://holtadipolta.wordpress.com/2009/11/23/live-gig/</guid>
<description><![CDATA[hier endlich die Video-Playlist des Auftritts im WP8 letzten Juli. Leider lassen sich bei wordpress.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>hier endlich die Video-Playlist des <a href="http://holtadipolta.wordpress.com/2009/08/12/the-denarration-of-now/">Auftritts im WP8 letzten Juli</a>. Leider lassen sich bei wordpress.com keine Playlist einbetten, so dass ich an dieser Stelle nur auf den <a href="http://www.youtube.com/view_play_list?p=C82AAB5620751FE0" target="_self">Link </a>verweisen kann.</p>
<p>Hier das Intro des Auftritts:</p>
<p> <span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/QpZXiAe6uJk&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/QpZXiAe6uJk&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p><a href="http://www.youtube.com/view_play_list?p=C82AAB5620751FE0">The Denarration Of Now &#8211; alexis Live at WP8, Düsseldorf &#124; via YouTube</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A Pink Thanksgiving]]></title>
<link>http://brickcitylove.com/2009/11/23/a-pink-thanksgiving/</link>
<pubDate>Mon, 23 Nov 2009 12:53:14 +0000</pubDate>
<dc:creator>2kidsfromjersey</dc:creator>
<guid>http://brickcitylove.com/2009/11/23/a-pink-thanksgiving/</guid>
<description><![CDATA[It&#8217;s that time again! Week 2 of the DIY blog party {Kim of NewlyWoodwards fame}. Thank you for]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>It&#8217;s that time again! Week 2 of the <a href="http://brickcitylove.com/2009/11/06/dare-to-diy/" target="_blank">DIY blog party</a> {Kim of <a href="http://newlywoodwards.blogspot.com/" target="_blank">NewlyWoodwards</a> fame}.</p>
<p style="text-align:left;"><a href="http://brickcitylove.com/2009/11/06/dare-to-diy/"><img class="aligncenter" title="Dare to DIY" src="http://farm3.static.flickr.com/2558/4080888020_4309462c50_m.jpg" alt="" width="240" height="160" /></a></p>
<p style="text-align:left;">Thank you for your help with <a href="http://brickcitylove.com/2009/11/20/you-get-to-pick/" target="_blank">Friday&#8217;s poll</a>. 70% of you should be pleased with the direction I chose this week, the remaining 30% . . . well, I compromised. Kinda. {30% of readers seemed like an awful lot to disappoint, so I think you&#8217;ll notice a nod to my &#8220;Thanksgiving Picnic&#8221; theme.}</p>
<p>First, lets recap on Week #2&#8217;s mission: <strong>Dare to… entertain!</strong></p>
<blockquote><p>Show us your table! If you are not hosting Thanksgiving, take this opportunity to make your table look great. Bring out your dishes and napkins and set your table. I promise you that it will make you smile every time you walk by. Get creative and use new things. Or go true DIY and make something totally new.</p></blockquote>
<p>Without further adieu, I bring you {drum roll please&#8230;&#8230;.} DUN duh DUN!!!</p>
<p><strong>HEIRLOOM CHINA</strong></p>
<p><a title="DSC_0772 by brick city love, on Flickr" href="http://www.flickr.com/photos/carriegrace/4126828068/"><img src="http://farm3.static.flickr.com/2803/4126828068_c4fbaaac53.jpg" alt="DSC_0772" width="500" height="332" /></a></p>
<p>This table was inspired by the china {Rosebud by Spode, I believe}.</p>
<p><a title="DSC_0767 by brick city love, on Flickr" href="http://www.flickr.com/photos/carriegrace/4126842332/"><img src="http://farm3.static.flickr.com/2638/4126842332_c2ac14138e.jpg" alt="DSC_0767" width="500" height="403" /></a></p>
<p>Pink &#38; yellow aren&#8217;t your usual autumnal colors but why not?</p>
<p><a title="DSC_0696 by brick city love, on Flickr" href="http://www.flickr.com/photos/carriegrace/4126820792/"><img src="http://farm3.static.flickr.com/2557/4126820792_6424248be4.jpg" alt="DSC_0696" width="500" height="332" /></a></p>
<p>It&#8217;s been unseasonably warm here in Jersey, so I envisioned this small dinner or dessert outside in the backyard with a fire roaring nearby.</p>
<p><a title="DSC_0723 by brick city love, on Flickr" href="http://www.flickr.com/photos/carriegrace/4126070793/"><img src="http://farm3.static.flickr.com/2640/4126070793_134d5d973b.jpg" alt="DSC_0723" width="500" height="332" /></a></p>
<p>While I&#8217;m not usually a pink person, I think it&#8217;s cheery &#38; bright. The texture of the fabric &#8211; corduroy keeps it seasonal.</p>
<p><a title="DSC_0712 by brick city love, on Flickr" href="http://www.flickr.com/photos/carriegrace/4126055357/"><img src="http://farm3.static.flickr.com/2607/4126055357_0a3a8c3330.jpg" alt="DSC_0712" width="500" height="332" /></a></p>
<p>The china originally belonged to my Great Uncle John before he handed it down to me. He past away 11 days ago. </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126840476/" title="DSC_0726 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2522/4126840476_78871e652a.jpg" width="500" height="332" alt="DSC_0726" /></a></p>
<p>I&#8217;m thankful I have these dishes to remind me what a gracious person he was. </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126053545/" title="DSC_0702 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2707/4126053545_70d69fc652.jpg" width="500" height="332" alt="DSC_0702" /></a></p>
<p>The dishes are accented with vintage {some antique} sterling silverware. The intentional use of varied patterns was to keep things from getting overly formal. </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126058095/" title="DSC_0755 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2622/4126058095_7ebc118eac.jpg" width="500" height="332" alt="DSC_0755" /></a></p>
<p>Bread plates stayed stacked, waiting to be passed out as needed once the food hit the table. </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126071909/" title="DSC_0752 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2687/4126071909_fe2b113a09.jpg" width="383" height="500" alt="DSC_0752" /></a></p>
<p>As did the coffee cups. {Uncle John always drank coffee; every meal, no matter what time. I don&#8217;t think I ever remember him drinking water.} Cream &#38; sugar waiting patiently as well. </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126068103/" title="DSC_0802 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2627/4126068103_076257da81.jpg" width="332" height="500" alt="DSC_0802" /></a></p>
<p>Vintage pumpkin shaped goblets {from my mom&#8217;s stash} await your cold beverage of choice. White wine, perhaps? </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126065663/" title="DSC_0739 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2785/4126065663_1398844e1b.jpg" width="332" height="500" alt="DSC_0739" /></a></p>
<p>The centerpiece ~ a bright yellow metal tree from IKEA ~ is a little wacky and a lot of fun. The cheery color pulls from the yellow in china while the branches hold messages of thankfulness. </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126833938/" title="DSC_0734 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2784/4126833938_35ebe180f1.jpg" width="332" height="500" alt="DSC_0734" /></a></p>
<p>Guests would take a leaf, write what they&#8217;re thankful for on the back, and then hang it on the tree. </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126072867/" title="DSC_0774 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2622/4126072867_405d4dfe26.jpg" width="445" height="500" alt="DSC_0774" /></a></p>
<p>Mismatched chairs in the same dark wood tone finished things off. </p>
<p><a href="http://www.flickr.com/photos/carriegrace/4126830026/" title="DSC_0796 by brick city love, on Flickr"><img src="http://farm3.static.flickr.com/2708/4126830026_3cf223f619.jpg" width="500" height="332" alt="DSC_0796" /></a></p>
<p>Don&#8217;t forget to head on over to the <a href="http://newlywoodwards.blogspot.com/2009/11/dare-to-entertain-dare-to-diy-week-26_22.html">NewlyWoodwards</a> and check out everyone else&#8217;s tables!</p>
<p><a href="http://newlywoodwards.blogspot.com/2009/11/dare-to-entertain-dare-to-diy-week-26_22.html"><img src="http://farm3.static.flickr.com/2631/4079810980_0374bbceb4_m.jpg" alt="Dare to DIY" width="240" height="160" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Verbale della riunione del 19 XI 2009]]></title>
<link>http://elementodidisturbo.com/2009/11/23/verbale-della-riunione-del-19-xi-2009/</link>
<pubDate>Mon, 23 Nov 2009 11:55:54 +0000</pubDate>
<dc:creator>elementodidisturbo</dc:creator>
<guid>http://elementodidisturbo.com/2009/11/23/verbale-della-riunione-del-19-xi-2009/</guid>
<description><![CDATA[Verbale della riunione del 19 XI 2009 presenti: Alessio, Frederick, Marco. Punti all&#8217;ordine de]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://elementodidisturbo.wordpress.com/files/2009/11/jambo.jpg"><img class="aligncenter size-full wp-image-226" title="jambo" src="http://elementodidisturbo.wordpress.com/files/2009/11/jambo.jpg" alt="" width="460" height="345" /></a></p>
<p>Verbale della riunione del 19 XI 2009</p>
<p>presenti: Alessio, Frederick, Marco.</p>
<p style="padding-left:30px;">Punti all&#8217;ordine del giorno:<br />
intervista, concorso serigrafo, corsi di editoria, nuovi volantini, nuovi listino prezzi, manuale serigrafico, nuovi materiali per la serigrafia, statuto, conti, brutti caratteri<br />
<!--more--><br />
punti svolti:</p>
<p style="padding-left:30px;">1.la riunione ha accolto positivamente la possibilità di rilasciare un&#8217;intervista al settimanale &#8220;vicenza più&#8221;. Ci si troverà, possibilmente tutti e tre, a casa del giornalista, martedì alle 18:00.</p>
<p style="padding-left:30px;">2.si lancerà con l&#8217;articolo, anche un concorso: &#8220;un disegno di disturbo&#8221;. Il termine del concorso sarà il 20 XII 2009. L&#8217;idea è intesa al fine di creare una &#8220;scena&#8221; artistica improntata nella collaborazione. Avendo già pronta la prossima maglietta, abbiamo deciso di tenerla da parte, e aprire la possità di produrre una maglietta fatta da un &#8220;nuovo&#8221; artista. Ci prefiggiamo di raggiungere altri aritisti, senza restrizioni di età, sesso o provenienza, per far creare un&#8217;immagine, in &#8220;linea&#8221;, con le altre tre magliette già prodotte dalla nostra associazione. L&#8217;immagine potrà essere una foto, un disegno, o qualsiasi elaborazione bidimensionale, l&#8217;importante è che sia originale dell&#8217;artista e rilasciata con licenze libere creative commons. Non ci saranno limiti nel numero di opere presentabili, tecniche, o quant&#8217;altro. L&#8217;immagine dovrà essere inviata entro la data prefissata, via mail al nostro solito indirizzo ( elementodidisturbo@autoproduzioni.net ) o recapitata a  mano presso il <a href="http://www.comune.vicenza.it/argomenti/scheda.php/42725,45908">centro giovanile tecchio</a> di viale san lazzaro 112. il giudizio della commissione, che valuterà tutte le opere, sarà insindacabile. L&#8217;opera vincitrice verrà stampata a un colore (come sempre) nella prossima linea di magliette, secondo la consueta tiratura e con il fine di raccogliere fondi per l&#8217;associazione.</p>
<p style="padding-left:30px;">3.sempre nell&#8217;ottica di creare una scena creativa di condivisione, l&#8217;associazione organizzerà, grazie anche all&#8217;indispensabile collaborazione degli amici di <a href="http://collanediruggine.noblogs.org/">Ruggine</a>,  un corso di editoria. Il corso sarà costruito per aumentare le conoscenze di editoria nelle persone e stimolarle nell&#8217;autoproduzione, sottinteso che promuoveremo programmi liberi, e tecniche fantasiose. Gli appuntamenti saranno organizzato a partire dal nuovo anno, con una scadenza di un incontro ogni due settimane, per circa due mesi (o il tempo necessario). Il corso sarà gratuito, ma i vari costi di materiali, per la produzione del proprio libro, saranno a carico degli interessati. Attendiamo la risposta del Tecchio per la disponibilità delle stanze.</p>
<p style="padding-left:30px;">4.dobbiamo fare dei nuovi volantini, sia per i corsi di serigrafia, sia per il sito di <a href="banchettodidisturbo.noblogs.org" target="_blank">banchettodidisturbo.noblogs.org</a>.</p>
<p style="padding-left:30px;">5.a fronte delle richieste di creare un&#8217;offerta che vada sempre di più in direzione delle diverse necessità delle persone, abbiamo creato un tariffario per chi ha già sostenuto il corso, o che già sa come fare. Il costo dei corsi rimane sempre di 60€ (tutto incluso comprese 5 magliette). Per chi sa già come fare, e quindi si accolla tutti i costi degli eventuali errori, l&#8217;associazione fornirà, per 30€, tutto il materiale necessario (gel fotosensibile q.b., telaio, ritelaiamento, racle, una maglietta, colore q.b.). Se dovesse essere necessaria un&#8217;ulteriore sessione di stampe, la serigrafia metterà a disposizione il necessario per 15€ (il telaio già impressionato, racla, una maglietta, colore q.b.).</p>
<p style="padding-left:30px;">6.si rilancia l&#8217;idea di fare un libretto di come crearsi una serigrafia casalinga. Si propone di puntare a un&#8217;edizione curata e possibilmente a colori, per dare una maggiore leggibilità alle foto presenti nel libretto.</p>
<p style="padding-left:30px;">7.si è discusso di fare una nuova ordinaizione per le magliette, in modo da rimpinguare l&#8217;armadio di magliette che offriamo, alle persone che producono le proprie opere presso di noi. Ordineremo da uomo 20 magliette taglia S e 20 taglia M; da donna 20 magliette taglia S e 20 taglia M. abbiamo deciso di prendere anche 20 felpe (10 taglia M e 10 taglia L). per chi le volesse.</p>
<p style="padding-left:30px;">8.lo statuto è quasi finito di essere ribattuto, Ale promette che, per giovedì 26 novembre lo porterà per la rilettura collettiva.</p>
<p style="padding-left:30px;">9.ci si metterà in contatto per partecipare a &#8220;<a href="http://esposta.net/blog/2009/04/brutti-caratteri-5/" target="_blank">brutti caratteri 6</a>&#8220;.</p>
<p style="padding-left:30px;">10. i conti in sospeso tra serigrafi, sono stati finalmente estinti.</p>
<p style="padding-left:30px;">
<p>Il verbalista<br />
Frederick</p>
<p>letto e approvato<br />
Alessio<br />
Marco</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[BANGSGIVING: HUMPIN’ &amp; PUMPKIN PIE ]]></title>
<link>http://cooktobang.com/2009/11/23/bangsgiving-humpin%e2%80%99-pumpkin-pie/</link>
<pubDate>Mon, 23 Nov 2009 11:44:29 +0000</pubDate>
<dc:creator>cooktobang</dc:creator>
<guid>http://cooktobang.com/2009/11/23/bangsgiving-humpin%e2%80%99-pumpkin-pie/</guid>
<description><![CDATA[I&#39;ll be humping and pumpkin out pies all night long! Bangsgiving is upon us!  It’s time to prepa]]></description>
<content:encoded><![CDATA[I&#39;ll be humping and pumpkin out pies all night long! Bangsgiving is upon us!  It’s time to prepa]]></content:encoded>
</item>
<item>
<title><![CDATA[Anybody got a peanut?]]></title>
<link>http://transientexpression.wordpress.com/2009/11/23/anybody-got-a-peanut/</link>
<pubDate>Mon, 23 Nov 2009 08:08:52 +0000</pubDate>
<dc:creator>lifelab</dc:creator>
<guid>http://transientexpression.wordpress.com/2009/11/23/anybody-got-a-peanut/</guid>
<description><![CDATA[Several months ago a friend of mine loaned me her copy of Last-Minute Patchwork + Quilted Gifts and ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://transientexpression.wordpress.com/files/2009/11/elephant-1.jpg"><img alt="" src="http://transientexpression.wordpress.com/files/2009/11/elephant-1.jpg" class="aligncenter" width="500" /></a></p>
<p><a href="http://transientexpression.wordpress.com/files/2009/11/elephant-2.jpg"><img alt="" src="http://transientexpression.wordpress.com/files/2009/11/elephant-2.jpg" class="aligncenter" width="500" /></a></p>
<p>Several months ago a friend of mine loaned me her copy of <a href="http://www.amazon.com/Last-Minute-Patchwork-Quilted-Joelle-Hoverson/dp/1584796340/ref=sr_1_1?ie=UTF8&#38;s=books&#38;qid=1258951193&#38;sr=1-1">Last-Minute Patchwork + Quilted Gifts</a> and I made Peanut the Wee Elephant. My boyfriend Steven and I have a rather ridiculous stuffed elephant collection, and this cute little guy fit right in the family. He was pretty easy to make, but the hardest part was hiding my labors from Steven so it would be a surprise. </p>
<p>Last week my friend mentioned that she had never seen the finished elephant, so I had to post pictures just for her <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Tomorrow&#8211;oh wait, since it&#8217;s after midnight, make that today&#8211;we&#8217;re headed off on a long drive to visit family in the tiny little town of Tubac, Arizona. I don&#8217;t know what the internet situation will be, but I imagine it&#8217;ll be pretty scarce. Posting will be light, if at all, but I&#8217;ll hopefully have plenty to share next week after the trip. </p>
<p>Happy Thanksgiving!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[[ garsoniera in Göteborg ]]]]></title>
<link>http://decorabilitate.wordpress.com/2009/11/23/1947/</link>
<pubDate>Mon, 23 Nov 2009 08:00:57 +0000</pubDate>
<dc:creator>decor...abilitate</dc:creator>
<guid>http://decorabilitate.wordpress.com/2009/11/23/1947/</guid>
<description><![CDATA[o garsoniera mica si suuuper draguta! culoari pastelate, alb si crem &#8230; tapet, mobilier ikea ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2><span style="color:#888888;"><a rel="attachment wp-att-1936" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095256010_66ea235164/"><img class="aligncenter size-full wp-image-1936" title="4095256010_66ea235164" src="http://decorabilitate.wordpress.com/files/2009/11/4095256010_66ea235164.jpg" alt="" width="344" height="500" /></a></span></h2>
<p style="text-align:justify;"><span style="color:#888888;">o garsoniera mica si suuuper draguta! culoari pastelate, alb si crem &#8230; tapet, mobilier ikea &#8230; parca as fi facut-o eu !!! deci, este o garsoniera cu o singura incapere, ce-i drept mai mare &#8230; cu stucatura, tocaraie de lemn masiv <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  si inaltimea camerei de peste 3 m. asemenea unei case vechi din bucurestiul nostru.</span></p>
<p style="text-align:justify;"><span style="color:#888888;">garsoniera are 47 mp &#8230; deci putin &#8230; dar defapt mai mult! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  stiu eu ce zic, si se afla in </span><span style="color:#888888;">Göteborg, Suedia &#8230;<br />
</span></p>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1936" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095256010_66ea235164/"></a><a rel="attachment wp-att-1937" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4094495887_012acecc8d/"><img class="aligncenter size-full wp-image-1937" title="4094495887_012acecc8d" src="http://decorabilitate.wordpress.com/files/2009/11/4094495887_012acecc8d.jpg" alt="" width="343" height="500" /></a></span></h2>
<p style="text-align:justify;"><span style="color:#888888;">imi place ca au pastrat podeaua de acelasi tip peste tot &#8230; adica o dusumea, iarasi clasica, din lemn natur &#8230; chiar daca nu peste tot este la acelas nivel. la fel si caloriferele vechi &#8230; sunt de pastrat! cu banii pe care i-ati cheltui pe unul nou, eu zic ca e mai interesant sa il refaceti pe cel vechi!<br />
</span></p>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1937" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4094495887_012acecc8d/"></a><a rel="attachment wp-att-1938" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095253790_76c23cd379/"><img class="aligncenter size-full wp-image-1938" title="4095253790_76c23cd379" src="http://decorabilitate.wordpress.com/files/2009/11/4095253790_76c23cd379.jpg" alt="" width="342" height="500" /></a></span></h2>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1938" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095253790_76c23cd379/"></a><a rel="attachment wp-att-1939" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095253880_e3bab5d9e3/"><img class="aligncenter size-full wp-image-1939" title="4095253880_e3bab5d9e3" src="http://decorabilitate.wordpress.com/files/2009/11/4095253880_e3bab5d9e3.jpg" alt="" width="500" height="333" /></a></span></h2>
<p><span style="color:#888888;">o imartire simpla si practica &#8230; la prima vedere intri in living &#8230; iar imediat dupa un perete &#8230; este patul!<br />
</span></p>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1939" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095253880_e3bab5d9e3/"></a><a rel="attachment wp-att-1940" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095253960_5a0f2fb896/"><img class="aligncenter size-full wp-image-1940" title="4095253960_5a0f2fb896" src="http://decorabilitate.wordpress.com/files/2009/11/4095253960_5a0f2fb896.jpg" alt="" width="500" height="333" /></a></span></h2>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1940" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095253960_5a0f2fb896/"></a><a rel="attachment wp-att-1941" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095254044_8e374f26a8/"><img class="aligncenter size-full wp-image-1941" title="4095254044_8e374f26a8" src="http://decorabilitate.wordpress.com/files/2009/11/4095254044_8e374f26a8.jpg" alt="" width="500" height="337" /></a></span></h2>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1941" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095254044_8e374f26a8/"></a><a rel="attachment wp-att-1942" href="http://decorabilitate.wordpress.com/2009/11/23/1947/9-2/"><img class="aligncenter size-full wp-image-1942" title="9" src="http://decorabilitate.wordpress.com/files/2009/11/9.jpeg" alt="" width="500" height="333" /></a></span></h2>
<p><span style="color:#888888;">si ceva ce la noi nu mai gasim: una bucata fereastra suuuper frumoasa! &#8230; asa ceva mai greu pe aici <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
</span></p>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1942" href="http://decorabilitate.wordpress.com/2009/11/23/1947/9-2/"></a><a rel="attachment wp-att-1943" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095254366_68f5ee3bb1/"><img class="aligncenter size-full wp-image-1943" title="4095254366_68f5ee3bb1" src="http://decorabilitate.wordpress.com/files/2009/11/4095254366_68f5ee3bb1.jpg" alt="" width="500" height="334" /></a></span></h2>
<p><span style="color:#888888;">bucataria pare spatioasa &#8230; imi plac tonurile de gri folosite si negrul acela puternic al cabinetelor.<br />
</span></p>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1943" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095254366_68f5ee3bb1/"></a><a rel="attachment wp-att-1944" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095254560_26b3612929/"><img class="aligncenter size-full wp-image-1944" title="4095254560_26b3612929" src="http://decorabilitate.wordpress.com/files/2009/11/4095254560_26b3612929.jpg" alt="" width="500" height="335" /></a></span></h2>
<h2 style="text-align:justify;"><span style="color:#888888;"><a rel="attachment wp-att-1944" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4095254560_26b3612929/"></a><a rel="attachment wp-att-1945" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4094495085_296612d151/"><img class="aligncenter size-full wp-image-1945" title="4094495085_296612d151" src="http://decorabilitate.wordpress.com/files/2009/11/4094495085_296612d151.jpg" alt="" width="337" height="500" /></a></span></h2>
<p style="text-align:justify;"><span style="color:#888888;">si iata si un tapet mai fistichiu! mai chic! &#8230; pentru ca merita! &#8230; eu sper ca fata care locuieste aici sa fi pus aceasta rochie rosie ca decor permanent! se potriveste perfect.<br />
</span></p>
<h2><span style="color:#888888;"><a rel="attachment wp-att-1946" href="http://decorabilitate.wordpress.com/2009/11/23/1947/4094494823_1b20dc8864/"><img class="aligncenter size-full wp-image-1946" title="4094494823_1b20dc8864" src="http://decorabilitate.wordpress.com/files/2009/11/4094494823_1b20dc8864.jpg" alt="" width="500" height="340" /></a></span></h2>
<p style="text-align:justify;"><span style="color:#888888;">iar asta este balconul lor !!! la o astfel de imagine afara &#8230; si cea de inauntru &#8230; daca ar fi casa mea as avea program pe usa cat timp petrec afara si cat inauntru &#8230; 50 / 50 % <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  indiferent de anotimp!<br />
</span></p>
<p><span style="color:#888888;"><br />
</span></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
