<?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>function &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/function/</link>
	<description>Feed of posts on WordPress.com tagged "function"</description>
	<pubDate>Mon, 28 Dec 2009 16:46:23 +0000</pubDate>

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

<item>
<title><![CDATA[The Object Mapper Domain Model]]></title>
<link>http://neontapir.wordpress.com/2009/12/28/the-object-mapper-domain-model/</link>
<pubDate>Mon, 28 Dec 2009 15:36:08 +0000</pubDate>
<dc:creator>neontapir</dc:creator>
<guid>http://neontapir.wordpress.com/2009/12/28/the-object-mapper-domain-model/</guid>
<description><![CDATA[Last time, I introduced the object mapper. Here, I describe its domain model. The request and respon]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Last time, I <a href="http://neontapir.wordpress.com/2009/12/23/introducing-the-object-mapper/">introduced the object mapper</a>. Here, I describe its domain model.</p>
<p>The request and response objects that require mapping are plain-old objects with properties for the most part, though there are some arrays to contend with. The challenge is that the request and response objects do not have the same structure.</p>
<p>Many of the properties have a one-to-one correspondence. For example, a Name field on one request object may align with a Name property on the DataStore request. In some cases, though, the property names are different. </p>
<p>Other properties share a one-to-many association, so the contents of the source object must be copied to several target properties. And yet other pesky properties share a many-to-one association. For example, a Java application&#8217;s request might have address, city, state, and ZIP code as separate fields, but they must be combined into a single property of the DataStore request.</p>
<p>Here&#8217;s an example of a simple mapping document for a Foo object with Name and Age properties:</p>
<p>&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;<br />
&#60;Maps&#62;<br />
	&#60;Source ID=&#34;source1&#34; Type=&#34;Foo&#34;&#62;<br />
		&#60;Target ID=&#34;target1&#34; Type=&#34;Foo&#34;&#62;<br />
			&#60;Element ID=&#34;Name&#34; Source=&#34;Name&#34; Target=&#34;Name&#34; /&#62;<br />
			&#60;Element ID=&#34;Age&#34; Source=&#34;Age&#34; Target=&#34;Age&#34; /&#62;<br />
		&#60;/Target&#62;<br />
	&#60;/Source&#62;<br />
&#60;/Maps&#62;</p>
<p>There is a Source, which describes a source object. That Source object can be converted into a Target object. Objects have Elements, which describe either properties or fields. Each element has its own source and target attributes to describe what property of the source corresponds to what property of the target.</p>
<p>So far, so good. Let&#8217;s say, though, that the source request object doesn&#8217;t define an Age property, but it&#8217;s required on the target request. For cases like this, I need the capability to inject a value:</p>
<p>	&#60;Source ID=&#38;&#34;source1&#38;&#34; Type=&#38;&#34;{0}&#38;&#34;&#62;<br />
		&#60;Target ID=&#38;&#34;target1&#38;&#34; Type=&#38;&#34;{0}&#38;&#34;&#62;<br />
			&#60;Element ID=&#38;&#34;Name&#38;&#34; Source=&#38;&#34;Name&#38;&#34; Target=&#38;&#34;Name&#38;&#34; /&#62;<br />
			&#60;Inject Target=&#38;&#34;Age&#38;&#34;&#62;37&#60;/Inject&#62;<br />
		&#60;/Target&#62;<br />
	&#60;/Source&#62;</p>
<p>The Inject node allows me to specify the value I&#8217;d like to inject, in this case any target object would have an Age of 37.</p>
<p>This poses a challenge, because that &#8220;37&#8243; is a string by virtue of being XML. .NET doesn&#8217;t offer a way to implicitly make that &#8220;37&#8243; into the number 37. So, I need a way to convert primitive objects, objects with no properties:</p>
<p>    &#60;Object Source=&#34;System.String&#34; Target=&#34;System.Int32&#34;&#62;<br />
        &#60;Function Type=&#34;System.Int32&#34; Method=&#34;Parse&#34; /&#62;<br />
	&#60;/Object&#62;</p>
<p>The Function node defines a method to invoke when converting the object. It&#8217;s a valid child of the Element node as well, so a property can be converted by a function as well. </p>
<p>Functions can refer to instance methods, which are called against an instance of a type. They can also refer to static methods, which belong to the type itself. One can even specify arguments, for cases like Substring where I might only want the first few letters of a string:</p>
<p>			&#60;Element ID=&#34;Name&#34; Source=&#34;Name&#34; Target=&#34;Name&#34;&#62;<br />
				&#60;Function Type=&#34;System.String&#34; Method=&#34;Substring&#34;&#62;<br />
					&#60;Argument Type=&#34;System.Int32&#34;&#62;0&#60;/Argument&#62;<br />
					&#60;Argument Type=&#34;System.Int32&#34;&#62;3&#60;/Argument&#62;<br />
				&#60;/Function&#62;<br />
            &#60;/Element&#62;</p>
<p>Sometimes, I may want to convert an array of one type to an array of another by converting each of its members individually by use of the ApplyToEachElement flag:</p>
<p>    &#60;Object Source=&#34;System.String[]&#34; Target=&#34;System.Int32[]&#34; ApplyToEachElement=&#34;true&#34;&#62;<br />
        &#60;Function Type=&#34;System.Int32&#34; Method=&#34;Parse&#34; /&#62;<br />
	&#60;/Object&#62;</p>
<p>Here, the conversion engine will take an array of strings and convert it to an array of integers by calling int.Parse with each string as an argument.</p>
<p>That introduces most of the domain concepts of the object mapper. Next post will delve into the components that comprise the object mapper itself.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Call Oracle Function From Java program]]></title>
<link>http://jsumon.wordpress.com/2009/12/27/call-oracle-function-from-java-program/</link>
<pubDate>Sun, 27 Dec 2009 10:50:17 +0000</pubDate>
<dc:creator>sumon</dc:creator>
<guid>http://jsumon.wordpress.com/2009/12/27/call-oracle-function-from-java-program/</guid>
<description><![CDATA[Create an oracle function: Suppose you have created an oracle function by executing the following co]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2>Create an oracle function:</h2>
<p>Suppose you have created an oracle function by executing the following code in oracle<br />
<code><br />
create or replace FUNCTION "FUN_GET_EMPLOYEE_NAME "( P_EMPLOYEE_ID           VARCHAR2<br />
)<br />
RETURN VARCHAR2<br />
AS PRAGMA AUTONOMOUS_TRANSACTION;<br />
…………………………………………<br />
Write rest of code to return data.<br />
…………………………………………<br />
</code></p>
<h2>Function description:</h2>
<p>This pl/sql code will simply create a function named &#8220;FUN_GET_EMPLOYEE_NAME” which will take a VARCHAR2 input parameter as P_EMPLOYEE_ID and return a VARCHAR2 data i.e. Employee name.</p>
<h2>Java program to access this oracle function and get the return data from this oracle function:</h2>
<p>Connect to oracle data base by modifying the following code:<br />
<code><br />
try {<br />
Class.forName("oracle.jdbc.driver.OracleDriver");<br />
</code><code>java.sql.Connection connection = java.sql.DriverManager DriverManager.getConnection("jdbc:oracle:thin:@"+ "DBServerIP/localhost"+":1521:DBName","DBUser", "DBPassword");<br />
} catch (Exception e) {<br />
e.printStackTrace();<br />
}<br />
</code><br />
Now create a java.sql.CallableStatement by using this java.sql.Connection to call the oracle function as follows:<br />
<code><br />
java.sql.CallableStatement cstmt = connection.prepareCall("{?=call FUN_GET_EMPLOYEE_NAME (?)}");<br />
</code></p>
<p>As our function needs one input parameter to call the oracle function so here I gave (?) to indicate it, if you need to pass more parameters just adjusts it with your parameters number.</p>
<p>Now register the out parameter of the oracle function if any as follows:<br />
<code><br />
cstmt.registerOutParameter(1,  java.sql.Types.VARCHAR);<br />
</code><br />
If your function return more parameter just add them sequentially 2, 3 …</p>
<p>Now add the input parameters of oracle function in your java code as follow:<br />
<code><br />
cstmt.setString(2, “EMPLOYEE_ID”);<br />
</code></p>
<p>Note here we added one parameter because our oracle function take one parameter as input and index is set to 2 as we have already set our oracle function out parameter to index 1 in java code above. You can also set parameters as you needed and with different data type. You can also use parameter name instead of index cstmt.setString(parameterName, x)or cstmt.setInt(parameterName, x) whatever you want, In this case you should set all parameter by parameter name otherwise set all parameter by index.</p>
<p>Now call the execute function of CallableStatement to execute this statement as follows:<br />
<code><br />
cstmt.execute();<br />
</code><br />
You can get return data from your oracle function in java code as follows:<br />
<code><br />
cstmt.getString(1)<br />
</code><br />
Here 1 mean the out parameter index.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Home is Where Your Heart Smiles]]></title>
<link>http://cjcan.wordpress.com/2009/12/27/home-is-where-your-heart-smiles/</link>
<pubDate>Sun, 27 Dec 2009 01:57:04 +0000</pubDate>
<dc:creator>C J Cangianelli, Life Coach/Columnist/Motivational Speaker</dc:creator>
<guid>http://cjcan.wordpress.com/2009/12/27/home-is-where-your-heart-smiles/</guid>
<description><![CDATA[Most of us spend more time at home than anywhere else. It should feel like our sanctuary &#8211; a p]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="body">
<p>Most of us spend more time at home than anywhere else. It should feel like our sanctuary &#8211; a place to unwind, rejuvenate and be ourselves. No matter if your home is owned, rented, a rancher, townhouse or studio apartment, it is yours and should make you smile. It should contain the things you love, the things you need and show off your favorite colors and belongings. It should also smell fresh, be free of dust, clutter-free and organized.</p>
<p>Our homes should be a reflection of our personality and lifestyle too. What is your style? Are you quirky, natural, beachy, adventurous, romantic, casual, country, shabby chic, formal, eclectic or a minimalist? Look around at your favorite belongings (take a peek in your closest too) to see if themes emerge- colors, textures, prints. If you are unsure, look through magazines and pull out pics that are appealing.</p>
<p>How do you need your home to function? Will there be small children, lots of animals, frequent parties or a wheelchair to move about? Consider an open floor plan, easy-clean flooring, and scotch- guarding your furniture.</p>
<p>Think about your values. Do you value lots of time with friends and family? Peace of mind? Eating au natural? Time alone? Plan a comfortable guest room, a space for yoga or meditation, a garden and a quiet reading nook or deep soaking tub to get away.</p>
<p>Go room by room and decide if the room is functional for you. Do you really need three bedrooms and a formal dining room when you could really use an office and an exercise room? If you are an artist, designate space to create. Same if you are a writer or caterer or gardener. Look at every object small and large. Ask yourself if you love it, need it, if it makes you happy/peaceful and if it reflects the current you. Don&#8217;t feel obligated to keep every item gifted to you.</p>
<p>How do you want your home to feel? Darker colors will make it feel cozy, lighter colors will open it up. Stand in front of the paint swatch section at Lowe&#8217;s and select colors you are attracted to. There are no wrong color choices. If you are afraid of color, paint just one wall instead. If you are renting and painting is not an option, choose art to bring color to your walls.</p>
<p>Art comes in many forms such as pricey signature pieces but you can make your own. Purchase a canvas (or make your own) and use paint left over from other home projects. Splatter it and finger paint and call it &#8220;modern art&#8221;. Frame the kids&#8217; artwork too.</p>
<p>Display the things you love. No matter what you love, seeing them will put a smile on your face. Treasured family photos, maps from exotic vacations, concert stubs and your grandmother&#8217;s collection of antique jewelry will give your home that &#8220;homey&#8221; touch. Don&#8217;t forget the importance of pleasing all of your senses. Add a soft throw to the couch for those chilly evenings, a water fountain for soothing background music and fresh smells in the form of potpourri or candles.</p>
<p>You need not hire a professional to decorate for you. Your home does not need to look like it came out of a magazine. If you compare your rooms to the professionally staged, you will cause yourself undue stress. Keep it simple and clean and surround yourself with fabulous things and you&#8217;ll be on your way to living the good life.</p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Technology and magic]]></title>
<link>http://ictheworld.wordpress.com/2009/12/26/technology-and-magic/</link>
<pubDate>Sat, 26 Dec 2009 08:19:10 +0000</pubDate>
<dc:creator>hotrao</dc:creator>
<guid>http://ictheworld.wordpress.com/2009/12/26/technology-and-magic/</guid>
<description><![CDATA[Any smoothly functioning technology will have the appearance of magic. Clarke]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Any smoothly functioning technology will have the appearance of magic.</p>
<p>Clarke</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Anti-Tekne: Passion]]></title>
<link>http://americanhardmind.wordpress.com/2009/12/26/anti-tekne-passion/</link>
<pubDate>Sat, 26 Dec 2009 06:07:11 +0000</pubDate>
<dc:creator>americanhardmind</dc:creator>
<guid>http://americanhardmind.wordpress.com/2009/12/26/anti-tekne-passion/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://americanhardmind.wordpress.com/files/2009/12/passion.jpg"><img class="aligncenter size-full wp-image-27" title="Passion" src="http://americanhardmind.wordpress.com/files/2009/12/passion.jpg" alt="Through Marble" width="450" height="303" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[What the Helvetica!]]></title>
<link>http://aslittledesign.wordpress.com/2009/12/26/what-the-helvetica/</link>
<pubDate>Fri, 25 Dec 2009 23:08:21 +0000</pubDate>
<dc:creator>hadialaeddin</dc:creator>
<guid>http://aslittledesign.wordpress.com/2009/12/26/what-the-helvetica/</guid>
<description><![CDATA[&#8230; Passing by a friend&#8217;s screen the other day I caught a glimpse of big bold black type s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>&#8230;</p>
<p>Passing by a friend&#8217;s screen the other day I caught a glimpse of big bold black type set in helvetica, on a white background, and a picture of a mobile phone, that phone was <a href="http://www.sonyericsson.com/talktexttime/en-gb/product/">Sony Ericsson Xperia Pureness</a>.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://www.sonyericsson.com/cws/file/1.675116.1255522910/Xperia_Pureness_see-the-product-1.jpg" alt="" width="500" height="241" /></p>
<p>Now as far as product design thinking and strategy behind this phone, this soon to be a trend move towards simplicity <em>is</em> a smart move indeed. But what concerns me is that Sony Ericsson didn&#8217;t bother really work on the form rather than add the gimmicky transparent screen&#8230; It&#8217;s a pretty phone, and when I say form I mean all aspects of actually shaping the phone affected by the mere fact that it&#8217;s only a phone and nothing else&#8230;</p>
<p>When you have only three main features, like the say; Talk, Text, and tell Time! those are pretty simple paramaters for a product to be really innovative and unique&#8230; Because it&#8217;s going have one hell of a fight in front of it! At this day and age of technological over load, only a small number of people want something so downright focused, so &#8220;purely&#8221; functional in a single minded way!</p>
<p>In order to convince more than those few something need to be done, and that something isn&#8217;t exactly what this campaign is doing! That&#8217;s not a bad thing at all because I think this campaign might just be the best I&#8217;ve seen in a while, This is_like the product_ a very focused campaign with a clear understanding of the target audience&#8230; All ads have one information based on date, location and size of ad, Bold helvetica, on white background&#8230; How awesome is that!!</p>
<p>It&#8217;s freaky how many things I like are stuffed in there&#8230; I mean I would not change one thing with the campaign, the service offerings, the online presence&#8230; Sadly what I would change is the product itself&#8230;</p>
<p>But again, just look how awesome these ads look!</p>
<p style="text-align:center;"><img class="aligncenter" src="http://www.sonyericsson.com/talktexttime/en-gb/wp-content/themes/pureness/images/campaign/lightbox/Paris_02.jpg" alt="" width="500" height="650" /></p>
<p>Check it out&#8230; [<a href="http://www.sonyericsson.com/talktexttime/en-gb/campaign/">Click here for full gallery</a>]</p>
<p>&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Neuromuscular Problems Affect Respiratory Muscle Strength Independently of Scoliosis In Adults Researchers Suggest]]></title>
<link>http://sportsrehabilitation.wordpress.com/2009/12/25/neuromuscular-problems-affect-respiratory-muscle-strength-independently-of-scoliosis-in-adults-researchers-suggest/</link>
<pubDate>Fri, 25 Dec 2009 16:24:00 +0000</pubDate>
<dc:creator>Isaiah</dc:creator>
<guid>http://sportsrehabilitation.wordpress.com/2009/12/25/neuromuscular-problems-affect-respiratory-muscle-strength-independently-of-scoliosis-in-adults-researchers-suggest/</guid>
<description><![CDATA[Researchers do show that a multitude of individuals with neuromuscular diseases had reduced respirat]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Researchers do show that a multitude of individuals with neuromuscular diseases had reduced respiratory muscle strength and pulmonary function compared with a healthy control group according to a new study which was also examining how scoliosis distressed lung function. </p>
<p>In effect, neuromuscular disorders are noted to lead to respiratory muscle weakness and lung volume loss but the effects of scoliosis on lung function are not known. Thus, this was the central basis of this study. </p>
<p>For this and many other reasons, neuromuscular diseases come about when the neurons or nerves that send signalsmessages that control voluntary muscles startto become unhealthy and die. As a result of this damage to communication between the nervous system and muscles, the muscles begin to atrophy and weaken. Not to mention, this may lead to various symptoms afflicting heart function including twitching, aches, joint and mobility problems and many more. </p>
<p>The definition of scoliosis is an abnormal curvature of the spinal column that is generally marked by one shoulder, side of the rib cage or hip appearing higher than the other shoulder, the body leaning to one side, or one leg looking shorter than the other. Keep in mind, back pain is not usually known to be a symptom of scoliosis. </p>
<p>According to data from the study, around 20 patients with neuromuscular ailments and scoliosis, 20 patients with neuromuscular disorders without scoliosis, and about 25 similar healthy controls were subjected to distinct tests comparing their respiratory muscle strength and pulmonary function, which basically measure how well the lungs bring in and release air and move this oxygen throughout the body. </p>
<p>According to the study’s findings, people with neuromuscular disorders, regardless of having or not having scoliosis, had diminished respiratory muscle strength when compared to the healthy subjects. Moreover, adults with neuromuscular concerns and scoliosis had extremely lower pulmonary function scores than not only the control group of healthy individuals but the adults who had neuromuscular ailments but were without scoliosis. </p>
<p>Research has shown that this could mean that the effects of neuromuscular issues on respiratory function are independent of scoliosis and suggested that clinicians should be aware of the possibility of compromised respiratory function when treating adults with neuromuscular conditions.</p>
<p>
</p>
<p>
</p>
<p><a href="http://www.physicaltherapy.org/">Physical Therapist</a></p>
<p><a href="https://gethealthy.infusionsoft.com/go/7gifts/izldafox/">Free Gifts from LoseTheBackPain.com</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Neuromuscular Problems Affect Respiratory Muscle Strength Independently of Scoliosis In Adults Researchers Suggest]]></title>
<link>http://a2zarticles.wordpress.com/2009/12/25/neuromuscular-problems-affect-respiratory-muscle-strength-independently-of-scoliosis-in-adults-researchers-suggest/</link>
<pubDate>Fri, 25 Dec 2009 16:24:00 +0000</pubDate>
<dc:creator>Isaiah</dc:creator>
<guid>http://a2zarticles.wordpress.com/2009/12/25/neuromuscular-problems-affect-respiratory-muscle-strength-independently-of-scoliosis-in-adults-researchers-suggest/</guid>
<description><![CDATA[Researchers do show that a multitude of individuals with neuromuscular diseases had reduced respirat]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Researchers do show that a multitude of individuals with neuromuscular diseases had reduced respiratory muscle strength and pulmonary function compared with a healthy control group according to a new study which was also examining how scoliosis distressed lung function. </p>
<p>In effect, neuromuscular disorders are noted to lead to respiratory muscle weakness and lung volume loss but the effects of scoliosis on lung function are not known. Thus, this was the central basis of this study. </p>
<p>For this and many other reasons, neuromuscular diseases come about when the neurons or nerves that send signalsmessages that control voluntary muscles startto become unhealthy and die. As a result of this damage to communication between the nervous system and muscles, the muscles begin to atrophy and weaken. Not to mention, this may lead to various symptoms afflicting heart function including twitching, aches, joint and mobility problems and many more. </p>
<p>The definition of scoliosis is an abnormal curvature of the spinal column that is generally marked by one shoulder, side of the rib cage or hip appearing higher than the other shoulder, the body leaning to one side, or one leg looking shorter than the other. Keep in mind, back pain is not usually known to be a symptom of scoliosis. </p>
<p>According to data from the study, around 20 patients with neuromuscular ailments and scoliosis, 20 patients with neuromuscular disorders without scoliosis, and about 25 similar healthy controls were subjected to distinct tests comparing their respiratory muscle strength and pulmonary function, which basically measure how well the lungs bring in and release air and move this oxygen throughout the body. </p>
<p>According to the study’s findings, people with neuromuscular disorders, regardless of having or not having scoliosis, had diminished respiratory muscle strength when compared to the healthy subjects. Moreover, adults with neuromuscular concerns and scoliosis had extremely lower pulmonary function scores than not only the control group of healthy individuals but the adults who had neuromuscular ailments but were without scoliosis. </p>
<p>Research has shown that this could mean that the effects of neuromuscular issues on respiratory function are independent of scoliosis and suggested that clinicians should be aware of the possibility of compromised respiratory function when treating adults with neuromuscular conditions.</p>
<p>
</p>
<p>
</p>
<p><a href="http://www.physicaltherapy.org/">Physical Therapist</a></p>
<p><a href="https://gethealthy.infusionsoft.com/go/7gifts/izldafox/">Free Gifts from LoseTheBackPain.com</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Neuromuscular Problems Affect Respiratory Muscle Strength Independently of Scoliosis In Adults Researchers Suggest]]></title>
<link>http://physicaltherapyforsciatica.wordpress.com/2009/12/24/neuromuscular-problems-affect-respiratory-muscle-strength-independently-of-scoliosis-in-adults-researchers-suggest/</link>
<pubDate>Thu, 24 Dec 2009 16:24:00 +0000</pubDate>
<dc:creator>Isaiah</dc:creator>
<guid>http://physicaltherapyforsciatica.wordpress.com/2009/12/24/neuromuscular-problems-affect-respiratory-muscle-strength-independently-of-scoliosis-in-adults-researchers-suggest/</guid>
<description><![CDATA[Researchers do show that a multitude of individuals with neuromuscular diseases had reduced respirat]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Researchers do show that a multitude of individuals with neuromuscular diseases had reduced respiratory muscle strength and pulmonary function compared with a healthy control group according to a new study which was also examining how scoliosis distressed lung function.</p>
<p>In effect, neuromuscular disorders are noted to lead to respiratory muscle weakness and lung volume loss but the effects of scoliosis on lung function are not known. Thus, this was the central basis of this study.</p>
<p>For this and many other reasons, neuromuscular diseases come about when the neurons or nerves that send signalsmessages that control voluntary muscles startto become unhealthy and die. As a result of this damage to communication between the nervous system and muscles, the muscles begin to atrophy and weaken. Not to mention, this may lead to various symptoms afflicting heart function including twitching, aches, joint and mobility problems and many more.</p>
<p>The definition of scoliosis is an abnormal curvature of the spinal column that is generally marked by one shoulder, side of the rib cage or hip appearing higher than the other shoulder, the body leaning to one side, or one leg looking shorter than the other. Keep in mind, back pain is not usually known to be a symptom of scoliosis.</p>
<p>According to data from the study, around 20 patients with neuromuscular ailments and scoliosis, 20 patients with neuromuscular disorders without scoliosis, and about 25 similar healthy controls were subjected to distinct tests comparing their respiratory muscle strength and pulmonary function, which basically measure how well the lungs bring in and release air and move this oxygen throughout the body.</p>
<p>According to the study’s findings, people with neuromuscular disorders, regardless of having or not having scoliosis, had diminished respiratory muscle strength when compared to the healthy subjects. Moreover, adults with neuromuscular concerns and scoliosis had extremely lower pulmonary function scores than not only the control group of healthy individuals but the adults who had neuromuscular ailments but were without scoliosis.</p>
<p>Research has shown that this could mean that the effects of neuromuscular issues on respiratory function are independent of scoliosis and suggested that clinicians should be aware of the possibility of compromised respiratory function when treating adults with neuromuscular conditions.</p>
<p><a href="http://www.phoenixphysicaltherapy.org/">Phoenix Physical Therapy</a></p>
<p><a href="https://gethealthy.infusionsoft.com/go/7gifts/izldafox/">Free Gifts from LoseTheBackPain.com</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Literature and the Mass-Produced Image]]></title>
<link>http://nyugeoconference.wordpress.com/2009/12/24/literature-and-the-mass-produced-image/</link>
<pubDate>Thu, 24 Dec 2009 09:39:11 +0000</pubDate>
<dc:creator>nyugeoconference</dc:creator>
<guid>http://nyugeoconference.wordpress.com/2009/12/24/literature-and-the-mass-produced-image/</guid>
<description><![CDATA[CALL FOR PAPERS Conference Date: Friday, April 2, 2010 Deadline for Abstracts: February 1, 2010 New ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><a href="http://nyugeoconference.wordpress.com/files/2009/12/nyu-banner-logo-011.jpg"><img class="size-full wp-image-18 aligncenter" title="nyu-banner-logo-01" src="http://nyugeoconference.wordpress.com/files/2009/12/nyu-banner-logo-011.jpg" alt="" width="468" height="84" /></a></p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;"><strong>CALL FOR PAPERS</strong></p>
<p style="text-align:center;"><strong><a href="http://nyugeoconference.wordpress.com/files/2009/12/muybridge_race_horse_gallop.jpg"><img class="size-full wp-image-5 aligncenter" title="Muybridge_race_horse_gallop" src="http://nyugeoconference.wordpress.com/files/2009/12/muybridge_race_horse_gallop.jpg" alt="" width="449" height="330" /></a><br />
</strong></p>
<p><strong><span style="text-decoration:underline;"> </span></strong></p>
<p><strong> </strong></p>
<p><strong>Conference Date: Friday, April 2, 2010</strong></p>
<p><strong>Deadline for Abstracts: February 1, 2010</strong></p>
<p>New   York  University’s English Department will host a graduate student conference exploring the fate of literature in the age of the reproducible image. The nineteenth-century emergence of photography, a medium which Walter Benjamin referred to as “the first truly revolutionary means of reproduction,” coupled with the subsequent development of the motion picture, irrevocably shook not only the art world, but also the literary. This conference aims to uncover the affinities, negotiations, and interrelations between literary texts and visual media like photography, cinema, and the more recent medium of digital imaging and video. Investigating these issues from the perspectives of both literary and visual culture, this one-day event aims to bring together new work being produced by graduate students studying literature, cinema studies, visual culture, the history of media, and social historiography.</p>
<p>We will be focusing on a number of related questions including (but not limited to): How has the development of visual media affected literary aesthetics? In what sense has the vocabulary of film and photography been appropriated from and by literary culture? How do motion and pacing – elements inherent to cinema and the concept of the reproducible image – reveal themselves in creating and staging action, plot, and character development in narrative?</p>
<p>Other possible topics include:</p>
<ul>
<li>Photographic representation in literary texts</li>
<li>Literature as motion: imagery and the mind’s eye, storytelling and motion</li>
<li>Cinema, literature, fragmentation and non-linear chronology</li>
<li>Descriptions of photographs within literary works</li>
<li>The ‘urban’ and its centrality to cross-media works</li>
<li>Modernist critique/appropriation of visual culture</li>
<li>Art, the avant-garde, and experimental motion/stop-motion</li>
<li>The function of written text in a visual medium</li>
<li>Depictions of movies and movie-going in literary narrative</li>
<li>Film vs. Literature: ‘high art’ in the era of mass culture</li>
</ul>
<p>Please send abstracts (400 words) to <a href="mailto:nyugeo.conference@nyu.edu">nyugeo.conference@nyu.edu</a> by <strong>FEBRUARY 1, 2010</strong>. Abstracts should include your name, contact information, paper title, and a short bio with your institution &#38; department affiliation and year in graduate school. Please specify any audio-visual requirements. Panel proposals are also welcome for panels comprised of 3-4 participants; in your proposals, please include panel title and brief description (limit 500 words) as well as a list of papers with corresponding abstracts and speaker information.</p>
<p><strong>Conference organizers</strong>: Yair Solan, Kathryn Bullerdick and Blevin Shelnutt.</p>
<p>This conference is sponsored by the New York University Department of English, with financial support provided by the NYU Graduate School of Arts and Science.</p>
<p><a href="http://nyugeoconference.wordpress.com/files/2009/12/800px-washington_square_arch_by_david_shankbone3.jpg"><img class="size-full wp-image-23 alignnone" title="800px-Washington_Square_Arch_by_David_Shankbone" src="http://nyugeoconference.wordpress.com/files/2009/12/800px-washington_square_arch_by_david_shankbone3.jpg" alt="" width="509" height="382" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Life: F(t)]]></title>
<link>http://vamzee.wordpress.com/2009/12/24/life1/</link>
<pubDate>Thu, 24 Dec 2009 07:42:18 +0000</pubDate>
<dc:creator>Vamsi Krishna</dc:creator>
<guid>http://vamzee.wordpress.com/2009/12/24/life1/</guid>
<description><![CDATA[&#8220;What is it, that u require the most?&#8221;, asked a friend of mine once solemnly. Perhaps th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>&#8220;What is it, that u require the most?&#8221;, asked a friend of mine once solemnly. Perhaps the question being inadvertent and spiritualistic, for a serious response than a materialistic one. We, my 3 usually close chums and I now looked with a raised eyebrow compartmentalizing his question and groping the mind for an answer. We (excluding the host, 3) burst exuberantly with different answers; one, a lavish home in the next street which might cost a million dollar;another, a sports bike and I, a huge refractor telescope(which would, in fact cost a fortune) and chuckled to myself. Now as we looked at the host, he eyed us with an expressionless countenance and then brooding like a sage, said,&#8221;Dont any of u feel the need for TIME?&#8221;</p>
<p><a href="http://vamzee.wordpress.com/files/2009/12/time.jpg"><img class="aligncenter size-full wp-image-5" title="Time" src="http://vamzee.wordpress.com/files/2009/12/time.jpg" alt="" width="388" height="309" /></a></p>
<p>The realization then slowly dawned on us as I started to consider his view; Time was indeed the need of the hour!. Recollecting in a flash Einstein&#8217;s Space-Time fabric and the importance of time in his relativistic theory in specific and Physics in general, I also recognized that its utmost importance also extends to one&#8217;s Life. Perhaps every incident,</p>
<p>1.takes place at a certain time(t1)</p>
<p>2.till a particular time(t2)</p>
<p>3.in a time duration (Δ<em>t</em>=t2 &#8211; t1; let us say <em>dt</em>)</p>
<p>So, right from the birth, our clock starts ticking and modestly ticks away whenever u look it, callously, without a pinch of sympathy duly performing its duty assigned to it by the forces of nature. I&#8217;m not lecturing the importance of time or its judicious usage or &#8230;, but presenting a rational perspective accompanied with a scientific tinge. Duly, it tops the matters of paramount concern in our day-to-day life and life on whole! From this, we can say that,</p>
<p style="text-align:center;">Life (L)= Factor or function (ƒ) of time (t)</p>
<p style="text-align:center;">=&#62; L = ƒ (t)</p>
<p style="text-align:left;">Since we are concerned about the duration of the incident that happens in our life, <em>dt</em> , i.e., (t2 &#8211; t1), re-writing above equation as,</p>
<p style="text-align:center;">=&#62; <strong>L = ∫ ƒ (t)</strong><em><strong>dt</strong> &#8212;&#8212; </em>Equation 1</p>
<p style="text-align:left;">The above equation showcases the intricate* relation between Life and time in a simple fashion thus demonstrating that summing up each and every incident that happens through one&#8217;s life, i.e., to integrate all the scenes in life, duly with respect to (w.r.t) time! The one final frontier, the Big Brother of all occassions, TIME!</p>
<p style="text-align:left;">(* &#8211; Many out there, might not accept the intricate realtion and I respect their views!)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lung Function Testing]]></title>
<link>http://carrows.wordpress.com/2009/12/23/lung-function-testing/</link>
<pubDate>Wed, 23 Dec 2009 21:58:50 +0000</pubDate>
<dc:creator>Arrows</dc:creator>
<guid>http://carrows.wordpress.com/2009/12/23/lung-function-testing/</guid>
<description><![CDATA[As part of the routine of hospital visits I&#8217;m also called for thorough lung function tests. Ea]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://carrows.wordpress.com/files/2009/12/img00032-20091204-1350.jpg"><img class="alignleft size-full wp-image-97" title="Lung Function Chamber" src="http://carrows.wordpress.com/files/2009/12/img00032-20091204-1350.jpg" alt="" width="468" height="351" /></a></p>
<p>As part of the routine of hospital visits I&#8217;m also called for thorough <strong>lung function tests</strong>. Each clinic visit my lung function is tested but it&#8217;s done on a small hand held computer, about the size of a VHS cassette tape. Whilst this lung function device outclasses the retro trolley based Spirometer machine, it isn&#8217;t overly accurate and doesn&#8217;t take in to account pressure amongst other things.</p>
<p>The picture to the left, shows me inside the lung function<strong> chamber</strong> where they measure how the lungs cope against a resistance, thus replicating a <strong>pressurised environment</strong>.</p>
<p>The gizmo, on this bit of kit, which creates the pressure, is on the far left where the little white cap is sitting on a diagonal angle. I have to make a tight seal around the mouthpiece and to prevent any air loss I wear the nose pegs.</p>
<p>I am told to breathe normally, a little difficult when you are thinking about how you are breathing wouldn&#8217;t you say? As I start to take the third breath inward, the machine prevents me from taking that breath but I am still told to breathe normally. I breathe in and out for a further two cycles. Difficult, isn&#8217;t it? The breaths taken, which are prevented, measure how my lungs cope against pressure.</p>
<p>All of the chamber tests are done with the door closed, so I am sealed in. It gets pretty hot in there after just a few minutes!</p>
<p>Well there are two main results obtained both in the lung function lab and at each clinic visit and these are known as<strong> Forced Expiratory Volume (FEV1)</strong> and <strong>Forced Vital Capacity (FVC)</strong>.</p>
<ul>
<li><strong>FEV1</strong> &#8211; Measures how strong the lungs are over 1 second of expelling air (litres)</li>
<li><strong>FVC</strong> &#8211; Measures the total lung capacity in the amount of overall expelled air until breathless (litres)</li>
</ul>
<p>I measured <strong>5.10</strong> and<strong> 6.20</strong>, FEV1 and FVC respectively. To make heads and tails of these measurements they are compared to the general population who conform to average fitness, my age and height. So how did my results compare to someone who is 23, of average fitness and about 6.1&#8242;? Well an average male fitting my credentials is predicted to reach 4.80 over 5.80, so I about<strong> 105%</strong> and <strong>109%</strong> above an average male. Naturally to be told this nugget of information I was over the moon as I&#8217;m about as fit as I have ever been. Perfect scenario for me to start travelling!</p>
<p>Below is the <strong>old spirometer, </strong>the <strong>Vitalo</strong> as it is known, and then the <strong>new spirometer</strong>:                                                                                                                    </p>
<p><a href="http://carrows.wordpress.com/files/2009/12/spiroold.jpg"><img class="alignleft size-medium wp-image-99" title="Old Spirometer" src="http://carrows.wordpress.com/files/2009/12/spiroold.jpg?w=300" alt="" width="300" height="235" /></a></p>
<p><a href="http://carrows.wordpress.com/files/2009/12/spironew1.jpg"></a><a href="http://carrows.wordpress.com/files/2009/12/spironew1.jpg"><img class="alignleft size-medium wp-image-101" title="New Spirometer" src="http://carrows.wordpress.com/files/2009/12/spironew1.jpg?w=300" alt="" width="300" height="279" /></a><a href="http://carrows.wordpress.com/files/2009/12/spironew1.jpg"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Santa teaches surjective, injective and bijective functions]]></title>
<link>http://learntofish.wordpress.com/2009/12/23/santa-teaches-surjective-injective-and-bijective-functions/</link>
<pubDate>Wed, 23 Dec 2009 19:34:22 +0000</pubDate>
<dc:creator>Ed</dc:creator>
<guid>http://learntofish.wordpress.com/2009/12/23/santa-teaches-surjective-injective-and-bijective-functions/</guid>
<description><![CDATA[In this post Santa Claus teaches us what surjective, injective and bijective functions are. Don]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://learntofish.wordpress.com/files/2009/12/santa_math3.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/santa_math3.jpg?w=600" alt="" title="Santa_math" width="600" height="410" class="aligncenter size-medium wp-image-659" /></a></p>
<p>In this post Santa Claus teaches us what surjective, injective and bijective functions are. Don&#8217;t expect to learn this after only one read. It takes some time to internalize these notions. I suggest you learn first what surjective means and when you are comfortable with it, move on to injective and bijective. </p>
<blockquote><p><strong>Part 1 &#8211; Surjective Functions</strong></p></blockquote>
<p>So one day before Christmas Eve Santa thinks of whom to give presents. His team of<!--more--> elves works out a <em>plan</em> that tells him how to distribute the presents. Instead of plan, we will say <em>function</em>. The first function looks like this: </p>
<div id="attachment_667" class="wp-caption aligncenter" style="width: 310px"><a href="http://learntofish.wordpress.com/files/2009/12/0_not_a_function2.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/0_not_a_function2.jpg?w=300" alt="" title="0_not_a_function" width="300" height="205" class="size-medium wp-image-667" /></a><p class="wp-caption-text">Santa doesn't like this plan because it is not a function</p></div>
<p>But Santa rejects this plan. He says: &#8220;This is not a function. For every present I must know whom I must give it. But the green one is left alone. What shall I do with it?&#8221;<br />
The elves quickly work out another plan and come up with this (Figure A):</p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/a_surjective1.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/a_surjective1.jpg?w=300" alt="" title="A_surjective" width="300" height="205" class="aligncenter size-medium wp-image-669" /></a></p>
<p>This time it is a function. Moreover, it is a <em>surjective function</em>  because every person on the right gets a gift. I always think of the French word &#8217;sur&#8217; which translates to the English word &#8216;on&#8217;. Surjective functions have the property that they hit every target on the right. Or you can also say that the right side is entirely covered by the function.</p>
<p>The following function is not surjective (Figure B). Not everyone on the right side gets a gift, i.e. the right side is not totally covered.  </p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/b_not_surjective1.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/b_not_surjective1.jpg?w=300" alt="" title="B_not_surjective1" width="300" height="205" class="aligncenter size-medium wp-image-671" /></a></p>
<p>And now an exercise: Does Figure C show a surjective function?<br />
(The answer is given in the end)</p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/c_not_surjective2.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/c_not_surjective2.jpg?w=300" alt="" title="C_not_surjective2" width="300" height="205" class="aligncenter size-medium wp-image-673" /></a></p>
<blockquote><p><strong>Part 2 &#8211; Injective Functions</strong></p></blockquote>
<p>The previous year Santa used this function (Figure D):<br />
<a href="http://learntofish.wordpress.com/files/2009/12/d_injective.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/d_injective.jpg?w=300" alt="" title="D_injective" width="300" height="205" class="aligncenter size-medium wp-image-683" /></a><br />
This function in Figure D is <em>injective</em>. <em>Injective</em> means no two gifts (or more) are brought to one person.  </p>
<p>Figure E shows a function that is not injective. Reason: Two gifts are brought to the middle person.<br />
<a href="http://learntofish.wordpress.com/files/2009/12/e_not_injective1.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/e_not_injective1.jpg?w=300" alt="" title="E_not_injective1" width="300" height="205" class="aligncenter size-medium wp-image-687" /></a></p>
<p>And now an exercise: Does Figure F represent an injective function?<br />
(The answer is given in the end)<br />
<a href="http://learntofish.wordpress.com/files/2009/12/f_not_injective2.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/f_not_injective2.jpg?w=300" alt="" title="F_not_injective2" width="300" height="205" class="aligncenter size-medium wp-image-690" /></a></p>
<blockquote><p>
<strong>Part 3 &#8211; Bijective Functions</strong></p></blockquote>
<p>For next year, the elves have prepared a function (Figure G). The function in Figure G is <em>bijective</em>. <em>Bijective</em> means that the function is both <em>surjective</em> and <em>injective</em>. You will notice that in a bijective function each person on the right receives exactly one present. </p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/g_bijective.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/g_bijective.jpg?w=300" alt="" title="G_bijective" width="300" height="205" class="aligncenter size-medium wp-image-693" /></a></p>
<p>Figure H shows a function that is not bijective. It is not bijective because it is not injective. And also remember: A bijective function requires that each person on the right side receives exactly one present.<br />
<a href="http://learntofish.wordpress.com/files/2009/12/h_not_bijective1.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/h_not_bijective1.jpg?w=300" alt="" title="H_not_bijective1" width="300" height="205" class="aligncenter size-medium wp-image-695" /></a></p>
<p>And now an exercise: Is the function in Figure I bijective?<br />
<a href="http://learntofish.wordpress.com/files/2009/12/i_not_bijective21.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/i_not_bijective21.jpg?w=300" alt="" title="I_not_bijective2" width="300" height="205" class="aligncenter size-medium wp-image-712" /></a></p>
<blockquote><p><strong>Exercises:</strong></p></blockquote>
<p><strong>1.</strong> Determine for all figures (A to I) whether the function is<br />
a) surjective<br />
b) injective<br />
c) bijective.</p>
<p><strong>2.</strong> Determine for the figures below (Figures J,K and L) whether the functions are bijective.</p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/j_exercise1.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/j_exercise1.jpg?w=300" alt="" title="J_Exercise" width="300" height="205" class="aligncenter size-medium wp-image-714" /></a></p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/k_exercise1.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/k_exercise1.jpg?w=300" alt="" title="K_Exercise" width="300" height="205" class="aligncenter size-medium wp-image-715" /></a></p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/l_exercise1.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/l_exercise1.jpg?w=300" alt="" title="L_Exercise" width="300" height="205" class="aligncenter size-medium wp-image-716" /></a></p>
<p><strong>3.</strong><br />
a) Explain why in Figure M it is not possible to construct an injective function.<br />
b) Explain why Figure N is not a function.</p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/m_not_injective3_exercise1.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/m_not_injective3_exercise1.jpg?w=300" alt="" title="M_not_injective3_Exercise" width="300" height="205" class="aligncenter size-medium wp-image-718" /></a></p>
<p><a href="http://learntofish.wordpress.com/files/2009/12/n_exercise2.jpg"><img src="http://learntofish.wordpress.com/files/2009/12/n_exercise2.jpg?w=300" alt="" title="N_Exercise" width="300" height="205" class="aligncenter size-medium wp-image-720" /></a></p>
<blockquote><p><strong>Answers</strong></p></blockquote>
<p><strong>1. </strong><br />
Figure A: surjective; not injective; not bijective;<br />
Remember: A bijective function must both be surjective and injective. Thus, if at least one of the two properties (surjective or injective) is not fulfilled you can immediately say that the function is not bijective.<br />
Figure B: not surjective; not injective; not bijective;<br />
Figure C: not surjective; injective; not bijective<br />
Figure D: not surjective; injective; not bijective<br />
Figure E: not surjective; not injective; not bijective<br />
Figure F: not surjective; not injective; not bijective<br />
Figure G: surjective; injective; bijective<br />
Figure H: surjective; not injective; not bijective<br />
Figure I: not surjective; injective; not bijective</p>
<p><strong>2. </strong><br />
One possibility to check bijectivity is to check whether the function is surjective and injective. A faster way is the following: Remember that for a bijective function each person on the right side must receive exactly one present.<br />
Figure J: Every person receives exactly one gift. Thus, the function is bijective.<br />
Figure K: Since the person in the middle receives two gifts, the function is not bijective.<br />
Figure L: This is not a function. A function must tell for every gift where it will be brought. Here, Santa does not know what to do with the gift at the top.</p>
<p><strong>3. </strong><br />
a) Injective means that no two (or more) gifts are brought to one single person. Since in Figure M there are 4 gifts on the left and 3 persons on the right, this means that 1 person must get at least two gifts. Thus, the function cannot be injective.<br />
b) Figure N is not a function because the function does not tell us what to do with the yellow gift.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The surest way to design a crappy game…]]></title>
<link>http://aboutgamedesign.com/2009/12/21/the-surest-way-to-design-a-crappy-game%e2%80%a6/</link>
<pubDate>Mon, 21 Dec 2009 23:09:09 +0000</pubDate>
<dc:creator>Andre Beccu</dc:creator>
<guid>http://aboutgamedesign.com/2009/12/21/the-surest-way-to-design-a-crappy-game%e2%80%a6/</guid>
<description><![CDATA[…is to release it on X360, PC and DS. Why? When you are designing a game, it will be interactive to ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>…is to release it on X360, PC and DS. Why?</p>
<p>When you are designing a game, it will be interactive to some degree. The means of interaction are going to be an integral part of the experience of the game that you are creating.<br />
That means is usually “using a controller” (e.g. a Wiimote) on the player’s side of the interaction, which has two aspects:<br />
The first one is the actual hardware of the controller (e.g. a piece of plastic); the second is the game’s reaction to a certain controller input (e.g. “Jump”). In order to provide the best experience possible, it is necessary for those two aspects and the rest of the game to be as consistent as possible.</p>
<p><!--more--></p>
<p>Let’s have a look at the hardware first. The controllers available on the market have certain strengths (and weaknesses) regarding what kinds of experiences they are best able to provide for the player, simply because of how they are constructed.<br />
Each of the functions of those controllers has several properties, including, but not limited to, the triggering mechanism, size and location on the controller, ease of activation, sensitivity and width of input spectrum (e.g. binary, analog etc.), and last but not least how all those properties’ values compare to those of the other functions of the controller.</p>
<p>No matter how good you are at getting the best out of a controller, some games just may not work very well because of hardware limits. A game that simulates an activity based on analog input (e.g. real-time driving) isn’t best played with a purely digital input device (e.g. a digital pad), but rather something that resembles driving as much as possible (e.g. a steering wheel).</p>
<p>The other part of the equation is how the game reacts to controller input. Unless the game is extremely primitive, there will be multiple reactions that can be caused by the player (e.g. running, jumping, shooting), which will be different in terms of importance for success, frequency of use, how time critical they are and the level of association with different gameplay elements (e.g. enemies), among other criteria, and how all of those relate to the other existing systems.</p>
<p>In order to achieve the best experience possible, which requires high levels of consistency and transparency throughout the game, those game reactions need to reflect the controls which cause them, and vice versa – in absolute terms as well as in relation to all the other control/game-function pairs there are.</p>
<p>As soon as any design meets the real world, i.e. constraints of the controller (and of course the platform overall), there will have to be tradeoffs in relative or absolute consistency, or probably a bit of both. Suddenly, you will wish for another face button, and you would gladly trade the excess analog stick for it, or everything would be perfect if the trigger weren’t analog, but digital.</p>
<p>The two extremes of how to deal with this are as follows:</p>
<p>You could live with the inconsistencies and assign functionality in a way that causes the least overall problems. This will get you a large degree of freedom regarding your game design, but won’t make your less flexible potential customers very happy.</p>
<p>You could also choose to focus on the controller as one of the very first hard constraints. This will severely limit your freedom as game design choices go, but for the typical consumer the experience will be that much more consistent and transparent.</p>
<p>Wherever your game ends up on that scale, please just make sure your vision does not read “Reach huge audience by having newbie-friendly controls on all six different platforms”: Does Not Compute.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Attention: Fibromyalgia Sufferers]]></title>
<link>http://familychiropracticcentre.wordpress.com/2009/12/21/attention-fibromyalgia-sufferers/</link>
<pubDate>Mon, 21 Dec 2009 15:06:19 +0000</pubDate>
<dc:creator>familychiropracticcentre</dc:creator>
<guid>http://familychiropracticcentre.wordpress.com/2009/12/21/attention-fibromyalgia-sufferers/</guid>
<description><![CDATA[by Dr. Brent Lipke DC Fibromyalgia is a term describing a condition involving chronic muscle and joi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>by Dr. Brent Lipke DC</p>
<p>Fibromyalgia is a term describing a condition involving chronic muscle and joint pain, headaches, irritable bowel, sleeplessness, depression and anxiety.  Sounds bad right?  It’s even worse because most forms of treatment meet with limited success.</p>
<p><a href="http://familychiropracticcentre.wordpress.com/files/2009/12/fibromyalgia.jpg"><img class="alignleft size-medium wp-image-127" title="fibromyalgia" src="http://familychiropracticcentre.wordpress.com/files/2009/12/fibromyalgia.jpg?w=203" alt="" width="203" height="300" /></a>People often develop fibromyalgia following an accident or trauma to the body.  One study found a 10 times increase in the risk of fibromyalgia following a neck injury. </p>
<p><strong>The American Journal of Medicine and other sources, show chiropractic to reduce pain and improve sleep quality.  Chiropractic works by removing stress from the nerve system allowing your body to function and heal normally.</strong></p>
<p> To learn more about how a safe, gentle and scientific, Chiropractic adjustment could TRANSFORM your health contact your chiropractor.  If you are interested in a complimentary consultation, CALL me at The Family Chiropractic Centre, 519-837-1234. </p>
<p>I’m Dr. Brent Lipke, educating you to help you educate others !</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Thera-Band® Exercises Increase Muscle Size in Spastic Cerebral Palsy]]></title>
<link>http://blog.thera-bandacademy.com/2009/12/21/thera-band%c2%ae-exercises-increase-muscle-size-in-spastic-cerebral-palsy/</link>
<pubDate>Mon, 21 Dec 2009 13:19:14 +0000</pubDate>
<dc:creator>Dr. Phil Page</dc:creator>
<guid>http://blog.thera-bandacademy.com/2009/12/21/thera-band%c2%ae-exercises-increase-muscle-size-in-spastic-cerebral-palsy/</guid>
<description><![CDATA[Children with cerebral palsy (CP) often have leg weakness due to reduced muscle size. Researchers in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Children with <strong>cerebral palsy</strong> (CP) often have leg weakness due to reduced muscle size. Researchers in the UK examined the effects of a 10 week training program of progressive strengthening of the plantar flexors in 13 children with spastic CP. The children began with <strong><a href="http://www.thera-band.com/store/index.php?CategoryID=11" target="_blank">Thera-Band</a>-resisted</strong> plantar flexion in long-sitting and progressed to standing heel raises. They performed 3 to 4 sets of exercises at a 6-12 Repetition Maximum (RM) resistance with a 2-minute rest between sets. Once subjects were able to perform 6 calf raises, they continued that exercise until they could perform 12. Each session started and ended with calf stretches in standing. Exercises were performed 4 times per week, including 3 sessions at home.  After the 2 ½ month training program, <strong>muscle volume increased 14-17% and was maintained 3 months after training</strong>. Interestingly, while the participant’s strength increased, their functional measures did not.  The authors concluded that <strong>strengthening interventions may be one of the most important interventions in the short term for children with CP</strong> in order to support long-term functional gains.</p>
<p><em> </em></p>
<p><a href="http://www.thera-bandacademy.com/research/resources/locate_resource_byCatValue.asp?cat=disease&#38;id=17&#38;valName=Cerebral+Palsy" target="_blank"><span style="text-decoration:underline;">Visit the Thera-Band Academy Cerebral Palsy Center Here</span></a></p>
<p><strong>McNee AE, et al.</strong>. 2009 . Increases in muscle volume after plantarflexor strength training in children with spastic cerebral palsy . Dev Med Child Neurol: 51(6):429-35.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Twitter’s Retweet Function Vanishes! Retweet’s Are Back!]]></title>
<link>http://ecommercesnews.wordpress.com/2009/12/21/twitter%e2%80%99s-retweet-function-vanishes-retweet%e2%80%99s-are-back/</link>
<pubDate>Mon, 21 Dec 2009 12:16:02 +0000</pubDate>
<dc:creator>ecommercesnews</dc:creator>
<guid>http://ecommercesnews.wordpress.com/2009/12/21/twitter%e2%80%99s-retweet-function-vanishes-retweet%e2%80%99s-are-back/</guid>
<description><![CDATA[Has anyone seen the new Twitter retweet link? Quick go check under your bed and see if it is hiding ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p> Has anyone seen the new Twitter retweet link? Quick go check under your bed and see if it is hiding there.</p>
<p> Because I can&#8217;t find it in my Twitter stream:</p>
<p align="center">
<p><img src="http://www.marketingpilgrim.com/wp-content/uploads/2009/12/Screen-shot-2009-12-17-at-8.27.52-AM.png" alt="Twitter’s Retweet Function Vanishes! Retweet’s Are Back!" /></p>
</p>
<p> And there&#8217;s no news from Twitter about its disappearance. A victory for those that hated the new feature? Or just a glitch?</p>
<p> UPDATE: The retweet function is back, and appears to be connected to the slowdown earlier today.</p>
<p><img src="http://www.marketingpilgrim.com/wp-content/uploads/2009/08/trackur-icon.jpg" alt="Twitter’s Retweet Function Vanishes! Retweet’s Are Back!" /></p>
<p> Social Media Monitoring in Just 60-Seconds. Guaranteed!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Data Visualization Art Prints Available for Purchase]]></title>
<link>http://sintixerr.wordpress.com/2009/12/20/data-visualization-art-prints-available-for-purchase/</link>
<pubDate>Sun, 20 Dec 2009 17:53:03 +0000</pubDate>
<dc:creator>Jack Whitsitt</dc:creator>
<guid>http://sintixerr.wordpress.com/2009/12/20/data-visualization-art-prints-available-for-purchase/</guid>
<description><![CDATA[I guess once I get going, I keep going for awhile. Recently, I put up some T-shirts for sale which u]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I guess once I get going, I keep going for awhile. Recently, I put up some <a href="http://zazzle.com/sintixerr" target="_blank">T-shirts for sale</a> which use my art for designs. However, after a few years of showing them, I also wanted to get some of <a href="http://sintixerr.wordpress.com/art-versions-of-data-visualizations/" target="_blank">my data and security visualization art</a> available as well and, yesterday, I finally did it.  You can click here to go to the store:</p>
<p><a title="Data Visualization Art for Sale" href="http://www.zazzle.com/sintixerr/gifts?cg=196575264651641158" target="_blank">Data Visualization Art Prints</a></p>
<p>Some of these don&#8217;t look quite as surreal or &#8220;clean&#8221; as other data visualization art, but that&#8217;s because I&#8217;m very interested in the specific cross-section of usability and &#8220;prettiness&#8221; in the aesthetics of images: The place where what makes them useful is also what makes them attractive. Finding that line, in my mind, is what makes them &#8220;art&#8221;.  One could make some really cool looking images out of most semi-structured data, but it would cease to be useful. The ones here retain their function to security and data analysts while, at the same time, being attractive pieces.</p>
<p>If you&#8217;re interested in other security visualization information, try <a href="http://secviz.org" target="_blank">secviz.org</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The 7 Chakras]]></title>
<link>http://mbse.wordpress.com/2009/12/19/the-7-chakras/</link>
<pubDate>Sun, 20 Dec 2009 03:42:51 +0000</pubDate>
<dc:creator>mbse</dc:creator>
<guid>http://mbse.wordpress.com/2009/12/19/the-7-chakras/</guid>
<description><![CDATA[So what are chakras and where are they located? Each chakra relates to a particular energetic functi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter size-full wp-image-85" src="http://mbse.wordpress.com/files/2009/12/back-chakra-chart.jpg" alt="" width="93" height="265" /></p>
<p><strong>So what are chakras and where are they located?</strong></p>
<p><strong>Each chakra relates to a particular energetic function.  The first chakra, at the tip of your spine, relates to survival and the energy of your physical life.</strong></p>
<p><strong>The word ‘chakra’ is derived from a Sanskrit word meaning ‘wheel’; but perhaps even a better translation would be spinning wheel. If you could see chakras (as many of us whom work with them do) you would be able to see each primary chakra as a spinning vortex or wheel of energy.</strong></p>
<p><strong> </strong></p>
<p><strong>There are 7 main chakras in the body and the first one is at the tip of your spine.  It’s about survival.  The second one is located 2 finger widths below your belly button and is about sensuality, sexuality and relationships.  The third chakra is located in the soft part of your solar plexus and is about control, resistance and manifestation.  The 4<sup>th</sup> chakra is located where the sternum bones meet in your chest.  This one is about love and self love, and love of others.  5<sup>th</sup> one is communication and creativity, and is located in the soft part of the neck.  The sixth is the 3<sup>rd</sup> eye and located just above and between your physical eyes.  It’s also the spirit part of you.  The seventh is located 2 inches above your head and is the connection to the source, supreme being or whoever it is for you.  It is also how you take yourself out into the world and how people view you.</strong></p>
<p><strong><em><a href="http://www.mindbodysoulexperience.com/vickieparker.htm" target="_blank">By Vickie Parker</a></em></strong></p>
<p><strong><em><a href="http://www.windsweptcenter.net/" target="_blank">www.windsweptcenter.net<br />
</a><a href="http://www.windsweptinnerhealings.net/">www.windsweptinnerhealings.net</a></em></strong></p>
<p><strong><em><br />
</em></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Finding The Truth]]></title>
<link>http://livingrevolution.wordpress.com/2009/12/18/finding-the-truth/</link>
<pubDate>Fri, 18 Dec 2009 21:16:52 +0000</pubDate>
<dc:creator>Living Revolution</dc:creator>
<guid>http://livingrevolution.wordpress.com/2009/12/18/finding-the-truth/</guid>
<description><![CDATA[Hello Friends, Life is crazy, this we know. Often, we find ourselves unprepared to deal with the dra]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello Friends,</p>
<p>Life is crazy, this we know. Often, we find ourselves unprepared to deal with the drama of new changes in our lives, and  sometimes we shut down. Our job is stressful, we don&#8217;t make enough money, our kids aren&#8217;t happy, our partners don&#8217;t give us the attention we need. We don&#8217;t get enough exercise, we eat too much, the car insurance needs to be paid, and the dishwasher is broken. We feel like things should be better or at least different, and we find ourselves slowly slipping into a dark abyss of self-pity and apathy. I think so much of the displeasure we find in our own lives comes from convincing ourselves we &#8220;deserve&#8221; a better life.</p>
<p>I watched<a href="http://www.hbo.com/aliveday/"> this movie</a> last night, and it made me think a bit more about my life, and the lives of the people I love. Mostly, I reflected on how blessed and lucky we are to have access to the plethora of resources that are available to us, but I also thought about how often I find myself or someone else complaining about how &#8220;hard&#8221; life is. I thought a bit about White Entitlement, and I thought a bit about how I might live my life differently if I knew when I would die. As a amateur psychologist, I contemplated how the way we think effects our physiology, and how a poor attitude can actually produce poor health. As a practitioner of Zen, I contemplated how  a negative attitude can produce a negative energy field or &#8220;vibe&#8221;  that is perceptible to other people. As someone who believes we are all connected by the energy that makes up everything, I contemplated how this kind of attitude may  adversely effect our interactions with other people.</p>
<p>I realized that much of the drama and discontent we experience comes from our confusion about what real life and happiness &#8220;should&#8221; be. I recognized a series of untruths we tell ourselves that create a skewed view of reality in our minds. We hold ourselves to a unrealistic standard that is a product of the messages we absorb throughout of lives, forced on us by a variety of authorities, from our parents to the people who control advertising. I started putting together a list of experiences in my own life that were based on untruths and confusion. At the same time, I started putting together a list everything in my life I believe is TRUE.</p>
<p>The love I have for my kids. The love I have for my partner. My desire to be tested to the core of my being.  My distaste for modern American culture and the corporate government that runs the show. My belief in the chaos and order of the natural world and the importance of a symbiotic relationship between human beings and the rest of the Earth&#8217;s inhabitants. My belief in the power of focused thought and intentional action to inspire lasting change. The thankfulness I have toward the people who have influenced me to become the person I am today. The importance I place on physical interaction with my environment and the people around me. The belief that our attitudes, not our circumstances, determine our happiness.</p>
<p>I wondered if there is a pattern or process that comes with recognizing the TRUTH in something or someone, and I wondered how we could show other people this method, assuming it does exist. I wondered how we could go about unlearning old patterns of thought and action, and learn new ways of perceiving the world. I wondered if we could all get on the same page and put forth a message that contained TRUTH and agree on what that meant. What is TRUTH in your life? How does it determine your thoughts and actions? How often do you share your version of TRUTH with other people? Tell me something true.</p>
<p>Until next time&#8230;</p>
<p>Peace.Tobias.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aspartame alert: Diet soda destroys kidney function]]></title>
<link>http://dprogram.net/2009/12/18/aspartame-alert-diet-soda-destroys-kidney-function/</link>
<pubDate>Fri, 18 Dec 2009 21:00:49 +0000</pubDate>
<dc:creator>sakerfa</dc:creator>
<guid>http://dprogram.net/2009/12/18/aspartame-alert-diet-soda-destroys-kidney-function/</guid>
<description><![CDATA[(NaturalNews) &#8211; Scientists from Brigham and Women&#8217;s Hospital in Boston have revealed res]]></description>
<content:encoded><![CDATA[(NaturalNews) &#8211; Scientists from Brigham and Women&#8217;s Hospital in Boston have revealed res]]></content:encoded>
</item>
<item>
<title><![CDATA[Why Does Your Skin Fall Off?]]></title>
<link>http://drtanase.com/2009/12/18/why-does-your-skin-fall-off/</link>
<pubDate>Fri, 18 Dec 2009 15:30:28 +0000</pubDate>
<dc:creator>AT</dc:creator>
<guid>http://drtanase.com/2009/12/18/why-does-your-skin-fall-off/</guid>
<description><![CDATA[Over 75% of the dust that accumulates in your home comes from human skin. Approximately 40,000 skin ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter" src="http://i730.photobucket.com/albums/ww301/getthebigidea/dusty-shelves.jpg" alt="" width="539" height="271" /></p>
<p>Over 75% of the dust that accumulates in your home comes from human skin. Approximately 40,000 skin cells fall off you each minute, which amounts to nearly 9-lbs of shed skin per year.</p>
<p>It serves as a subtle reminder to us that our bodies are in a constant state of change and repair.</p>
<p>Luckily we can&#8217;t feel it happening. This process occurs without ever having to think about it.</p>
<p>It&#8217;s one of the many great things about how your body works&#8230; Billions upon billions of functions take place every second and you&#8217;re never aware of them. The sheer act of reading this sentence requires millions of unconscious chemical reactions.</p>
<p>The nervous system is marvelous! It does all this work for you, working nonstop, 24/7, to keep you living and breathing. As long as the brain is able to regularly communicate with the body without disruption or interference, you&#8217;ll be healthy.</p>
<p>We can use this phenomena to define health with just one simple word: <strong>Function</strong>. The only prerequisite is that nothing gets in the way of normal physiology. When the body does what it was designed and programmed to do, health is the natural byproduct.</p>
<p>Unfortunately things <em>do</em> get in the way and interfere with what&#8217;s supposed to occur. When this happens, your body<em> stops</em> doing what it was designed and programmed to do, and <em>start</em>s doing something else. This process is aptly referred to as <strong>malfunction</strong>.</p>
<p>But here&#8217;s something to consider&#8230; If you&#8217;re unaware of the billions of things taking place in your body at any given moment, how would you know if something went wrong?</p>
<p>Well, a great way to detect malfunction is through the use of <a href="http://drtanase.com/case-studies/">computerized thermal imaging</a>, or thermography. Chiropractors trained to provide Upper Cervical Care use this type of instrumentation to check for interference patterns within the nervous system.</p>
<p>By design, it&#8217;s non-diagnostic. It&#8217;s not intended to identify specific diseases. It&#8217;s a valuable assessment tool, however, in that it can reveal imbalances between the brain and body. This imbalance is a tell tale sign of malfunction.</p>
<p>It&#8217;s important to know that no matter what crazy myths and rumors you&#8217;ve heard about chiropractors, the goal of chiropractic care is <em>not </em>to treat specific diseases&#8230; That&#8217;s what medicine is for. Instead, the purpose of chiropractic care is to restore balance to the spine. This in turn stimulates normal function within the nervous system&#8230; <em>and that&#8217;s how our patients get well.</em></p>
<p>So it&#8217;s really not about backs, bones, or blood. Nor is it about about germs, joints, diseases or dust. What it all boils down to is the <a href="http://drtanase.com/2009/06/15/the-atlas-function-junction/">function</a> of your nervous system.</p>
<p>Having <em>yours</em> checked periodically is a smart thing to do!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1 Muharam = 1 Januari]]></title>
<link>http://excelitumudah.wordpress.com/2009/12/18/1-muharam-1-januari/</link>
<pubDate>Fri, 18 Dec 2009 08:39:00 +0000</pubDate>
<dc:creator>baniardho</dc:creator>
<guid>http://excelitumudah.wordpress.com/2009/12/18/1-muharam-1-januari/</guid>
<description><![CDATA[Anda mungkin salah satu dari sekian orang yang bertanya kapan 1 Muharam dan 1 Januari terjadi bersam]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Anda mungkin salah satu dari sekian orang yang bertanya kapan 1 Muharam dan 1 Januari terjadi bersamaan.</p>
<p>Excel sebetulnya menyediakan feature ini yaitu merubah tanggal Masehi ke tanggal Hijriah &#8230; agak sedikit usaha ya fren.</p>
<p>Jika ingin mencari jawaban untuk pertanyaan diatas ikuti step &#8211; step berikut :</p>
<ol>
<li>tuliskan tanggal 1 Jan 2010 pada 1 cell (bebas dech)</li>
<li>tuliskan dibawahnya 1 Jan 2013 &#8211; hingga 1 Jan 2145  (segitu aja dech &#8230; kebanyakan nanti) sehingga menjadi berkelipatan 13 tahun bukan &#8230; ?</li>
<li>kemudian kopi semuanya dan paste di kolom sebelahnya</li>
<li>blok semua data pada kolom kedua</li>
<li>klik kanan pilih Format Cells &#8230; , pilih Number Tab, pilih Custom dalam kotak Category kemudian ketik pada kotak type : <strong>b2d-mmm-yyyy<a href="http://excelitumudah.wordpress.com/files/2010/01/masehi-to-hijriah2.jpg"><img class="alignnone size-full wp-image-96" title="konversi masehi to hijriah" src="http://excelitumudah.wordpress.com/files/2010/01/masehi-to-hijriah2.jpg" alt="" width="415" height="438" /></a></strong></li>
<li>klik ok</li>
</ol>
<p>Hasil : anda akan temukan di kolom kedua tanggal dengan tampilan dari kanan ke kiri dengan nama bulan tulisan arab.</p>
<p>Apakah anda temukan tanggal <a href="http://excelitumudah.wordpress.com/files/2010/01/masehi-1-jan-1-muharam.jpg"><img class="alignnone size-full wp-image-97" title="masehi 1 jan - hijriah 1 muharam" src="http://excelitumudah.wordpress.com/files/2010/01/masehi-1-jan-1-muharam.jpg" alt="" width="126" height="25" /></a>bersamaan dengan <strong>1 Januari 2139</strong> ???</p>
<p>Moga bermanfaat &#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Selamet Tahun Baru Hijriah 1 Muharam 1431 </p>
<p>&#8212;- special thanks for Suhu-Abinomo atas jurus-jurusnya &#8212;</p>
<address></address>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Matrix Energetics - the science and art of transformation - links and blogs]]></title>
<link>http://missionhillspt.wordpress.com/2009/12/18/matrix-energetics-the-science-and-art-of-transformation-links-and-blogs/</link>
<pubDate>Fri, 18 Dec 2009 05:11:43 +0000</pubDate>
<dc:creator>missionhillspt</dc:creator>
<guid>http://missionhillspt.wordpress.com/2009/12/18/matrix-energetics-the-science-and-art-of-transformation-links-and-blogs/</guid>
<description><![CDATA[Hi everyone, I&#8217;m including a list of blogs and books that I have come across; some that we]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hi everyone, I&#8217;m including a list of blogs and books that I have come across; some that we&#8217;re recommended by Richard Bartlett, DC, ND in his classes on Matrix Energetics and some that I&#8217;ve come across from other sources.  Here&#8217;s my list for today!</p>
<p><a href="http://www.lynnemctaggart.com/index.php?option=com_content&#38;view=category&#38;layout=blog&#38;id=5&#38;Itemid=6" target="_self">http://www.lynnemctaggart.com/index.php?option=com_content&#38;view=category&#38;layout=blog&#38;id=5&#38;Itemid=6</a></p>
<p><a href="http://www.amazon.com/Physics-Miracles-Tapping-Consciousness-Potential/dp/1582702470" target="_self">http://www.amazon.com/Physics-Miracles-Tapping-Consciousness-Potential/dp/1582702470</a></p>
<p><a href="http://www.theburnhamreview.com" target="_self">http://www.theburnhamreview.com</a></p>
<p><a href="http://www.perksofwellness.com/index.html" target="_self">http://www.perksofwellness.com/index.html</a></p>
<p><a href="http://www.kimberlyburnhamphd.com" target="_self">http://www.kimberlyburnhamphd.com</a></p>
<p><a href="http://www.lindamarkley.com/co-creation/matrix-energetics/" target="_self">http://www.lindamarkley.com/co-creation/matrix-energetics/</a></p>
<p><a href="http://www.LindaMarkley.com/co-creation/learn-to-use-matrix-energetics/" target="_self">http://www.LindaMarkley.com/co-creation/learn-to-use-matrix-energetics/</a></p>
<p><a href="http://healthychoices.askahealer.com/2009/01/26/matrix-energetics-tracking-experience/" target="_self">http://healthychoices.askahealer.com/2009/01/26/matrix-energetics-tracking-experience/</a></p>
<p><a href="http://www.matrixenergetics.com/" target="_self">www.matrixenergetics.com</a></p>
<p><a href="http://www.garciainnergetics.net/" target="_self">http://www.garciainnergetics.net/</a></p>
<p><a href="http://www.fengshuiforyourbody.com/" target="_self">http://www.fengshuiforyourbody.com/</a></p>
<p><a href="http://www.bustingloosefromthemoneygame.com/author.html" target="_self">http://www.bustingloosefromthemoneygame.com/author.html</a></p>
<p><a href="http://www.amazon.com/Lost-Symbol-Dan-Brown/dp/0385504225" target="_self">http://www.amazon.com/Lost-Symbol-Dan-Brown/dp/0385504225</a></p>
<p><a href="http://www.amazon.com/Gluten-Connection-Sensitivity-Sabotaging-Health/dp/1594863873" target="_self">http://www.amazon.com/Gluten-Connection-Sensitivity-Sabotaging-Health/dp/1594863873</a></p>
<p><a href="http://www.amazon.com/Saint-Germain-Alchemy-Formulas-Self-Transformation/dp/0916766683" target="_self">http://www.amazon.com/Saint-Germain-Alchemy-Formulas-Self-Transformation/dp/0916766683</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[updated "Fixed" series]]></title>
<link>http://studiodiscussions.wordpress.com/2009/12/17/updated-fixed-series/</link>
<pubDate>Thu, 17 Dec 2009 03:35:05 +0000</pubDate>
<dc:creator>werner11</dc:creator>
<guid>http://studiodiscussions.wordpress.com/2009/12/17/updated-fixed-series/</guid>
<description><![CDATA[Previously blogged about as &#8220;Fixed&#8221; Series]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://studiodiscussions.wordpress.com/files/2009/12/goodfan.jpg"><img class="alignleft size-full wp-image-245" title="goodfan" src="http://studiodiscussions.wordpress.com/files/2009/12/goodfan.jpg" alt="" width="700" height="1045" /></a><a href="http://studiodiscussions.wordpress.com/files/2009/12/imgp2778.jpg"><img class="alignleft size-full wp-image-246" title="IMGP2778" src="http://studiodiscussions.wordpress.com/files/2009/12/imgp2778.jpg" alt="" width="700" height="501" /></a><a href="http://studiodiscussions.wordpress.com/files/2009/12/imgp2784.jpg"><img class="alignleft size-full wp-image-247" title="IMGP2784" src="http://studiodiscussions.wordpress.com/files/2009/12/imgp2784.jpg" alt="" width="700" height="460" /></a><a href="http://studiodiscussions.wordpress.com/files/2009/12/imgp2790.jpg"><img class="alignleft size-full wp-image-248" title="IMGP2790" src="http://studiodiscussions.wordpress.com/files/2009/12/imgp2790.jpg" alt="" width="700" height="470" /></a><a href="http://studiodiscussions.wordpress.com/files/2009/12/imgp2826.jpg"><img class="alignleft size-full wp-image-249" title="IMGP2826" src="http://studiodiscussions.wordpress.com/files/2009/12/imgp2826.jpg" alt="" width="700" height="1059" /></a><a href="http://studiodiscussions.wordpress.com/files/2009/12/imgp2845.jpg"><img class="alignleft size-full wp-image-250" title="IMGP2845" src="http://studiodiscussions.wordpress.com/files/2009/12/imgp2845-e1261020669113.jpg" alt="" width="700" height="1045" /></a><a href="http://studiodiscussions.wordpress.com/files/2009/12/imgp2874.jpg"><img class="alignleft size-full wp-image-251" title="IMGP2874" src="http://studiodiscussions.wordpress.com/files/2009/12/imgp2874.jpg" alt="" width="700" height="1045" /></a>Previously blogged about as <a href="http://studiodiscussions.wordpress.com/2009/11/22/fixed-series/">&#8220;Fixed&#8221; Series</a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
