<?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>dynamic &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/dynamic/</link>
	<description>Feed of posts on WordPress.com tagged "dynamic"</description>
	<pubDate>Fri, 27 Nov 2009 18:07:25 +0000</pubDate>

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

<item>
<title><![CDATA[Suki's Favorite Spot]]></title>
<link>http://jonathanfleming.wordpress.com/2009/11/26/sukis-favorite-spot/</link>
<pubDate>Fri, 27 Nov 2009 04:11:01 +0000</pubDate>
<dc:creator>Jonathan</dc:creator>
<guid>http://jonathanfleming.wordpress.com/2009/11/26/sukis-favorite-spot/</guid>
<description><![CDATA[Panasonic Lumix DMC-LX3 Welcome to Suki&#8217;s favorite spot in the whole house. She spends so much]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_795" class="wp-caption aligncenter" style="width: 730px"><a href="http://jonathanfleming.wordpress.com/files/2009/11/mosaicd3121e6b691ae350f0ecd9fc2ff664fc8cbafe04.jpg"><img class="size-full wp-image-795" title="Suki's favorite spot" src="http://jonathanfleming.wordpress.com/files/2009/11/mosaicd3121e6b691ae350f0ecd9fc2ff664fc8cbafe04.jpg" alt="" width="720" height="576" /></a><p class="wp-caption-text">Panasonic Lumix DMC-LX3</p></div>
<p>Welcome to Suki&#8217;s favorite spot in the whole house. She spends so much time looking out the window, ever fascinated by what&#8217;s going on outside. It is here that she watches me come and go from the house, observes neighbors and passerby, and basks in sunlight throughout the day. I was watching TV this afternoon when she perched by the window. I grabbed my Nikon, but the battery had run out. Whoops! Good thing my Lumix LX3 was handy.</p>
<div id="attachment_801" class="wp-caption aligncenter" style="width: 730px"><a href="http://jonathanfleming.wordpress.com/files/2009/11/p1040303.jpg"><img src="http://jonathanfleming.wordpress.com/files/2009/11/p1040303.jpg" alt="" title="Suki Relax" width="720" height="415" class="size-full wp-image-801" /></a><p class="wp-caption-text">Panasonic Lumix DMC-LX3 5.1mm f/2.5 ISO80 1/4 Second</p></div>
<p>Suki has finally stopped shedding (for now), and has grown her full winter coat. She looks a tad bigger as a result, but she&#8217;s much more snuggly and huggable now! </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Restfulie Java: quit pretending, start using the web for real]]></title>
<link>http://guilhermesilveira.wordpress.com/2009/11/25/restfulie-java-hypermedia-aware-client-client-stateless-server-quit-pretending-start-using-the-web-for-real-part-2/</link>
<pubDate>Wed, 25 Nov 2009 11:13:57 +0000</pubDate>
<dc:creator>guilhermesilveira</dc:creator>
<guid>http://guilhermesilveira.wordpress.com/2009/11/25/restfulie-java-hypermedia-aware-client-client-stateless-server-quit-pretending-start-using-the-web-for-real-part-2/</guid>
<description><![CDATA[Its time to release Restfulie Java, offering the same power encountered in its ruby release, through]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Its time to release <a href="http://www.github.com/caelum/restfulie-java">Restfulie Java</a>, offering the same power encountered in its ruby release, through the use of <a href="http://www.csg.is.titech.ac.jp/~chiba/javassist/">dynamic bytecode generation</a> and <a href="http://vraptor.caelum.com.br/documentation/interceptors/">request interception </a><a href="http://vraptor.caelum.com.br/en">using VRaptor</a>.</p>
<h2>Serialization framework</h2>
<p>Restfulie adopts <a href="http://xstream.codehaus.org">XStream</a> by default. Its simple usage and configuration gets even easier due to vraptor&#8217;s serialization extension built upon XStream &#8211; but it allows the usage of other serializers.</p>
<p>The following code will serialize the order object including its children items (much similar to <a href="http://api.rubyonrails.org/classes/ActiveRecord/XmlSerialization.html#M000923">rails to_xml only option</a>):</p>
<pre>serializer.from(order).include("items").serialize();</pre>
<h2>Connected: Hypermedia content creation</h2>
<p>In order to guide the client from one application state to another, the server needs to create and dispatch links that can be interpreted by the client machine, thus the need for generating hypermedia aware serialization tools and consumer apis.</p>
<p>Its the basic usage of the web in a software-to-software communication level.</p>
<p>Pretty much like Restfulie&#8217;s ruby implementation, by implementing the getFollowingTransitions method, <strong>restfulie</strong> will serialize your<br />
resource, generating its representation with hypermedia links:</p>
<pre>public List getFollowingTransitions(Restfulie control) {
  if (status.equals("unpaid")) {
    control.transition(OrderingController.class).cancel(this);
    control.transition(OrderingController.class).pay(this,null);
  }
  if(status.equals("paid")) {
    control.transition(OrderingController.class).retrieve(this);
  }
  return control.getTransitions();
}</pre>
<h2>Controller interception</h2>
<p>Restfulie for Java goes further, intercepting transition invocations and checking for its status. The following example will <strong>only</strong> be executed if order is in a valid state for paying:</p>
<pre>@Post @Path("/order/{order.id}/pay")
@Consumes("application/xml")
@Transition
public void pay(Order order, Payment payment) {
	order = database.getOrder(order.getId());
	order.pay(payment);
	result.use(xml()).from(order.getReceipt()).serialize();
}</pre>
<h2>Why?</h2>
<p>Restfulie does not provide a bloated solution with huge api&#8217;s, trying to solve every other problem in the world. According to Richardson Maturity Model, systems are called RESTFul when they support this kind of state flow transition through hypermedia content contained within resources representations:</p>
<pre>&#60;order&#62;
 &#60;product&#62;basic rails course&#60;/product&#62;
 &#60;product&#62;RESTful training&#60;/product&#62;
 &#60;atom:link rel="refresh" href="http://www.caelum.com.br/orders/1" xmlns:atom="http://www.w3.org/2005/Atom"/&#62;
 &#60;atom:link rel="pay" href="http://www.caelum.com.br/orders/1/pay" xmlns:atom="http://www.w3.org/2005/Atom"/&#62;
 &#60;atom:link rel="cancel" href="http://www.caelum.com.br/orders/1" xmlns:atom="http://www.w3.org/2005/Atom"/&#62;
&#60;/order&#62;</pre>
<h2>Stateless state</h2>
<p>In order to profit even more from the web infrastructure, Restfulie for Java provides a (client state) stateless api.</p>
<h2>Addressability</h2>
<p><a href="http://vraptor.caelum.com.br/documentation/resources-rest/">VRaptor&#8217;s controller api</a> allows you to specify custom URI&#8217;s (and http verbs) to identify resources (and transitions) in your system.</p>
<p>Addressability + client cache stateless state server allows one to achieve <a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm">REST&#8217;s idea on cache usage</a> and its related <a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/net_arch_styles.htm#sec_3_4_2">layered systems advantages</a> by allowing other layers to be added between the client and the server.</p>
<h2>Unknown usage of my resources</h2>
<p>Addressability + hypermedia content allows clients to use your resources pretty much in a way that was not tought of at first. Addresses (in our case, URI&#8217;s) can be passed around from one application to another, to and from a client&#8217;s internal database (as simple as a browser favorites, or google gears).</p>
<p>Building your system upon such basis, it become unaware of its resources usage (resource representation&#8217;s interpretation) patterns, allowing clients to create such previously unknown systems.</p>
<h2>Less and simpler code, more results</h2>
<p>Both on the server and client side, restfulie tries to achieve results based on conventions, therefore one can easily access its entry api to insert a resource in a system, i.e.:</p>
<pre>
  Movie solino = new Movie();
  resource("http://www.caelum.com.br/movies").include("metadata").post(solino);
</pre>
<p>And after creating a resource, one can actually navigate through your resource&#8217;s connections:</p>
<pre>
  Movie solino = resource("http://www.caelum.com.br/movies/solino").get();
  Comments comments = resource(solino).getTransition("comments").executeAndRetrieve();
  // print all comments
</pre>
<p>And navigate through your resource&#8217;s states:</p>
<pre>
  Comments comments = resource(solino).getTransition("comments").executeAndRetrieve();

  Comment comment = new Comment("nice movie on generations of immigrants and the hard times that they face when moving to a new place");
  resource(comments).getTransition("add").execute(comment);
</pre>
<p>A lot of good practices should be put into place in order to avoid creating Leonard Richardson&#8217;s defined REST-RPC alike systems.</p>
<p>Those good practices involve simple steps as <a href="http://en.wikipedia.org/wiki/Anemic_Domain_Model">avoiding anemic models on the client side </a>. Restfulie+Vraptor already tries to avoid this on the server side andwe will discuss about such practices in following posts.</p>
<h2>Download and example applications</h2>
<p>Beginners could start by <a href="http://code.google.com/p/restfulie/downloads/list">downloading restfulie&#8217;s client and server example application</a>, ready to run in a eclipse wtp enviroment or pure eclipse installation.</p>
<p>Users are encouraged to use either the <a href="http://groups.google.com/group/restfulie-java">java</a> or <a href="http://groups.google.com/group/restfulie">ruby mailing lists</a>.</p>
<h2>Since Restfulie was born in Ruby&#8230;</h2>
<p>Since we <a href="http://guilhermesilveira.wordpress.com/2009/11/03/quit-pretending-use-the-web-for-real-restfulie/">released restfulie for ruby</a> (on rails), which can be found at its <a href="http://github.com/caelum/restfulie">github page</a>, it was <a href="http://jim.webber.name/2009/11/03/0a252e61-a132-42ab-8547-69e269c3c075.aspx">commented by Jim Webbers</a> both on his blog and in person during QCon in San Francisco, where both him and <a href="http://iansrobinson.com/">Ian Robinson</a> held a tutorial on restful systems and the web and will hold another round, more hands-on, at <a href="http://iansrobinson.com/2009/11/24/qcon-san-francisco-2009/">QCon London 2010</a>.</p>
<p>Meanwhile, Restfulie was commented <a href="http://ruby5.envylabs.com/episodes/26-episode-25-november-6-2009">at ruby5&#8217;s podcast</a>, <a href="http://www.techstartups.com/2009/11/17/real-time-ruby-is-a-gem-called-restfulie/">commented here</a>, <a href="http://www.infoq.com/news/2009/11/restfulie-hypermedia-services">at infoq</a>,  and <a href="http://wakethedead.com.br/blog/70-restfulie">in portuguese by Juliana</a> and by <a href="http://andersonleiteblog.wordpress.com/2009/11/23/mais-sobre-restfulie/">Anderson Leite</a> &#8211; a fellow <a href="http://www.caelum.com.br">Caelum developer</a>.</p>
<p>As some comments were out about restfulie&#8217;s ruby implementation, <strong>restfulie: it&#8217;s more than easy.</strong> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[LAST CALL FOR 2009 ORDERS! ]]></title>
<link>http://badecbrosdeco.wordpress.com/2009/11/24/last-call-for-2009-orders/</link>
<pubDate>Tue, 24 Nov 2009 12:49:27 +0000</pubDate>
<dc:creator>badecbros</dc:creator>
<guid>http://badecbrosdeco.wordpress.com/2009/11/24/last-call-for-2009-orders/</guid>
<description><![CDATA[2009 is drawing to a close, and 2010 is waiting in the wings… Our dynamic team at Badec Bros Deco wi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>2009 is drawing to a close, and 2010 is waiting in the wings… Our dynamic team at Badec Bros Deco will be taking a well-deserved break from 18 December 2009, until 6 January 2010. You have until Thursday, 26 November 2009 to place your orders for delivery in 2009! From next week on, we will be taking the orders for 2010.</p>
<p>Therefore, should you wish to have your very own signature Cubedec steel dustbin, interactive sculpture, Cubedec shelving, Cubedec miniature Zen garden box, 2010 Soccer World Cup décor, mild steel lamp shade, mild steel screen, Cubedec laser-cut logo, gabion counter, narration stand, gabion light cage, gabion bollard, gabion water feature, sculptured living wall, sculptured flagpoles, unique pot and drip tray, customized sculpture, Cubedec bench, trendy steel décor with your company logo emblazoned on it, mild steel inspirational slogan, steel laser-cut signage, mild steel mould, Cubedec Pot, hanging sculpture, gabion pot, gabion wall or gabion terrace, wooden or steel feature poles, bar code trellis, Cubedec water feature, pergola, arch, sculpture or trellis, you can contact our energetic and knowledgeable sales representative, Mareleen van Zijl, on her cell phone at 078 800 5112, the office number at 012 460 7990, or via e-mail at <a href="mailto:mareleen@badecbros.com">mareleen@badecbros.com</a></p>
<p>She will gladly arrange an appointment with you to listen to your ideas and to stun you with our own creative ideas! You dream it, we manufacture it!</p>
<p>Badec Bros Deco will create a 3 dimensional render and calculate a quotation FREE OF CHARGE for you! We can deliver your unique Badec Bros Deco product(s) within 10 to 15 working days, upon acceptance of the design and quotation and the required 50% deposit. These services come standard and will not cost you a cent extra! We offer a 1 year guarantee on all our products.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CLOSING AND OPENING DATES FOR BADEC BROS DECO 2009]]></title>
<link>http://badecbrosdeco.wordpress.com/2009/11/24/closing-and-opening-dates-for-badec-bros-deco-2009/</link>
<pubDate>Tue, 24 Nov 2009 12:35:02 +0000</pubDate>
<dc:creator>badecbros</dc:creator>
<guid>http://badecbrosdeco.wordpress.com/2009/11/24/closing-and-opening-dates-for-badec-bros-deco-2009/</guid>
<description><![CDATA[2009 is drawing to a close, and 2010 with all of its opportunities and challenges is peeping around ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>2009 is drawing to a close, and 2010 with all of its opportunities and challenges is peeping around the corner …</p>
<p>Our dynamic team at Badec Bros Deco will be taking a well-deserved break from 18 December 2009, until 6 January 2010. We thank you for your valued support and wish you a blessed Christmas and joyous festive season. We look forward to collaborating with you in the new year.</p>
<p>Remember, should you wish to have your very own signature Cubedec steel dustbin, interactive sculpture, Cubedec shelving, Cubedec miniature Zen garden box, 2010 Soccer World Cup décor, mild steel lamp shade, mild steel screen, Cubedec laser-cut logo, gabion counter, narration stand, gabion light cage, gabion bollard, gabion water feature, sculptured living wall, sculptured flagpoles, unique pot and drip tray, customized sculpture, Cubedec bench, trendy steel décor with your company logo emblazoned on it, mild steel inspirational slogan, steel laser-cut signage, mild steel mould, Cubedec Pot, hanging sculpture, gabion pot, gabion wall or gabion terrace, wooden or steel feature poles, bar code trellis, Cubedec water feature, pergola, arch, sculpture or trellis, you can contact our energetic and knowledgeable sales representative, Mareleen van Zijl, on her cell phone at 078 800 5112, the office number at 012 460 7990, or via e-mail at <a href="mailto:mareleen@badecbros.com">mareleen@badecbros.com</a></p>
<p>She will gladly arrange an appointment with you to listen to your ideas and to stun you with our own creative ideas! You dream it, we manufacture it! Badec Bros Deco will create a 3 dimensional render and calculate a quotation FREE OF CHARGE for you! We can deliver your unique Badec Bros Deco product(s) within 10 to 15 working days, upon acceptance of the design and quotation and the required 50% deposit. These services come standard and will not cost you a cent extra! We offer a 1 year guarantee on all our products.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dynamic Reception in C#]]></title>
<link>http://sankarsan.wordpress.com/2009/11/22/dynamic-reception-in-c/</link>
<pubDate>Sun, 22 Nov 2009 18:41:00 +0000</pubDate>
<dc:creator>sankarsan</dc:creator>
<guid>http://sankarsan.wordpress.com/2009/11/22/dynamic-reception-in-c/</guid>
<description><![CDATA[In my last couple of posts I had discussed about the new dynamic keyword introduced in C# 4.0 and th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In my last couple of posts I had discussed about the new <span style="color:#0000ff;">dynamic</span> keyword introduced in C# 4.0 and the how the <span style="color:#0000ff;">DLR</span> integrates with <span style="color:#0000ff;">CLR</span> to provide the dynamic programming services.In this post I will discuss about the <span style="color:#0000ff;">System.Dynamic.DynamicObject</span> class and how we can implement dynamic receivers in C#.Dynamic Receivers allows the client code to make a method call that is not defined in the class.Take a look at the following C# code:<br />
<!--more--></p>
<pre class="brush: csharp;">

static void Main(string[] args)
{
dynamic e = new Employee();
e.FindByFirstNameAndLastName(&#34;Sankarsan&#34;,&#34;Bose&#34;);
Console.Read();
}
</pre>
<p>If the class <span style="color:#004000;">Employee</span> does not have the <span style="color:#004000;">FindByFirstNameAndLastName</span> method defined in it then there will be no compile time error but at runtime we will get a <span style="color:#0000ff;">RuntimeBinderException</span> with message:</p>
<p><span style="color:#ff0000;"><em>&#8216;DynamicReceiver.Employee&#8217; does not contain a definition for &#8216;FindByFirstNameAndLastName&#8217;</em></span></p>
<p><a href="http://martinfowler.com/dslwip/DynamicReception.html" target="_blank">Dynamic Reception</a> is the technique by which we try to handle a undefined method situation.</p>
<p>Before we get into how to implement this case above let&#8217;s take a look into the <span style="color:#0000ff;">System.Dynamic.DynamicOject</span> class and some of it&#8217;s important methods.</p>
<p>DynamicObject is the base class used for providing runtime dynamic behavior and the classes which need such a behavior has to inherit this class.This class cannot be instantiated and used on it&#8217;s own.</p>
<p>The three important methods are:</p>
<ul>
<li><span style="color:#004000;"><em>public virtual bool TryGetMember(GetMemberBinder binder,out Object result)</em></span> &#8211; This operation is invoked when any dynamic property is accessed on the dynamic object.The subclasses can override this method to provide specialized logic for member access.
<ul>
<li><span style="color:#0000ff;">GetMemberBinder</span> class provides the abstraction for dynamic get member operation.The <span style="color:#0000ff;">Name</span> property of GetMemberBinder provides the name of the member/property we are trying to access.</li>
<li>The out parameter <span style="color:#0000ff;">result</span> contains the value of the member we are trying to access</li>
<li>The method returns true if the member access is successful.</li>
</ul>
</li>
<li><span style="color:#004000;"><em>public virtual bool TrySetMember(SetMemberBinder binder,Object value)</em></span> &#8211; This operation is invoked when we are trying to set value of a dynamic member and subclasses can override this method to provide specialized logic for member access.
<ul>
<li><span style="color:#0000ff;">SetMemberBinder</span> provides abstraction of a set member operation at the callsite and <span style="color:#0000ff;">Name</span> property returns the name of the member whose value we are trying to set.</li>
<li>The parameter <span style="color:#0000ff;">value</span> contains the value we are trying to set to the member.</li>
<li>Returns true if the value is successfully set.</li>
</ul>
</li>
<li><em><span style="color:#004000;">public virtual bool TryInvokeMember(InvokeMemberBinder binder,Object[] args,out Object result)</span></em> &#8211; This operation is invoked when we are trying to call a dynamic method on a dynamic object.The subclasses can override this method to provide specialized logic for member access.
<ul>
<li><span style="color:#0000ff;">InvokeMemberBinder</span> class provides the abstraction for dynamic method invocation at the callsite.The <span style="color:#0000ff;">Name</span> property of InvokeMemberBinder provides the name of the method we are trying to invoke.</li>
<li>The parameter <span style="color:#0000ff;">args</span> contains the values for input parameters of the method to be invoked.</li>
<li>The out parameter <span style="color:#0000ff;">result</span> contains the return value of the method we are trying to invoke.</li>
<li>The method returns true if the method invocation is successful.</li>
</ul>
</li>
</ul>
<p>Let&#8217;s again go back to code.Our Employee class is defined as follows:</p>
<pre class="brush: csharp;">

public class Employee : DynamicObject
{
public string FirstName { get; set; }
public string LastName { get; set; }

private Employee[] FindBy(string firstName=null,string lastName=null)
{
Console.WriteLine(&#34;Find Employees with Criteria::\n&#34;);
Console.WriteLine(&#34;FirstName with value={0}\n&#34;,firstName);
if (lastName != null)
{
Console.WriteLine(&#34;And\nLastName with value={0}\n&#34;, lastName);
}
return null;
}
}
</pre>
<p>We have no method named FindByFirstNameAndLastName.So how to tackle this situation?.Let&#8217;s set a rule.Any dynamic find method on the Employee object should follow the convention that name will start with &#8220;FindBy&#8221; followed the by property name to be used as criteria of the query.e.g. FindByFirstName, FindByLastName and FindByFirstNameAndLastName.We will implement this rule by overriding the TryInvokeMember as shown below:</p>
<pre class="brush: csharp;">

public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result)
{
bool retVal = false;
result = null;
string methodName = binder.Name;
if (methodName.StartsWith(&#34;FindBy&#34;))
{
string param = methodName.Substring(6);
if (param.Contains(&#34;And&#34;))
{
string[] paramlist = param.Split(&#34;And&#34;.ToCharArray(),StringSplitOptions.RemoveEmptyEntries);
if(paramlist[0]==&#34;FirstName&#34; &#38;&#38; paramlist[1]==&#34;LastName&#34;)
{
result = FindBy(args[0].ToString(), args[1].ToString());
retVal = true;
}
}
else
{

if (param == &#34;FirstName&#34;)
{
result = FindBy(firstName: args[0].ToString());
retVal = true;
}
else if (param == &#34;LastName&#34;)
{
result = FindBy(lastName: args[0].ToString());
retVal = true;
}
}
}
return retVal;
}
</pre>
<p>Now the question might come up why I am not exposing the FindBy method as public?Of course that can be done.But this approach is more flexible, productive and code with method names like FindByFirstName,FindByLastName is more readable and easier to understand.The disadvantage here is the method naming convention is nowhere enforced in code and developer must have that knowledge from documentation.</p>
<p><em><span style="color:#400000;">NOTE: This code is written Visual Studio Beta 2.</span></em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[]]></title>
<link>http://bniuniversal.wordpress.com/2009/11/22/101/</link>
<pubDate>Sun, 22 Nov 2009 14:07:21 +0000</pubDate>
<dc:creator>bniuniversal</dc:creator>
<guid>http://bniuniversal.wordpress.com/2009/11/22/101/</guid>
<description><![CDATA[Top 10 Ways to Waste Your Time in a Networking Group Networking Success with Ivan Misner, Ph.D. Are ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h1>Top 10 Ways to Waste Your Time in a Networking Group<br />
Networking Success with Ivan Misner, Ph.D.</h1>
<p>Are you guilty of any of these? Do you know others in your chapter who are?<br />
Networking groups pay off handsomely in terms of referral business, so make the most of every single meeting and avoid wasting time—especially in the following ten ways.</p>
<p>Word-of-mouth marketing is a sure-fire way to generate new business. A single referral can bring in a chain reaction of business, as one satisfied customer tells others, who in turn tell still others. It’s no wonder that networking groups pay off handsomely in terms of referral business and a membership in a good networking group can be worth a considerable amount of money; especially if you calculate the time you spend each month and the business value of your time.</p>
<p>Make your time and efforts worthwhile. Don&#8217;t squander your opportunity by doing the wrong things in those meetings!</p>
<p>Success in a networking group comes when the rest of the group members trust you enough to open up their best referrals to you. Until they&#8217;ve seen your work, you have to earn that trust by demonstrating your professionalism to them. Since I founded BNI almost 25 years ago, I&#8217;ve seen how people have truly succeeded in networks and I&#8217;ve seen how people have totally wasted their time in them.</p>
<p>Here are the top ten ways to waste your time in a networking group (avoid all of them):</p>
<p># 10. Go ahead, air your grievances among your fellow networkers and guests; after all, they really want to hear about your complaints.<br />
&#8230;continued<br />
<a title="New window will open" href="http://www.linkedin.com/redirect?url=http%3A%2F%2Fthenationalnetworker%2Eblogspot%2Ecom%2F2009%2F10%2Fnetworking-success-top-10-ways-to-waste%2Ehtml&#38;urlhash=kny3" target="_blank">http://thenationalnetworker.blogspot.com/2009/10/networking-success-top-10-ways-to-waste.html</a></p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hyper-V pass-through disk performance vs. fixed size VHD files and dynamic VHD files in Windows Server 2008 R2]]></title>
<link>http://fawzi.wordpress.com/2009/11/22/hyper-v-pass-through-disk-performance-vs-fixed-size-vhd-files-and-dynamic-vhd-files-in-windows-server-2008-r2/</link>
<pubDate>Sun, 22 Nov 2009 07:20:52 +0000</pubDate>
<dc:creator>Mohamed Fawzi</dc:creator>
<guid>http://fawzi.wordpress.com/2009/11/22/hyper-v-pass-through-disk-performance-vs-fixed-size-vhd-files-and-dynamic-vhd-files-in-windows-server-2008-r2/</guid>
<description><![CDATA[Daveberm on Clustering For Mere Mortals had did some good effort to test new Dynamic VHD files in wi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Daveberm on <a href="http://clusteringformeremortals.com/">Clustering For Mere Mortals</a> had did some good effort to test new Dynamic VHD files in windows 2008 R2, With the release of Windows Server 2008 R2, <a href="http://blogs.msdn.com/tvoellm/archive/2009/08/05/what-s-new-in-windows-server-2008-r2-hyper-v-performance-and-scale.aspx">one  of the enhancements</a> was improving the performance of dynamic VHD files.  Prior to R2, writes to dynamically expanding VHD files could be 3x slower than  writes to a fixed size VHD file due to limited meta data caching. Overall,  Microsoft is claiming the performance of dynamic VHD files vs. fixed size VHD  files is almost identical.</p>
<p>Pass-through disks are another option when configuring a Hyper-V VM. According  to my <a href="http://flash.disasterrecoverycloud.com/Results.csv">results</a>,  the performance of a pass-through disk is marginally better than that of VHD  files. However, if you use pass-through disks you lose all of the benefits of  VHD files such as portability, snap-shotting and thin provisioning. Considering  these trade-offs, using pass-through disks should really only be considered if  you require a disk that is greater than 2 TB in size or if your application is  I/O bound and you really could benefit from another .1 ms shaved off your  average response time.</p>
<p>Check it <a href="http://clusteringformeremortals.com/2009/09/25/hyper-v-pass-through-disk-performance-vs-fixed-size-vhd-files-and-dynamic-vhd-files-in-windows-server-2008-r2/">there</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Creating a Feeds Page]]></title>
<link>http://justin.wordpress.com/2009/11/22/creating-a-feeds-page/</link>
<pubDate>Sun, 22 Nov 2009 05:50:33 +0000</pubDate>
<dc:creator>Justin</dc:creator>
<guid>http://justin.wordpress.com/2009/11/22/creating-a-feeds-page/</guid>
<description><![CDATA[In this short guide we will create a new page that lists the feeds available on a WordPress blog. It]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In this short guide we will create a new page that lists the feeds available on a WordPress blog. It&#8217;s a simple process and can be a handy overview of what data your site offers.</p>
<p><strong>Step One: Creating a Feeds Template</strong></p>
<p>We will need a template which dynamically outputs our feeds. The easiest way to do this to fit in with the theme you have installed is to make a copy of the page.php template and name it something like feeds.php</p>
<p>Next we will need to give the new template a label. Look for the following snippet of code or something similar at the top and change the label to &#8220;Feeds Page&#8221;. If you do not see it go ahead and add this.</p>
<pre class="brush: php;">/*
Template Name: Feeds Page
*/</pre>
<p>Next we will want to remove the code from this template that generates the page. We will replace it with the code that displays links to the feeds. Remove everything from the start of the WordPress loop to the end:</p>
<p>From</p>
<pre class="brush: php;">&#60;?php if (have_posts()) : while (have_posts()) : the_post(); ?&#62;</pre>
<p>to</p>
<pre class="brush: php;">&#60;?php endwhile; endif; ?&#62;&#62;</pre>
<p>including the edit_post_link function call.</p>
<p>Now we will want to add in some code to display the feeds. I&#8217;ve created some code to get us started which can be demoed on <a href="http://justinshreve.com/blog/feeds/">my personal blog&#8217;s feed page</a>.</p>
<p>The code is</p>
<pre class="brush: php;">&#60;h2&#62;Global Feeds&#60;/h2&#62;

&#60;ul&#62;
&#60;li&#62;&#60;a href=&#34;&#60;?php bloginfo('rss2_url'); ?&#62;&#34; title=&#34;&#60;?php _e('Latest Posts (RSS)'); ?&#62;&#34;&#62;&#60;?php _e('&#60;abbr title=&#34;Really Simple Syndication&#34;&#62;RSS&#60;/abbr&#62;'); ?&#62;&#60;/a&#62;&#60;/li&#62;
&#60;li&#62;&#60;a href=&#34;&#60;?php bloginfo('atom_url'); ?&#62;&#34; title=&#34;&#60;?php _e('Latest Posts (Atom)'); ?&#62;&#34;&#62;&#60;?php _e('Atom'); ?&#62;&#60;/a&#62;&#60;/li&#62;
&#60;li&#62;&#60;a href=&#34;&#60;?php bloginfo('comments_rss2_url'); ?&#62;&#34; title=&#34;&#60;?php _e('Latest Comments (RSS)'); ?&#62;&#34;&#62;&#60;?php _e('Comments &#60;abbr title=&#34;Really Simple Syndication&#34;&#62;RSS&#60;/abbr&#62;'); ?&#62;&#60;/a&#62;&#60;/li&#62;
&#60;/ul&#62;

&#60;h2&#62;Feeds by Category&#60;/h2&#62;

&#60;ul&#62;
&#60;?php wp_list_categories('orderby=name&#38;show_count=1&#38;feed=RSS&#38;title_li='); ?&#62;
&#60;/ul&#62;</pre>
<p>The first few lines simply link to the standard feeds: a feed of the latest posts in RSS format, a feed of the posts in ATOM format and a feed of latest comments in RSS format.</p>
<p>The last few lines (wp_list_categories) output some links to the feeds of the categories you have been posting in. You can edit the above code to fit your needs. For example you can set show_count to 0 to remove the amount of posts after the RSS link, or change &#8220;RSS&#8221; to say &#8220;Feed&#8221; instead or you can remove the listing of category feeds all together.</p>
<p>The hard part is now over. We need to let WordPress know we want a specific page for this template. We do this by creating a new page and setting the page template to use our new feeds template.</p>
<p><strong>Step Two: Creating a Page<br />
</strong></p>
<p>Login to the admin control panel and navigate to &#8220;Pages&#8221; and &#8220;Add New&#8221;. Name the page &#8220;Feeds&#8221; or something similar. Leave the content blank and then look to the right for &#8220;Template&#8221; under the attributes box. Click the dropdown and select our new template.</p>
<p><a href="http://justin.wordpress.com/files/2009/11/templatepreview.png"><img class="alignnone size-full wp-image-8" title="templatepreview" src="http://justin.wordpress.com/files/2009/11/templatepreview.png" alt="" width="277" height="164" /></a></p>
<p>Once you publish the page and click the view button a beautiful new feed template should be displayed.</p>
<p><strong>Closing</strong></p>
<p>That&#8217;s it! Enjoy! This method can be adapted for other dynamic pages you may want to create and is employed by things like a custom archives page or a new dynamic home page. Let me know if this tutorial was useful or if you are using it on your own blog!</p>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:0;width:1px;height:1px;">
<pre>&#60;ul&#62;
&#60;?php
wp_list_categories('orderby=name&#38;show_count=1&#38;feed=RSS'); ?&#62;W
&#60;/ul&#62;
</pre>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Successnet: Master Networker]]></title>
<link>http://bniuniversal.wordpress.com/2009/11/22/successnet-master-networker/</link>
<pubDate>Sun, 22 Nov 2009 04:09:26 +0000</pubDate>
<dc:creator>bniuniversal</dc:creator>
<guid>http://bniuniversal.wordpress.com/2009/11/22/successnet-master-networker/</guid>
<description><![CDATA[Be More Interested than Interesting How to move from a transaction to relational conversation. By Ma]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Be More Interested than Interesting</strong></p>
<p><strong>How to move from a transaction to relational conversation.</strong></p>
<p>By Mark Goulston</p>
<p> If you love networking and can’t wait for your next networking event, read no further.  This article is not for you.</p>
<p> However, if you view networking as a necessary chore in order to develop new business, this one’s for you.</p>
<p> By nature I am shy, and on more occasions than I care to think about, painfully so. It’s no wonder networking did not come naturally or easily to me.  But one evening that all changed</p>
<p> Ten years ago, roughly five years after I’d ventured out of my consultation room as a clinical psychiatrist, I entered the business world.  Though I had spent many hours working through difficult situations with people, meeting strangers at networking events was a stretch.</p>
<p> But one day I changed my attitude. When I attended a networking event, I determined to meet three new people and follow up with them after the event.  I exceed my goal. By the end of the event, I met five—who warmly accepted me and hoped for a follow-up meeting.</p>
<p> I credit my success to a shift in attitude: I focused on being more interested than being interesting.  I asked people what they did for who, when they did it, and how they did it.  I asked them how they got into doing what they do.  And then I asked them why they did what they did.</p>
<p> In each case those last two questions caused a remarkable transformation.  The person with whom I spoke paused and looked upward, as if searching into their mind’s eye for meaningful answers.  Our conversation was no longer transactional; it was relational. And it was better.</p>
<p> When I asked, “Who is someone that helped you in your career, and what did they do?” one person teared up as he described a critical point in his career where a manager went to bat for him. Giving busy people the opportunity to relate a story about someone they feel grateful to is one of the best ways to get through to someone; it’s a gift.</p>
<p> <strong>Show You Care with Questions </strong></p>
<p> A few years later in 2002 I was a keynote speaker at the Annual Meeting of the Association for Corporate Growth (ACG) in Los Angeles. The night before the event the main speakers were invited to a cocktail reception at the Beverly Hills Hotel.  One of the main attractions was another keynote speaker, Mike Heisley: CEO of Heico Companies, owner of the Memphis Grizzlies, and frequently listed as one of America’s 400 Richest People. Everyone wanted time with Mike.   When it was my turn to greet him, something possessed me to ask, &#8220;What did you learn about success from your father?&#8221;</p>
<p> Momentarily taken aback by this question, he pointed to a couple of chairs at a nearby table and said, &#8220;C&#8217;mon, let&#8217;s sit down.&#8221; Though others were waiting, I wasn&#8217;t about to refuse such an invitation.</p>
<p> We sat down and Mike shared the following: &#8220;Some of the best advice I ever received came from my dad. There was the time when I told him about a business I was about to buy that was clearly a win for me and a loss for everyone else who had any connection with the company. He looked at me and asked, &#8216;Why would you do a deal that helped you and hurt everyone else?’</p>
<p> &#8221;It was as if he were saying, &#8216;Mike, because you know how to take advantage of opportunities, you don&#8217;t have to take advantage of people.&#8217; What I didn&#8217;t realize at the time was that my father had so much confidence in my ability to be successful by knowing and doing the right thing that I didn&#8217;t want to dishonour his belief in me by being any less than he thought I could be. And I didn&#8217;t. Like Jack Nicholson&#8217;s famous line from the movie As Good As It Gets, my dad made me want to be a better man. And I like to think I have.&#8221;</p>
<p> When you attend networking events, take my simple advice: Be more interested in others than interesting. See how it makes you a better networker. Showing such generosity of spirit will make you a better person—and others will want to get to know. Who knows, you might even have a few warmly take your hand and tell you how much they enjoyed meeting you and would like to follow up with you.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[178. Friday, November 20, 2009. Spooky Crown. ]]></title>
<link>http://stoptimeproject.com/2009/11/20/178/</link>
<pubDate>Sat, 21 Nov 2009 04:48:53 +0000</pubDate>
<dc:creator>Claudette</dc:creator>
<guid>http://stoptimeproject.com/2009/11/20/178/</guid>
<description><![CDATA[DJ. Anchor. Bad reader. Burger and fries. Rain. Walk or drive. Weird seats. No photos. Zone out. Glo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/eQQy0My21X4&#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/eQQy0My21X4&#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 style="text-align:center;">DJ. Anchor. Bad reader. Burger and fries. Rain. Walk or drive. Weird seats. No photos. Zone out. Global warming. One note. Not dynamic. Can&#8217;t sleep.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Educate your fellow member]]></title>
<link>http://bniuniversal.wordpress.com/2009/11/21/educate-your-fellow-member/</link>
<pubDate>Sat, 21 Nov 2009 01:52:56 +0000</pubDate>
<dc:creator>bniuniversal</dc:creator>
<guid>http://bniuniversal.wordpress.com/2009/11/21/educate-your-fellow-member/</guid>
<description><![CDATA[10 Minute Sales Presentation  Supatra from Nu Skin did introduce us to the newest Nu Skin product ca]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>10 Minute Sales Presentation</strong></p>
<p> Supatra from <a href="http://www.nuskin.com/">Nu Skin</a> did introduce us to the newest Nu Skin product called <strong>ageLOC</strong></p>
<p> Love the way you age.  Imagine prolonging the look and feel of youth, health, and vibrancy.  By targeting the ultimate sources of aging, ageLOC science can dramatically diminish the appearance of aging.  It&#8217;s what you&#8217;ve been waiting for- now you can experience the power of ageLOC.</p>
<p> The science of ageLOC.  Nu Skin is taking the science of anti-aging to a completely new level by studying the genetic origins of how and why we age.  Nu Skin believes ageLOC science is the answer to anti-aging.  It&#8217;s a scientific breakthrough that goes beyond the signs to target the ultimate sources of aging.</p>
<p>Purchase this informative brochure to help you learn more about Nu Skin&#8217;s revolutionary discoveries and how ageLOC science can help you restore youthful activity patterns to your genes.</p>
<p> For further information contact <a href="mailto:supatra89@gmail.com">Supatra</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[การควบคุมพลวัตเบื้องต้น]]></title>
<link>http://sclaimon.wordpress.com/2009/11/20/%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%84%e0%b8%a7%e0%b8%9a%e0%b8%84%e0%b8%b8%e0%b8%a1%e0%b8%9e%e0%b8%a5%e0%b8%a7%e0%b8%b1%e0%b8%95%e0%b9%80%e0%b8%9a%e0%b8%b7%e0%b9%89%e0%b8%ad%e0%b8%87%e0%b8%95%e0%b9%89/</link>
<pubDate>Fri, 20 Nov 2009 16:26:04 +0000</pubDate>
<dc:creator>SoClaimon</dc:creator>
<guid>http://sclaimon.wordpress.com/2009/11/20/%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%84%e0%b8%a7%e0%b8%9a%e0%b8%84%e0%b8%b8%e0%b8%a1%e0%b8%9e%e0%b8%a5%e0%b8%a7%e0%b8%b1%e0%b8%95%e0%b9%80%e0%b8%9a%e0%b8%b7%e0%b9%89%e0%b8%ad%e0%b8%87%e0%b8%95%e0%b9%89/</guid>
<description><![CDATA[205461     การควบคุมพลวัตเบื้องต้น     Introduction to Dynamic Control แบบจํ าลองปริภูมิสถานะ การวิเ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>205461     การควบคุมพลวัตเบื้องต้น     Introduction to Dynamic Control</p>
<p>แบบจํ าลองปริภูมิสถานะ การวิเคราะห์ปริภูมิสถานะ การออกแบบปริภูมิสถานะระบบควบคุมเวลาแบบไม่ต่อเนื่อง ฟังก์ชันพรรณนาของระบบควบคุมไม่เชิงเส้น</p>
<p>(State-space model, state-space analysis, state-space design, discrete-time control systems, describing functions of nonlinear control systems.)</p>
<p>(205461 มหาวิทยาลัยเกษตรศาสตร์)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ Lucy Sees Results Using Blue Chip Dynamic During Her 40-Day Blue Chip Challenge]]></title>
<link>http://bcchallenge.wordpress.com/2009/11/19/lucy-sees-results-using-blue-chip-dynamic-during-her-40-day-blue-chip-challenge/</link>
<pubDate>Thu, 19 Nov 2009 14:29:58 +0000</pubDate>
<dc:creator>bluechipfeed</dc:creator>
<guid>http://bcchallenge.wordpress.com/2009/11/19/lucy-sees-results-using-blue-chip-dynamic-during-her-40-day-blue-chip-challenge/</guid>
<description><![CDATA[We have received a feed diary from Vicky Sweetland who put her rescue horse, Lucy, on Blue Chip’s 40]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://bcchallenge.wordpress.com/files/2009/11/lucy1.jpg"><img class="alignnone size-full wp-image-716" title="Lucy1" src="http://bcchallenge.wordpress.com/files/2009/11/lucy1.jpg" alt="" width="500" height="467" /></a></p>
<p><a href="http://bcchallenge.wordpress.com/files/2009/11/lucy2.jpg"><img class="alignnone size-full wp-image-717" title="Lucy2" src="http://bcchallenge.wordpress.com/files/2009/11/lucy2.jpg" alt="" width="500" height="506" /></a></p>
<p>We have received a feed diary from Vicky Sweetland who put her rescue horse, Lucy, on Blue Chip’s 40-Day Challenge &#8211; using <a href="http://www.bluechipfeed.com/dynamic.html" target="_blank">BlueChip Dynamic</a>.</p>
<p>Before the Blue Chip Challenge, Lucy would experience stiffness and swelling, especially during times of wet and cold weather. Although being hesitant about investing in <a href="http://www.bluechipfeed.com/dynamic.html" target="_blank">Blue Chip Dynamic</a>, by the end of the challenge, Vicky was adamant that she will continue using Blue Chip on Lucy and her other horses. She saw great changes in her Irish Draught, those being, looser joints, suppleness and generally a happier more comfortable horse.</p>
<p><a href="http://bcchallenge.wordpress.com/files/2009/11/blue-chip-challenge-feed-diary-lucy2.pdf">Click here to read Lucy&#8217;s Blue Chip Challenge Feed Diary in full.</a></p>
<p><a href="http://bcchallenge.wordpress.com/files/2009/11/blue-chip-challenge-feed-diary-lucy2.pdf"><img class="alignnone size-full wp-image-720" title="Header" src="http://bcchallenge.wordpress.com/files/2009/11/header5.jpg" alt="" width="500" height="161" /></a></p>
<p>Vicky&#8217;s extra comments:</p>
<p>“I don’t have posh horses and a posh field, but I work hard to look after my horses and am responsible for their health and well being. As you can see the weather can be challenging for Lucy, especially when it’s wet, as the field does become very muddy where they come in and out to get to the dry and the field shelter. Lucy is 20 years now and didn’t have a very good start in life… She has always had stiffness in her back legs and I have tried almost every supplement going. I must admit the price of <a href="http://www.bluechipfeed.com/dynamic.html" target="_blank">Dynamic</a> put me off a bit but if it works, it would be cheaper and more economical than buying all these supplements (that don’t work). I am really pleased with the results and will continue to use <a href="http://www.bluechipfeed.com/dynamic.html" target="_blank">Dynamic</a> on my other horses too. Lucy must feel better and must not be in so much pain, especially during the winter months”.</p>
<p><a href="http://bcchallenge.wordpress.com/files/2009/11/comments.jpg"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Possible tactics of TOGAF Building Blocks]]></title>
<link>http://enklare.wordpress.com/2009/11/19/possible-tactics-of-togaf-building-blocks/</link>
<pubDate>Thu, 19 Nov 2009 00:26:03 +0000</pubDate>
<dc:creator>Jörgen Dahlberg</dc:creator>
<guid>http://enklare.wordpress.com/2009/11/19/possible-tactics-of-togaf-building-blocks/</guid>
<description><![CDATA[In the ”Stable area” we aim for: (”future proofing the situation”) Stable architecture building bloc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img title="The tactics of TOGAF Building Blocks" src="http://enklare.wordpress.com/files/2009/11/evolving_ea_81.png" alt="The tactics of TOGAF Building Blocks" width="354" height="476" /></p>
<p>In the ”Stable area” we aim for: (”future proofing the situation”)</p>
<ol>
<li> Stable architecture building blocks so we ease change management by the use of target architectures that span years and multiple initiatives. This enables us to be in control of an agile future.</li>
<li> Stable solutions building blocks so we can assure that the solutions build upon the SBB we have decided. This enables us to run many solution projects concurrently and still be able to have complete control over the outcome.</li>
</ol>
<p>In the ”Dynamic area” we aim for: (”adaptability to any situation”)</p>
<ol>
<li> Dynamic behaviour in our architecture buildingblocks so that we easily can reconcider the use and re-use of our ABBs to match the needs of the business.</li>
<li> Dynamic behaviour in our solution buildningblocks so that we easily can bundle SBBs in innovative ways that maximize the potentials within our Enterprise architecture and Business situation</li>
</ol>
<p>In the ”Agile area” we aim for: (”simple to work with”)</p>
<ol>
<li> Agility in the selection, configuration and lifecycle of ABBs such that the design of composite ABBs can be done as fast as possible</li>
<li> Agility in the SBBs such that the design of SBBs from the specification of ABBs can be done as fast as possible</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Reindeer Xmas Snow Card]]></title>
<link>http://desingarts.wordpress.com/2009/11/18/reindeer-xmas-snow-card/</link>
<pubDate>Wed, 18 Nov 2009 05:42:03 +0000</pubDate>
<dc:creator>desingarts</dc:creator>
<guid>http://desingarts.wordpress.com/2009/11/18/reindeer-xmas-snow-card/</guid>
<description><![CDATA[Reindeer christmas snow card with reindeer silhouette and snowflakes in two different designs. Usefu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://desingarts.wordpress.com/files/2009/11/reindeer-xmas-snow-card1.jpg"><img class="alignnone size-medium wp-image-405" title="Reindeer Xmas Snow Card" src="http://desingarts.wordpress.com/files/2009/11/reindeer-xmas-snow-card1.jpg?w=300" alt="" width="300" height="300" /></a></p>
<p>Reindeer christmas snow card with reindeer silhouette and snowflakes in two different designs. Useful as invitation or greetings card. See previews and download links further this post. Have fun using!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[C# Dynamic &ndash; C# 4.0/2010 New Feature]]></title>
<link>http://goldmanalpha.wordpress.com/2009/11/15/c-dynamic-2010-new-feature/</link>
<pubDate>Sun, 15 Nov 2009 16:46:42 +0000</pubDate>
<dc:creator>goldmanalpha</dc:creator>
<guid>http://goldmanalpha.wordpress.com/2009/11/15/c-dynamic-2010-new-feature/</guid>
<description><![CDATA[I watched the video about the new Dynamic feature coming in .Net 4.0.  Its an interview with Sam Ng ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I watched <a href="http://channel9.msdn.com/posts/CharlieCalvert/CSharp-4-Dynamic-with-Chris-Burrows-and-Sam-Ng/">the video</a> about the new Dynamic feature coming in .Net 4.0.  Its an interview with Sam Ng and Chris Burrows who are the compiler developers who actually helped design and implement the feature.</p>
<blockquote><p>This feature provides enhanced interoperation with dynamic languages such as Ruby and Python, with dynamic models such as Silverlight JavaScript, and with COM objects, particularly those that you find in the Office APIs. With the addition of Dynamic to C# 4.0, it is now much easier to access Microsoft Office APIs from C#.</p></blockquote>
<p>They almost lost me when they said it was for interop &#38; COM (features I hope to avoid), but they brought me back when they mentioned it would be helpful with the HTML DOM and Office (features that keep sucking me back in).</p>
<p>They talked about the <a href="http://www.codeplex.com/dlr">DLR</a> (dynamic language runtime) which helps with dynamic expressions.  Lots of mentions of interop with <a href="http://www.codeplex.com/IronPython" target="_blank">IronPython</a> &#38; <a href="http://www.ruby-lang.org/en/" target="_blank">Ruby</a> so we’ll see if this makes those guys happy or is just a red herring.</p>
<p>There’s going to be a dynamic type: its <a href="http://en.wikipedia.org/wiki/Syntactic_sugar" target="_blank">syntactic sugar</a> for object type (I’m in favor of anything sweet).  Dynamic type will help the compiler optimize, but the syntax will be the same as usual.  This is primarily for COM Interop, Dynamic C#/Reflection, and Office API’s.</p>
<p>Dynamic will allow for working with dynamic objects without all that nasty casting, but you need to know method names in that case, so it sounds like you wont get intellisense <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> , and late bound type errors aren’t pretty either.  While getting the same error at runtime as you would at compile time sounds good, the bad part is that you’ll get an error at runtime.  More debugging…</p>
<p>Another use case is using a dynamic object (essentially an object type) as a parameter and the proper overload being determined at runtime.  Oh joy, imagine all the possibilities.  Now test them all…</p>
<p>On the other hand, if you really need to do this, it sounds like dynamic will help make things easier without much trouble for the developer.  I’m all for that.</p>
<p>I bet one day I’ll use this.  I hope I won’t build something embarrassing or that I regret.  At least I feel smarter listening to these guys talk.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Good News About Your Strong-Willed Child: Achieving Emotional Stability (8/10)]]></title>
<link>http://azoptimist.wordpress.com/2009/11/13/good-news-about-your-strong-willed-child-achieving-emotional-stability-810/</link>
<pubDate>Fri, 13 Nov 2009 10:22:11 +0000</pubDate>
<dc:creator>Arizona&#39;s Optimist</dc:creator>
<guid>http://azoptimist.wordpress.com/2009/11/13/good-news-about-your-strong-willed-child-achieving-emotional-stability-810/</guid>
<description><![CDATA[&#8220;Your intellect may be confused, but your emotions will never lie.&#8221;  (Robert Ebert) Do y]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><em>&#8220;Your intellect may be confused, but your emotions will never lie.&#8221;</em>  (Robert Ebert)</p>
<p style="text-align:justify;">Do you agree or disagree?</p>
<p style="text-align:justify;"><em>We can&#8217;t take our emotions for granted.  They govern our behavior, even when we don&#8217;t realize it.  Immature families, especially when under stress, communicate that feelings are wrong.  Family members react to each other.  The overriding message is, &#8220;You shouldn&#8217;t feel what you&#8217;re feeling.&#8221;</em>  (Dr. Randy Reynolds, child psychologist)</p>
<p style="text-align:justify;">I hear ya!  Emotions—especially strong ones—intensify and magnify issues.  Emotions, at times, finger point—&#8221;It&#8217;s your fault, not mine!&#8221;  </p>
<p style="text-align:justify;"><em>&#8220;Emotions, however, when handled appropriately, can promote positive change.&#8221;</em>  (Dr. Reynolds)</p>
<p style="text-align:justify;">Really?  How?</p>
<ul style="text-align:justify;">
<li>Empathize.  Validate your child&#8217;s feelings but stand firm on your decision: &#8220;It sounds like you&#8217;re frustrated because I won&#8217;t let you wear jeans today.  I know that&#8217;s hard for you, but I&#8217;m not going to change my mind.&#8221;</li>
<li>Discipline, don&#8217;t punish.  Discipline is patient and goal-oriented; punishment is motivated by anger or reactivity.</li>
</ul>
<p style="text-align:justify;"> What else?</p>
<ul style="text-align:justify;">
<li>Affirm, acknowledge, respect, create a sense of belonging, and appreciate each other.  Full emotional tanks give members room to express themselves.  Relax.  Enjoy simple pleasures.</li>
<li>As families mature, they shame each other less; respond to each other more.  They listen to others without reacting.  They assert without antagonizing.  Families set realistic expectations.  They know they&#8217;re interdependent, and flex with the normal stresses of life.</li>
</ul>
<p style="text-align:justify;">&#8220;Learn to own your feelings.  Don&#8217;t blame others when you communicate.  Begin sentences with <em>&#8216;I&#8217;</em> messages, not &#8216;you&#8217;.&#8221; . . . &#8220;&#8216;<em>I feel . . . when . . .&#8217;</em>&#8220;</p>
<p style="text-align:justify;">Empathize, affirm, discipline, &#8220;I&#8221; messages—Thanks Dr. Reynolds! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:justify;"> <a rel="#someid1" href="http://www.stumbleupon.com/submit?url=http://azoptimist.wordpress.com/%26title%3DThe%2BArticle%2BTitle" target="_blank"><img src="http://cdn.stumble-upon.com/images/120x20_thumb_blue.gif" border="0" alt="" /></a><a rel="#someid1" href="http://www.stumbleupon.com/submit?url=http://azoptimist.wordpress.com/%26title%3DThe%2BArticle%2BTitle" target="_blank"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[    مقایسه‌ی زبان‌های برنامه نویسیِ پایتون و جاوا - مختصر و مفید]]></title>
<link>http://dalbablog.wordpress.com/2009/11/12/python-vs-java/</link>
<pubDate>Thu, 12 Nov 2009 14:22:12 +0000</pubDate>
<dc:creator>علی د.ب.</dc:creator>
<guid>http://dalbablog.wordpress.com/2009/11/12/python-vs-java/</guid>
<description><![CDATA[کدهای نوشته شده در پایتون 5 تا 10 برابر مختصرتر هستند. پایتون زبانی است با نوع‌دهی پویا (Dynamic typ]]></description>
<content:encoded><![CDATA[کدهای نوشته شده در پایتون 5 تا 10 برابر مختصرتر هستند. پایتون زبانی است با نوع‌دهی پویا (Dynamic typ]]></content:encoded>
</item>
<item>
<title><![CDATA[Dynamic SQL using CHARINDEX]]></title>
<link>http://dataintegrity.wordpress.com/2009/11/11/charindex/</link>
<pubDate>Wed, 11 Nov 2009 19:18:33 +0000</pubDate>
<dc:creator>dataintegrity</dc:creator>
<guid>http://dataintegrity.wordpress.com/2009/11/11/charindex/</guid>
<description><![CDATA[Recently I was called upon to create a new field from an existing field.  The specifications called ]]></description>
<content:encoded><![CDATA[Recently I was called upon to create a new field from an existing field.  The specifications called ]]></content:encoded>
</item>
<item>
<title><![CDATA[Good News About Your Strong-Willed Child: Firm Foundation. Don't Rescue. Get A Life. (10/10)]]></title>
<link>http://azoptimist.wordpress.com/2009/11/15/good-news-about-your-strong-willed-child-firm-foundation-dont-rescue-get-a-life-1010/</link>
<pubDate>Sun, 15 Nov 2009 12:23:56 +0000</pubDate>
<dc:creator>Arizona&#39;s Optimist</dc:creator>
<guid>http://azoptimist.wordpress.com/2009/11/15/good-news-about-your-strong-willed-child-firm-foundation-dont-rescue-get-a-life-1010/</guid>
<description><![CDATA[It&#8217;s natural for parents to become overly involved in their children.  Family is important; ho]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><em>It&#8217;s natural for parents to become overly involved in their children.  Family is important; however, when parents look for their identity needs to be met in their children &#8211; meaning, purpose, challenge, and joy &#8211; family friction and codependency take over healthy family dynamics. </em> (<a href="http://www.amazon.ca/Good-News-about-Strong-Willed-Child/dp/0310486114">Dr. Randy Reynolds</a>, Child Psychologist)</p>
<p style="text-align:justify;">In other words, parents, don&#8217;t live through your child.  Get a life.  Work on issues, challenges, dreams, goals . . . Hmm . . . Much easier said than done. </p>
<p style="text-align:justify;">Taking risks, changing, (possible) failure . . . they CAN be scary.  It&#8217;s easier to blame someone else (e.g., a strong-willed child) for life&#8217;s difficulties than own up to our deficiencies.</p>
<p style="text-align:justify;">But life&#8217;s lessons we choose to ignore will resurface until we learn.  Do we learn them now, later, or never?</p>
<p style="text-align:justify;">Healthy parents, healthy kids &#8212; happiness!</p>
<p style="text-align:justify;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/a_yW3152Ffc&#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/a_yW3152Ffc&#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 style="text-align:justify;">I want to LIVE my life; my goals.  I want my family, too!  Gonna get &#8216;em all! </p>
<p style="text-align:justify;">CHARGE!!!  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p> <a rel="#someid1" href="http://www.stumbleupon.com/submit?url=http://azoptimist.wordpress.com/%26title%3DThe%2BArticle%2BTitle" target="_blank"><img src="http://cdn.stumble-upon.com/images/120x20_thumb_blue.gif" border="0" alt="" /></a><a rel="#someid1" href="http://www.stumbleupon.com/submit?url=http://azoptimist.wordpress.com/%26title%3DThe%2BArticle%2BTitle" target="_blank"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Good News About Your Strong-Willed Child: Building Positive Dynamics (9/10)]]></title>
<link>http://azoptimist.wordpress.com/2009/11/14/good-news-about-your-strong-willed-child-building-positive-dynamics-910/</link>
<pubDate>Sat, 14 Nov 2009 12:50:21 +0000</pubDate>
<dc:creator>Arizona&#39;s Optimist</dc:creator>
<guid>http://azoptimist.wordpress.com/2009/11/14/good-news-about-your-strong-willed-child-building-positive-dynamics-910/</guid>
<description><![CDATA[How would you describe your family dynamics?  Critical, achievement-oriented, efficient?  Warm, secu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">How would you describe your family dynamics?  Critical, achievement-oriented, efficient?  Warm, secure, caring, stimulating?</p>
<p style="text-align:justify;">Which would you prefer?  Which would you strive towards?</p>
<p style="text-align:justify;">The latter, most likely.  We all thrive in warm and caring environment &#8212; children, especially.</p>
<p style="text-align:justify;">So, how do we get there?</p>
<ul style="text-align:justify;">
<li>Meet Needs—Give attention, security, a sense of belonging, touch, affection, and stimulation.</li>
<li>Know Your Child—Play!  Be a good listener.  Spend deep, quality time.  Enjoy your child(ren).</li>
<li>Believe in Your Child—By doing so, parents provide opportunity and courage for her to fulfill your new, positive expectations.</li>
<li>Allow Independence—Teach your child to think and take personal responsibility.</li>
<li style="text-align:justify;">Remain Calm and Detached—Empty ourselves of anger, resentment, fear, and guilt.</li>
</ul>
<p style="text-align:justify;">Here are concepts in action:</p>
<p style="text-align:justify;"><strong>Child:    </strong>I got a bad evaluation from the teacher today.  If she was any good, I’d ace this class! (<em>Negative invitation</em>)</p>
<p style="text-align:justify;"><strong>Parent: </strong>So she’s good at preventing her students from learning?</p>
<p style="text-align:justify;"><strong>Child:    </strong>Well, she doesn’t help me learn!</p>
<p style="text-align:justify;"><strong>Parent: </strong>So what would help you learn and do well in her class?  (<em>Positive invitation/Problem-solve</em>)</p>
<p style="text-align:justify;"><strong>Child</strong>:    I don’t know, maybe a tutor.  (<em>Response</em>)</p>
<p style="text-align:justify;"><strong>Parent:</strong> We could find a tutor for that class, but what about missed assignments?</p>
<p style="text-align:justify;"><strong>Child:</strong>    Yeah, I’ve missed some.  I’ll finish them.</p>
<p style="text-align:justify;">As always, thanks <a href="http://www.amazon.ca/Good-News-about-Strong-Willed-Child/dp/0310486114">Dr. Reynolds</a>!  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:justify;"> <a rel="#someid1" href="http://www.stumbleupon.com/submit?url=http://azoptimist.wordpress.com/%26title%3DThe%2BArticle%2BTitle" target="_blank"><img src="http://cdn.stumble-upon.com/images/120x20_thumb_blue.gif" border="0" alt="" /></a><a rel="#someid1" href="http://www.stumbleupon.com/submit?url=http://azoptimist.wordpress.com/%26title%3DThe%2BArticle%2BTitle" target="_blank"></a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
