<?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>spring &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/spring/</link>
	<description>Feed of posts on WordPress.com tagged "spring"</description>
	<pubDate>Sun, 12 Oct 2008 02:32:07 +0000</pubDate>

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

<item>
<title><![CDATA[Evolution of Timetable Builder]]></title>
<link>http://javadocs.wordpress.com/?p=58</link>
<pubDate>Sun, 12 Oct 2008 01:32:21 +0000</pubDate>
<dc:creator>joshjcarrier</dc:creator>
<guid>http://javadocs.da.wordpress.com/2008/10/11/evolution-of-timetable-builder/</guid>
<description><![CDATA[In the beginning, there was darkness in the world of course registration. A certain coldness loomed ]]></description>
<content:encoded><![CDATA[<p>In the beginning, there was darkness in the world of course registration. A certain coldness loomed over the inevitable scheduling of university courses every summer to make a timetable that works. Then, in 2007, Billy said "let there be automation" and Timetable Builder was born.</p>
<p><a href="http://javadocs.files.wordpress.com/2008/10/logo.gif"><img class="alignnone size-full wp-image-145" title="ttb_logo" src="http://javadocs.wordpress.com/files/2008/10/logo.gif" alt="" width="308" height="43" /></a></p>
<p><!--more--></p>
<p>Timetable Builder (TTB) is a schedule permutator - supplied with a list of course selections, the system can generate a collection of possible timetables which are maximally compatible with the parameters specified.</p>
<p>In early TTB, there was nothing but the core engine - a command-line Java application which read in a list of user-selected course and section ids from a text file. The engine would make a combination from this list of courses alone.</p>
<p>Billy asked me to try out this new service, and after sending him a list of courses, it gave me back a plausible schedule, and I was thoroughly impressed. I became really curious about how the system works, and after seeing how much detail his team put into handling even the wildest course selections - waitlists, two-termers, and distance-eds.</p>
[caption id="attachment_144" align="alignnone" width="300" caption="TTB Engine has creating you worklists to see in notepad!"]<a href="http://javadocs.files.wordpress.com/2008/10/ttb_core.jpg"><img class="size-medium wp-image-144" title="ttb_core" src="http://javadocs.wordpress.com/files/2008/10/ttb_core.jpg?w=300" alt="TTB Engine has creating you worklists in notepad!" width="300" height="217" /></a>[/caption]
<p>You'd be a fool to not realize this potential! It was approaching that time of year, just after classes had ended for the winter, when we decided to get the ball rolling. Billy had already formed an initial dev team, with David S. taking care of the engine's I/O and Tina L. as advertising. I then joined their team, along with Ivy M. and Grace L. for UI design and templates. It wasn't long (ok, 280 [wo]man-hours) before we had TTB version 1.</p>
[caption id="attachment_146" align="alignnone" width="300" caption="Well, it was mostly functional. The dashboard menu on the left is actually just a big picture."]<a href="http://javadocs.files.wordpress.com/2008/10/ttb-screen-shot.jpg"><img class="size-medium wp-image-146" title="ttb-screen-shot_v1" src="http://javadocs.wordpress.com/files/2008/10/ttb-screen-shot.jpg?w=300" alt="Well, it was mostly functional. The dashboard menu on the left is actually just a big picture." width="300" height="225" /></a>[/caption]
<p>It was built using PHP 4 (had to be compatible with the ultra-inexpensive host we had) and was actually hosted on two separate servers - the front-end would connect via HTTP to our back-end server, which was an old desktop running Windows XP, a HTTP server, a MySql server, and several instances of the Timetable Builder engine. It was dubbed the "closet server" as it sat <em>literally</em> in the closet of our residence. It actually heated up the closet quite a bit, and since I only like my clothing so crisp, it ended up sitting under my development desktop.</p>
[caption id="attachment_147" align="alignnone" width="300" caption="It&#39;s the one on the bottom."]<a href="http://javadocs.files.wordpress.com/2008/10/200804232049000.jpg"><img class="size-medium wp-image-147" title="ttb_server" src="http://javadocs.wordpress.com/files/2008/10/200804232049000.jpg?w=300" alt="It's the one on the bottom." width="300" height="225" /></a>[/caption]
<p>In this version, we already populated a database with near-mirror copies of current course availablilities on the Student course calendar, and use this data to allow users to simply select which courses they would like to take. There were a couple additional parameters, like a preferred time range and maximizing days off, as well as the ability for your account to save work lists and their corresponding parameters.</p>
<p>As a general workflow, we wanted:</p>
<ol>
<li>the front-end would pass worklist requests to the back-end</li>
<li>the back-end drops them into a queue</li>
<li>several instances of timetable builder engines (dubbed "busy workers") periodically check the queue for jobs</li>
<li>busy workers compile possible timetables and register that in the database</li>
<li>the front-end detects the timetable has been built and fetches them for displayal</li>
</ol>
<div>This works well <em>in theory</em>. Problems arose: this wasn't the fastest computer on the block - in fact, it was only 1.6 Ghz with 512 MB of RAM, so one instance of busy worker running by itself could still take several minutes to complete one user's request. There was some network lag between the front-end and the back-end, which didn't help either. We encountered compatability problems with this version, leaving the application inoperable for certain users - and we have yet to resolve why. However, we were able to gather lots of valuable data - what users liked, disliked, and requested - and we still firmly believed TTB could be successful. Unfortunately, the second semester of school quickly knocked all the developers into hiatus.</div>
<div></div>
<div>However, during my co-op work term of 2008 I managed to gather much information on structured web application development. Armed with the knowledge and design structure patterns we gained from version 1, I put together a prototype for version 2 - should it be deployed, the new system utilizes <a href="http://java.sun.com/javaee/" target="_blank">Java 2 Enterprise Edition</a> and assisting technologies such as <a href="http://www.springframework.org/" target="_blank">Spring</a>, <a href="http://www.hibernate.org/" target="_blank">Hibernate ORM</a> and <a href="http://aopalliance.sourceforge.net/" target="_blank">AOP</a> to allow us to build a modular, optimized application.</div>
<div>
[caption id="attachment_148" align="alignnone" width="300" caption="Alpha version of TTB 2"]<a href="http://javadocs.files.wordpress.com/2008/10/ttb_v2_alpha_20081010.png"><img class="size-medium wp-image-148" title="ttb_v2_alpha_20081010" src="http://javadocs.wordpress.com/files/2008/10/ttb_v2_alpha_20081010.png?w=300" alt="Alpha version of TTB 2" width="300" height="217" /></a>[/caption]
</div>
<div>From the front-end, of course, the user can't really see what's going on, but in the back-end it makes all the difference. Some advantages of using Java as an interpreter is so we can call the TTB engine on demand, create low coupled, highly cohesive packages, and never have to write a line of SQL or scrub form inputs (via the usage of the technologies mentioned earlier). It will also be much easier to ramp up a new developer, should we need to. Much of the design flow and front-end design has already been successfully ported to version 2.</div>
<div></div>
<div>As of this post, development on Timetable Builder v. 2 is still on hold due to time restraints, and the front-end of v. 1 <a href="http://www.timetablebuilder.com/" target="_blank">sits crippled on our web host</a> (the back-end server is unplugged somewhere in Billy's house). In the near future we hope we can present you version 2. Stay tuned for a tutorial on how to start developing J2EE applications!</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Construction and Our Hope]]></title>
<link>http://livingwatercabins.wordpress.com/?p=31</link>
<pubDate>Sun, 12 Oct 2008 01:31:06 +0000</pubDate>
<dc:creator>Living Water Cabins</dc:creator>
<guid>http://livingwatercabins.da.wordpress.com/2008/10/12/construction-and-our-hope/</guid>
<description><![CDATA[The construction of our cabin continues and proceeds at a much slower pace than we would have ever t]]></description>
<content:encoded><![CDATA[<p>The construction of our cabin continues and proceeds at a much slower pace than we would have ever thought, but the quality of the construction is there.  I guess the old saying "good things come to those who wait" may be true in this case.  We are sorry for the hold up to the hunters that have expressed an interest and those who have wanted to rent the cabin for this season.  The good news is that we have not written off late winter and early spring fishing. </p>
<p>My family has had high hopes of being in the cabin for Thanksgiving.  My boys have never deer hunted in West Virginia, and this would be the first time for them.  I have not deer hunted in West Virginia since the early 70's.  We have not spent Thanksgiving in West Virginia since about 1985.  You can hardly imagine our disappointment.</p>
<p>We also intended by this fall to start building another cabin on the same lot, which will be much larger.  We wanted to have the foundation done this month so that we would be up out of all the soft ground and mud we encountered this spring in the construction of this cabin.  We would have framed it during the winter and been ready to go by summer.  Does anyone have past experiences with proceeding with shell construction of cabins during the winter months in West Virginia?</p>
<p>Regardless of our plans and what in our minds seems to be a setback we look toward our God, King and Savior for guidance.  We trust that God has a better plan than ours, and we will be content with his pace.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Share your tradtions!]]></title>
<link>http://gatheringtraditions.wordpress.com/?p=3</link>
<pubDate>Sat, 11 Oct 2008 22:03:56 +0000</pubDate>
<dc:creator>gatheringtraditions</dc:creator>
<guid>http://gatheringtraditions.da.wordpress.com/2008/10/11/share-your-tradtions/</guid>
<description><![CDATA[Traditions are powerful! Perhaps you have a tradition that touched your heart growing up..&amp; you ]]></description>
<content:encoded><![CDATA[<p>Traditions are powerful! Perhaps you have a tradition that touched your heart growing up..&#38; you are carrying that on in your family.  Or maybe you have started a new one that your family loves, and that your kids will pass on.  Thank you so much for sharing your tradition &#38; a part of your heart!!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A Spring in Fall]]></title>
<link>http://pcbeachdailyphoto.wordpress.com/?p=290</link>
<pubDate>Sat, 11 Oct 2008 18:23:38 +0000</pubDate>
<dc:creator>pcbeachdailyphoto</dc:creator>
<guid>http://pcbeachdailyphoto.da.wordpress.com/2008/10/11/a-spring-in-fall/</guid>
<description><![CDATA[In honor of the Fall season&#8230; one of my favorite times of year.  Going to throw in a few Fall ]]></description>
<content:encoded><![CDATA[<p><a href="http://pcbeachdailyphoto.files.wordpress.com/2008/10/image0433.jpg"><img class="alignleft size-large wp-image-294" title="image0433" src="http://pcbeachdailyphoto.wordpress.com/files/2008/10/image0433.jpg?w=500" alt="" width="500" height="666" /></a>In honor of the Fall season... one of my favorite times of year.  Going to throw in a few Fall shots, hope you don't mind.</p>
<p>Teddy</p>
<p><a href="http://www.morgan-company.com" target="_blank">mc</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Night Time Music]]></title>
<link>http://pippasporch.wordpress.com/?p=539</link>
<pubDate>Sat, 11 Oct 2008 18:11:15 +0000</pubDate>
<dc:creator>Pippa</dc:creator>
<guid>http://pippasporch.da.wordpress.com/2008/10/11/night-time-music/</guid>
<description><![CDATA[Dear Friend
Annecy Lake, France, by Francillon, found at Art.com
Tonight someone is having a good ti]]></description>
<content:encoded><![CDATA[<p>Dear Friend</p>
[caption id="attachment_540" align="alignright" width="300" caption="Annecy Lake, France, by Francillon, found at Art.com"]<a href="http://pippasporch.files.wordpress.com/2008/10/annecylakefrance_francillon_artdotcom.jpg"><img class="size-medium wp-image-540" title="annecylakefrance_francillon_artdotcom" src="http://pippasporch.wordpress.com/files/2008/10/annecylakefrance_francillon_artdotcom.jpg?w=300" alt="Annecy Lake, France, by Francillon, found at Art.com" width="300" height="214" /></a>[/caption]
<p>Tonight someone is having a good time close to The Cottage. I can hear music beating through the night, high notes flying over the low notes. And I find it a sound which pleases me.</p>
<p>It is good to be safely ensconced in my little home.</p>
<p>It is good to know my neighbours are having fun.</p>
<p>It is good to feel the mellowness of this early summer night caressing my skin.</p>
<p>How wonderful that the wide open spaces of the spirit may be filled so brim-fully with such small things as night time music!</p>
<p>I am content.</p>
<p>May you have a wonderful weekend!</p>
<p>Love,</p>
<p>Pippa</p>
<p><em>"And the night shall be filled with music,<br />
And the cares that infest the day<br />
Shall fold their tents like the Arabs<br />
And as silently steal away."</em><br />
~ Henry Wadsworth Longfellow, The Day Is Done</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[What Satisfies]]></title>
<link>http://everyoneslife.wordpress.com/?p=96</link>
<pubDate>Sat, 11 Oct 2008 14:14:10 +0000</pubDate>
<dc:creator>metalforgood</dc:creator>
<guid>http://everyoneslife.da.wordpress.com/2008/10/11/what-satisfies/</guid>
<description><![CDATA[hi there, many people do many things , through each day, but when you go to bed, you feel that you a]]></description>
<content:encoded><![CDATA[<p>hi there, many people do many things , through each day, but when you go to bed, you feel that you are very tired but you still feel like you have done nothing through your day, you still feel hungry for a deed that satisfies you , and makes you sleep with a smile on your face,</p>
<p>even if you put a goal, like getting a new job, car, if you are a student you want to pass the year, when you achieve those goals , you turn back to the satisfaction issue, and still you are hungry for something,</p>
<p>every one of us feels so , i experienced  that a lot, but here's the solution</p>
<p>read the following from john 4 , and you will find the solution</p>
<p>from 1 to 16</p>
<p>John 4<br />
Jesus Talks With a Samaritan Woman<br />
 1The Pharisees heard that Jesus was gaining and baptizing more disciples than John, 2although in fact it was not Jesus who baptized, but his disciples. 3When the Lord learned of this, he left Judea and went back once more to Galilee.<br />
 4Now he had to go through Samaria. 5So he came to a town in Samaria called Sychar, near the plot of ground Jacob had given to his son Joseph. 6Jacob's well was there, and Jesus, tired as he was from the journey, sat down by the well. It was about the sixth hour.</p>
<p> 7When a Samaritan woman came to draw water, Jesus said to her, "Will you give me a drink?" 8(His disciples had gone into the town to buy food.)</p>
<p> 9The Samaritan woman said to him, "You are a Jew and I am a Samaritan woman. How can you ask me for a drink?" (For Jews do not associate with Samaritans.[a])</p>
<p> 10Jesus answered her, "If you knew the gift of God and who it is that asks you for a drink, you would have asked him and he would have given you living water."</p>
<p> 11"Sir," the woman said, "you have nothing to draw with and the well is deep. Where can you get this living water? 12Are you greater than our father Jacob, who gave us the well and drank from it himself, as did also his sons and his flocks and herds?"</p>
<p> 13Jesus answered, "Everyone who drinks this water will be thirsty again, 14but whoever drinks the water I give him will never thirst. Indeed, the water I give him will become in him a spring of water welling up to eternal life."</p>
<p> 15The woman said to him, "Sir, give me this water so that I won't get thirsty and have to keep coming here to draw water."</p>
<p>-----------------------------</p>
<p>Jesus asked the woman to give him water, then she asked him how you are asking me this because i am samaritan , Jesus told her,  if you knew the gift of God and who is asking you for a drink you would have asked him and he would have giving you a living water,, she told him how you are going to give me water and you don't have something to draw the water and the well is deep,  those lines tells that when you feel like you don't want anything from Jesus , and you don't need him in your life, you should know that you don't know Jesus and you don't know what can he do  because if you knew him you would have ask him to give you from his water, this water is not from the world ( where the well represents the world, Jesus wants you to know that, all the success in your job, in your friendships, in your car , in your money , all those things are given from the well , where they satisfies you for a while and then you come back to take  more, those things never satisfies ) , God wants to give you his water, which is not from the well ( since he had nothing to draw the water with , and the well is deep) God's water is not from the earth , they are heavenly gifts , and they are not money , or work or those world's water, they are from heaven, like your service, your spiritual talents that are given to each one of us, following Jesus  and he giving you his heaven , his deeds, his blessings, is the only thing that will satisfy, and it will not just satisfy , it will make you a spring welling up to eternal life,</p>
<p>so if you seek satisfaction, seek Jesus, know him , and it is easy, he said that he is knocking on every ones door , whoever opens he will enter his life , when you know Jesus ,and taste him , you will ask for his water, and he will be so happy to give it to you , then you will never need to come back to the world's well, and you will have a spring inside of you  that is  willing up to eternal life,</p>
<p>and your food will be  " john 4<br />
 34"My food," said Jesus, "is to do the will of him who sent me and to finish his work""</p>
<p>God shared the answer with us, he is the only one who satisfies, not the work, not the money, not the new car , nothing from the world is going to satisfy.</p>
<p>to read the whole chapter , here's the link <a href="http://www.biblegateway.com/passage/?book_id=50&#38;chapter=4&#38;version=31">http://www.biblegateway.com/passage/?book_id=50&#38;chapter=4&#38;version=31</a></p>
<p>God bless</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Spring in Oz]]></title>
<link>http://jhalbrook.wordpress.com/?p=260</link>
<pubDate>Sat, 11 Oct 2008 04:59:15 +0000</pubDate>
<dc:creator>jhalbrook</dc:creator>
<guid>http://jhalbrook.da.wordpress.com/2008/10/11/spring-has-sprung/</guid>
<description><![CDATA[It is hard to reconcile the beautiful weather in Melbourne with the economic hurricane devastating t]]></description>
<content:encoded><![CDATA[<p>It is hard to reconcile the beautiful weather in Melbourne with the economic hurricane devastating the world economy.  The skies here are pigeon-egg blue dotted with puffy, cotton ball clouds.  The temperature is perfect.  The flies and fires haven't hit yet.  If it were possible to ignore the media, (which seems to have more than its share of bad news at the moment), it would be an excellent time to be in absolute bliss.</p>
<p>I headed up into gold country a couple of weeks ago to help a cycling friend celebrate his 60th birthday.  He lives on a farm in the country now and there were two lambs, just a few days old, gamboling in the paddock.  The sun was out and it cast a spell of enchantment.  Everyone seemed to be in a good mood.</p>
<p>The birds go berserk at this time of year.  The squawkers get up at first light, but they also make sure you know when the sun is going down.  Magpies dive-bomb cyclists under the mistaken impression that their nests are under attack. Lorikeets and parrots fly in colorful formations, but the bell birds are my favorites.  Riding through trees full of bell birds is like being delivered into a temple in Bangkok.  The tones are resonant and beautiful and stay with you long after the birds have gone.</p>
<p>The Arts Festival and the racing season have just started.  I mentioned in a previous post that this city is simply inundated with events.  I managed to catch two films in the Italian Film Festival but I missed at least two other festivals and the State Fair.  I stumbled across the furniture exhibition of the city's Fringe Festival (perhaps its least interesting feature), One look at the catalog of offerings put me into a catatonic state.  I was simply overwhelmed.</p>
<p>We did make it out of the house to see some dance/theater last night and we have tickets for an evening with Philip Glass doing the poetry of Leonard Cohen.  We have to give our favorite Montreal poet a hearing. It is a city that has given us many good memories and Cohen is its most unlikely songbird.</p>
<p>I just got a lovely email from a friend there who is soaking up some balmy fall weather, thanks to a warm surge from down south.  He's a Scot, a golfer naturally enough. Some foxes have been frequenting the golf course of late and a few have become quite tame. Not a good thing for the long-term health of the animals, but it allowed him to get a fine photograph.</p>
[caption id="" align="alignnone" width="500" caption="by David Robertson"]<img src="http://farm4.static.flickr.com/3061/2930147835_659e1db693.jpg" alt="by David Robertson" width="500" height="206" />[/caption]
<p>It is difficult to ignore the local news, though.  It lands on the doorstep every morning and itches like a patch of poison ivy.</p>
<p>The bitter debate on Victoria's controversial abortion bill continued this week.  The tragic fate of a lovely, 21 year-old Australian girl who disappeared in Dubrovnik on September 18 was just revealed.  Another Qantas flight turned into roller coaster ride when it plunged 1000 feet over Western Australia and had to make an emergency landing.  A quarter of the planet's mammals are under threat of extinction; Australian mammals are the most at risk in the developed world.  The Australian dollar got hammered.</p>
<p>If you want to come see the wildlife or the race horses, now would be a good time. It's Spring and the weather is perfect.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[kasur baru ]]></title>
<link>http://butdie.wordpress.com/?p=36</link>
<pubDate>Fri, 10 Oct 2008 23:44:47 +0000</pubDate>
<dc:creator>butdie</dc:creator>
<guid>http://butdie.da.wordpress.com/2008/10/11/spring-baru/</guid>
<description><![CDATA[&#8230;. emmm hari ni bli spring bed ahh.. capek bobok bawah terus&#8230; masak kerja di spring bed ]]></description>
<content:encoded><![CDATA[<p>.... emmm hari ni bli spring bed ahh.. capek bobok bawah terus... masak kerja di spring bed kok ga punya spring, apa kata dunia...</p>
<p>pilih-pilih yah yang itu aja display spring bed :D barang nya bagus dibanding kluaran sekarang. wkkkkk</p>
<p>dah sekian dan trimakasih</p>
<p>oh ya.. hari ni kerja nya ngapain yah...? backup data, rapikan data gudang (list) emmmm ambil FIT04 isi dirumah. hihihi. ISO = iso iso wae</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Website galleries ahoy!]]></title>
<link>http://deepho.wordpress.com/?p=298</link>
<pubDate>Fri, 10 Oct 2008 21:36:28 +0000</pubDate>
<dc:creator>Dan</dc:creator>
<guid>http://deepho.da.wordpress.com/2008/10/11/website-galleries-ahoy/</guid>
<description><![CDATA[I&#8217;ve finished the process of completely reorganizing the galleries on my website into new cate]]></description>
<content:encoded><![CDATA[<p>I've finished the process of completely reorganizing the galleries on my website into new categories. There are now 7 to choose from, each one significantly different. My aim was to improve sorting and to focus on more logical areas of interest.</p>
<p><a href="http://ftpaddict.myairbites.ro/gallery.html">Clicking this sentence will take you to the new and improved gallery page.</a></p>
<p>To conclude in my usual fashion, here is a recently rediscovered picture of mine, dating back to the month of March. Increased processing abilities have made this shot possible:</p>
<p><a href="http://deepho.files.wordpress.com/2008/10/imgp1173.jpg"><img class="aligncenter size-full wp-image-299" title="imgp1173" src="http://deepho.wordpress.com/files/2008/10/imgp1173.jpg" alt="" width="510" height="340" /></a></p>
<p style="text-align:center;"><span style="color:#808080;"><em>Spring blossoms</em> - Pentax K100D, Soligor 70-210</span></p>
<p style="text-align:left;"><span style="color:#000000;">Thanks for visiting!</span></p>
<p style="text-align:left;">
<p style="text-align:left;">Dan</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[SPRING Launches 4.5 million fund to promote entrepreneurship in Schools]]></title>
<link>http://alextoh.wordpress.com/?p=99</link>
<pubDate>Fri, 10 Oct 2008 18:06:32 +0000</pubDate>
<dc:creator>alextoh</dc:creator>
<guid>http://alextoh.da.wordpress.com/2008/10/10/spring-launches-45-million-fund-to-promote-entrepreneurship-in-schools/</guid>
<description><![CDATA[
Found this article from SG Entrepreneurs thus do give them full credit, however decided to put the ]]></description>
<content:encoded><![CDATA[<p><a href="http://alextoh.wordpress.com/files/2008/10/spring_logo.jpg"><img class="alignleft size-full wp-image-100" title="spring_logo" src="http://alextoh.wordpress.com/files/2008/10/spring_logo.jpg" alt="" width="150" height="105" /></a></p>
<p>Found this article from <a href="http://sgentrepreneurs.com/press_releases/2008/10/10/press-release-spring-launches-45-million-fund-to-promote-entrepreneurship-in-schools/#more-1741" target="_blank">SG Entrepreneurs</a> thus do give them full credit, however decided to put the article here in hope that more aspiring entrepreneurs might find some light in this current financial crisis. This is the <a href="http://www.spring.gov.sg/Content/ModulePage.aspx?group=nw&#38;id=9114d5e2-1ad3-4552-ab1f-ae38bd008ab3" target="_blank">official link to SPRING </a>website:</p>
<p>1. Polytechnics, ITE colleges, junior colleges and secondary schools can now tap on a $4.5 million fund to develop programmes and activities to engage students in entrepreneurship learning opportunities. The Young Entrepreneurs Scheme for Schools or YES! Schools will be launched by Mr Lee Yi Shyan, Minister of State for Trade and Industry and Minister in charge of Entrepreneurship at the Spirit of Enterprise Awards Ceremony 2008 on 10 October 2008.</p>
<p>. YES! Schools taps on the $25 million Entrepreneurial Talent Development Fund (ETDF). ETDF, which was first launched in July 2004, provides seed money to students with sound business plans. To-date, 117 students and alumni from nine polytechnics and universities have tapped on the fund for 46 business ventures.</p>
<p>3. Available over a five-year period, YES! Schools will provide full funding to support structured entrepreneurial learning activities in schools. Each year, the schools will have the following amounts to tap on to fund their projects:<br />
a. Up to $100,000 per polytechnic;<br />
b. Up to $50,000 per ITE college; and<br />
c. Up to $10,000 per junior college/secondary school.</p>
<p>4. SPRING Singapore, who will manage the fund, will evaluate projects submitted by schools based on the following criteria:<br />
• <em>Entrepreneurship and innovative elements</em>: The proposal should highlight the innovative approach of the project in entrepreneurship learning;</p>
<p>• <em>Holistic approach</em>: The proposal should cover a comprehensive programme on the entrepreneurship learning activities to cultivate a mindset for enterprise among the students and/or teachers;</p>
<p>• <em>Hands-on (experiential) learning component</em>: The proposal should demonstrate the feasibility of the project and outline the steps taken to ensure effective learning outcomes for students. Projects should also require students to put to practical use the lessons learnt; and</p>
<p>• <em>Reach of project</em>: The proposal should indicate the number of students who will benefit from the project.</p>
<p>5. One important component of the programme is that the schools should have a mentor, preferably an experienced entrepreneur who has gone through the journey, and can guide and share experiences with the teachers and students. Mentors could be sought from school advisory boards and alumni, as well as organisations such as the Action Community for Entrepreneurship or Spirit of Enterprise.</p>
<p>6. Through YES! Schools, SPRING Singapore, with the support of the Ministry of Education, will support schools that have a comprehensive plan to develop entrepreneurial mindsets and skills through ‘learning by doing’.</p>
<p>7. “<em>Singapore needs to have more of our homegrown enterprises with their own creative and innovative products and services competing in the world market. While SPRING has put in place schemes to groom start-ups and young companies, we need to go back one step and look at encouraging our youths to be more innovative and entrepreneurial and there is no better place to start than the schools. The YES! Schools will help to increase awareness of entrepreneurship among youths and educators and inspire our young people to try out new ideas,</em>” said Mr Png Cheong Boon, Chief Executive, SPRING Singapore.</p>
<p>8. The target is to support 30 schools in the pilot year and scale up to 80 schools in the subsequent years.</p>
<p>9. Schools interested in applying for YES! Schools can do so from 1 November by contacting SPRING via email: <a href="mailto:yes_schools@%20spring.gov.sg"><strong>yes_schools@ spring.gov.sg</strong></a>. SPRING will be conducting briefing sessions for schools on the fund in November.</p>
<p><strong>About SPRING Singapore </strong><br />
SPRING Singapore is the enterprise development agency for growing innovative companies and fostering a competitive SME sector. We work with partners to help enterprises in financing, capabilities and management development, technology and innovation, and access to markets. As the national standards and accreditation body, SPRING also develops and promotes internationally-recognised standards and quality assurance to enhance competitiveness and facilitate trade.</p>
<p>Please visit <a href="http://www.spring.gov.sg/"><strong>www.spring.gov.sg</strong></a> for more information and news about SPRING Singapore.</p>
<p><strong>For media enquiries, please contact:</strong><br />
Marion Abraham<br />
Senior Manager, Corporate Communications<br />
<strong>SPRING Singapore</strong><br />
Direct: <span style="font-family:Tahoma;">6279 3617<br />
</span>Mobile: <span style="font-family:Tahoma;">9750 2903<br />
</span>E-mail: <a href="mailto:marion_abraham@spring.gov.sg"><strong>marion_abraham@spring.gov.sg</strong></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[BBQ mutton with lemon, pepper &amp; oregano with salad]]></title>
<link>http://wildschwein.wordpress.com/?p=777</link>
<pubDate>Fri, 10 Oct 2008 12:55:07 +0000</pubDate>
<dc:creator>ash</dc:creator>
<guid>http://wildschwein.da.wordpress.com/2008/10/10/bbq-mutton-with-lemon-pepper-oregano-with-salad/</guid>
<description><![CDATA[
This was tonight&#8217;s dinner. Absolutely fantastic. We cooked these on our gas BBQ - a pretty ol]]></description>
<content:encoded><![CDATA[<p><img class="alignnone" src="http://farm4.static.flickr.com/3054/2929277936_185f1a8a19.jpg?v=0" alt="" width="500" height="369" /></p>
<p>This was tonight's dinner. Absolutely fantastic. We cooked these on our gas BBQ - a pretty old gal but does the job. We heated the BBQ. Drizzled some olive oil. Sprinkled some mutton chops with lemon pepper/salt mix. Placed seasoned-side down. Seasoned tops with more lemon pepper mix, and put a few torn up oregano leaves on top. When drops of blood started to show on the top of the chops, we turned them over, and cooked for another 5 minutes. This made them medium-rare (to our liking). Obviously cook them less or longer according to your own preferences. We served them with iceberg lettuce, olives, chopped tomatoes, a chopped carrot each, and juicy lemon quarters. The lemon made the chops taste even better - I'm so happy we have another year here; the lemons alone are worth staying for!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[springtime seedraising]]></title>
<link>http://wildschwein.wordpress.com/?p=775</link>
<pubDate>Fri, 10 Oct 2008 12:45:32 +0000</pubDate>
<dc:creator>ash</dc:creator>
<guid>http://wildschwein.da.wordpress.com/2008/10/10/springtime-seedraising/</guid>
<description><![CDATA[
Zucchinis

Zucchini

Marigolds

Lazy Housewife beans


Lazy housewife beans around plum tree. The h]]></description>
<content:encoded><![CDATA[<p><img class="alignnone" src="http://farm4.static.flickr.com/3214/2929277266_5461f2beee.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Zucchinis</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3284/2929277596_3712c274fe.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Zucchini</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3059/2929277018_e97bbd995a.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Marigolds</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3004/2928415091_1347e03a30.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Lazy Housewife beans</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3046/2929275804_259e098f5e.jpg?v=0" alt="" width="500" height="375" /></p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3163/2928414611_3ca72703ef.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Lazy housewife beans around plum tree. The half-bag of sheep/cow manure around the tree should help things along!</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3049/2929276270_75c12a9f40.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Peas are planted in a row on this fence line - the bamboo stakes are for a trellis once they germinate. The inner soil area of this bed will be where I plant the tomatoes and zucchinis.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3292/2928413577_4edf9c52fc.jpg?v=0" alt="" width="375" height="500" /></p>
<p>Radishes</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3278/2929275316_8c82230191.jpg?v=0" alt="" width="500" height="375" /></p>
<p>A tiny part of the 4 rows of purple carrots I've planted :) I'm planning on later growing some normal orange ones inbetween the rows.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3070/2929275550_35bc54e26a.jpg?v=0" alt="" width="500" height="375" /></p>
<p>One of the lone peas that have sprouted; that I put in nearly 2 months ago. Barely any germinated - not entirely sure why. May be because this lot were planted in the same place as last years' lot. Hopefully the new plantings along the fenceline will do better.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3276/2928389757_247cde0aa9.jpg?v=0" alt="" width="375" height="500" /></p>
<p>One of the many things in a garden that are so small and easy to walk past, but so beautiful if you stop and look closely. It's a symbol for the garden on whole right now - things have taken a while to get going, but after photographing all my seedlings up close, you see how amazing it is that they've sprouted at all into what they are. Great shapes &#38; colours.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[emerging leafy greens]]></title>
<link>http://wildschwein.wordpress.com/?p=771</link>
<pubDate>Fri, 10 Oct 2008 12:04:48 +0000</pubDate>
<dc:creator>ash</dc:creator>
<guid>http://wildschwein.da.wordpress.com/2008/10/10/emerging-leafy-greens/</guid>
<description><![CDATA[
Mizuna

Silverbeet

Lettuce - green

Lettuce - red

Wong Bok Cabbage

Kale no1

Kale, no2

Mizuna, ]]></description>
<content:encoded><![CDATA[<p><img class="alignnone" src="http://farm4.static.flickr.com/3150/2929230354_8ecbeedfdd.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Mizuna</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3071/2929230816_11011ff1cb.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Silverbeet</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3238/2928368625_62d7643eb4.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Lettuce - green</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3221/2929229666_d7974e9f46.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Lettuce - red</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3182/2929228442_1f4603caf8.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Wong Bok Cabbage</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3283/2929228888_c334a790b7.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Kale no1</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3204/2928367865_f3b033fbb1.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Kale, no2</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3066/2929230598_5d6ef3f43b.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Mizuna, planted a couple of weeks ago in a polystyrene box</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3169/2929230088_f3f2ba8c80.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Lettuce, also in styrofoam box</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3057/2929229438_8149188665.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Kale in box</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3200/2929228658_14c7531f7a.jpg?v=0" alt="" width="500" height="375" /></p>
<p>and... more kale in a box!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[a fruitful spring backyard]]></title>
<link>http://wildschwein.wordpress.com/?p=766</link>
<pubDate>Fri, 10 Oct 2008 11:41:57 +0000</pubDate>
<dc:creator>ash</dc:creator>
<guid>http://wildschwein.da.wordpress.com/2008/10/10/a-fruitful-spring-backyard/</guid>
<description><![CDATA[
Lichen on the plum tree trunk.

Loquats

Flowers and fruit on the small mandarin tree that had no f]]></description>
<content:encoded><![CDATA[<p><img class="alignnone" src="http://farm4.static.flickr.com/3039/2929209892_a6c484c92f.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Lichen on the plum tree trunk.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3186/2929209678_5d088a2172.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Loquats</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3193/2928348443_45ced687df.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Flowers and fruit on the small mandarin tree that had no flowers, no fruit, and yellow leaves when we arrived.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3243/2929209270_91d6303b98.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Lemon heaven</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3227/2928347781_f40774c1b5.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Baby grapes</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3048/2929209026_96c66b4251.jpg?v=0" alt="" width="500" height="375" /></p>
<p>More baby grapes, and furry newly unfurled leaves</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3181/2928347655_3712d976a9.jpg?v=0" alt="" width="500" height="375" /></p>
<p>Future apricot jam</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Thoughts on relationships and seasons]]></title>
<link>http://jennyjenjen.wordpress.com/?p=63</link>
<pubDate>Fri, 10 Oct 2008 10:21:55 +0000</pubDate>
<dc:creator>swedishfish</dc:creator>
<guid>http://jennyjenjen.da.wordpress.com/2008/10/10/relationships-and-seasons/</guid>
<description><![CDATA[I have this theory that, by this time of year, spring friskiness and summer naïveté wear off. Then]]></description>
<content:encoded><![CDATA[<p>I have this theory that, by this time of year, spring friskiness and summer naïveté wear off. Then people get depressed about it and find someone new after all the Halloween parties, maybe even waiting as late as Thanksgiving when families try to set up the singles, or those singles realize how lonely it can get during the cold winter holidays. Nobody desperately wants to be the single person at a New Year's Eve party -- especially when you climb into the mid-20s or early 30s, and all of a sudden a bunch of poor bastards are marrying longtime girlfriends just because they think it's right. And those poor bastards are kissing those longtime girlfriends as the ball drops, but you're just eager to chug that champagne, get through the well-wishing and Auld Lang Synes, and get the hell out of there. Somehow you regret the decision you made to go out instead of drinking alone to the televised calamity of Times Square. On one level or another, you'd rather not be reminded of your perceived failures as a member of society. Such cultural rituals as the New Year's Eve party can be full of incredible disillusion, but that doesn't mean it won't sting.</p>
<p>I'm not alone in this line of thought; John Mayer wrote "St. Patrick's Day" and was probably thinking the same thing:</p>
<p><em>No way November will see our goodbye<br />
When it comes to December it's obvious why<br />
No one wants to be alone at Christmas time<br />
And come January we're frozen inside<br />
Making new resolutions a hundred times<br />
February, won't you be my valentine?<br />
And we'll both be safe 'til St. Patrick's Day </em></p>
<p>Maybe this is exacerbated here in the beautiful state of Colorado, a place in which all four seasons are gloriously lived out to the fullest. We experience nature's most nuanced forms: the amber and golden hues of the trees in the autumn, the cold and crisp bite of the rain in the spring. The anticipation of a looming extreme, whether it be the dead of winter or the dry heat of the summer, can drive emotions and actions and intentions off the charts.</p>
<p>Call yourself a rebel, but whether you've acted on it or just thought about it, nobody can completely escape it. On another musical note -- in somewhat of an ode to the Mile High Music Festival -- Jason Mraz nailed it on the head when he sang in the acoustic version of "I'm Yours":</p>
<p><em>It's our god-intended right to be loved, loved, loved, loved... loved.</em></p>
<p>God-intended or not, love works in mysterious ways. As this year comes to a close, I will most likely face a bitterly cold winter. But this time, it's for the better; I'll be fresh and ready and far less naïve when the warm weather rolls around.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Lily Pads on a Lily Pond. Tauranga DP #6]]></title>
<link>http://lisasarsfield.wordpress.com/?p=358</link>
<pubDate>Fri, 10 Oct 2008 09:09:35 +0000</pubDate>
<dc:creator>birdsong1</dc:creator>
<guid>http://lisasarsfield.da.wordpress.com/2008/10/10/lily-pads-on-a-lily-pond-tauranga-dp-6/</guid>
<description><![CDATA[
How pretty can a patch of swampy water be? I love the lillies at my local pond and will be going ba]]></description>
<content:encoded><![CDATA[<p><a href="http://lisasarsfield.files.wordpress.com/2008/10/dsc_0047.jpg"><img class="alignnone size-full wp-image-357" title="Copyright Lisa Sarsfield 2008" src="http://lisasarsfield.wordpress.com/files/2008/10/dsc_0047.jpg" alt="" width="455" height="304" /></a></p>
<p>How pretty can a patch of swampy water be? I love the lillies at my local pond and will be going back every few days to try and catch them at different times of day and in different light.</p>
<p>The mallard ducks who usually inhabit the pond have all but left, I guess it must be hard to swim in all of that foliage!</p>
<p><a href="http://blogactionday.org"><img src="http://blogactionday.s3.amazonaws.com/banners/234x60.jpg" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[New music link]]></title>
<link>http://tangerinemeg.wordpress.com/?p=235</link>
<pubDate>Fri, 10 Oct 2008 07:15:51 +0000</pubDate>
<dc:creator>tangerinemeg</dc:creator>
<guid>http://tangerinemeg.da.wordpress.com/2008/10/10/new-music-link/</guid>
<description><![CDATA[Hi Lovelies!
Today: a link to a product which I have been part of making (just so you know I haven]]></description>
<content:encoded><![CDATA[<p>Hi Lovelies!</p>
<p>Today: a link to a product which I have been part of making (just so you know I haven't totally been lazy, even though I haven't been progressing the printmaking). It's <a href="http://www.funmusicco.com/">downloadable printable music theory lessons</a>, for music teachers or substitute teachers taking music lessons, at about Grade 8 level. So if that is you, or if you know someone who might need such a thing, it's a handy website/product. It's also in my blog roll.</p>
<p>While we are talking about work I have done, I am currently trying to do webby technical stuff to my card site to make it suitable for people to visit. Also I have 12 designs but only like 6 on the site so far. Also Tangerine Epiphany is really hard to type in, so I have purchased tangerinemeg.com...much better! Will keep you updated on that.</p>
<p>Along the way I am learning more about SEO (search engine optimisation) so hopefully that will help get some visitors. I bought the <a href="http://ittybiz.com/seo-school/">Itty Biz SEO Ninja ebook</a>. That link is to a pretty long blog post but if the book interests you there is a "buy now" button at the end.</p>
<p>I am loving the warm spring weather; running or riding in the mornings enjoying all the flowers, and the weird and wonderful spring scents waftin' around. Now the vegies will be extra grateful for getting watered I guess. All my plants get washing machine rinse water enhanced with bokashi compost magic. Lucky them! I can see the luxuriant growth.</p>
<p>Hope you guys are enjoying your lives,<br />
Meg</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Software Engineer - 2 to 3 Years - Java, J2EE - Zenith Software - Bangalore ]]></title>
<link>http://jobs4umate.wordpress.com/?p=1921</link>
<pubDate>Fri, 10 Oct 2008 05:30:57 +0000</pubDate>
<dc:creator>Talentty</dc:creator>
<guid>http://jobs4umate.da.wordpress.com/2008/10/10/software-engineer-2-to-3-years-java-j2ee-zenith-software-bangalore/</guid>
<description><![CDATA[Zenith Software - Bangalore
Our world-class software solutions and support services are tailored to ]]></description>
<content:encoded><![CDATA[<p class="style6" align="justify"><strong><a href="http://www.zenithsoft.com/" target="_blank">Zenith Software </a>- Bangalore</strong></p>
<p class="style6" align="justify">Our world-class software solutions and support services are tailored to your unique requirements. We do this by leveraging a decade of experience partnering organizations across the world. Our offshore model delivers maximum benefits to our clients.</p>
<p>Located in Bangalore, Zenith Software is an established company with the nimbleness and agility of a growing organization. Over 10 dedicated development centers for clients stand testimony to this fact.</p>
<p class="style6" align="justify">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td class="style6" height="19" align="left" valign="top">
<p class="style45" align="justify"><strong>Designation: </strong>Software Engineer</p>
</td>
</tr>
<tr>
<td height="9" align="left" valign="top"> </td>
</tr>
<tr>
<td height="19" align="left" valign="top">
<p class="style6"><strong>Experience: </strong>2 - 3 Years</p>
</td>
</tr>
<tr>
<td align="left" valign="middle"> </td>
</tr>
<tr>
<td class="style6" height="10" align="left" valign="middle"> </td>
</tr>
<tr>
<td class="style6" height="15" align="left" valign="middle">
<p class="style45" align="justify"><strong>Skill Sets Required:</strong></p>
</td>
</tr>
<tr>
<td class="style6" height="9" align="left" valign="middle"> </td>
</tr>
<tr>
<td class="style6" height="25" align="left" valign="top">
<ul>
<li>Good Communication</li>
<li>Core Java</li>
<li>J2EE, MVC Architecture, Design Patterns </li>
<li>Struts / Spring / Hibernate </li>
<li>EJB </li>
<li>MySQL / Oracle / SQL Server   </li>
</ul>
<p>Please mail your resumes to <a href="mailto:harshan@zenithsoft.com">harshan@zenithsoft.com</a></td>
</tr>
</tbody>
</table>
<p>This Job is posted in <a href="http://www.zenithsoft.com/">http://www.zenithsoft.com/</a> for more details visit <a href="http://www.zenithsoft.com/Openings%20in%20IT%20Services.html">http://www.zenithsoft.com/Openings%20in%20IT%20Services.html</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[O.G. Cover Girl Casting!  Original Girl Magazine is YOU!!!]]></title>
<link>http://originalgirlblog.wordpress.com/?p=17</link>
<pubDate>Fri, 10 Oct 2008 03:47:23 +0000</pubDate>
<dc:creator>originalgirlmagazine</dc:creator>
<guid>http://originalgirlblog.da.wordpress.com/2008/10/10/og-cover-girl-casting-original-girl-magazine-is-you/</guid>
<description><![CDATA[Check out Original Girl Magazine Today!  We don&#8217;t put your typical celebrity on the cover, we]]></description>
<content:encoded><![CDATA[<p>Check out Original Girl Magazine Today!  We don't put your typical celebrity on the cover, we want you, our readers, to grace our cover!  Go to www.OriginalGirlMagazine.com Today and Download the application today!  Send it in and tell us why you could be the next O.G. Magazine Cover Girl!<a href="http://originalgirlblog.files.wordpress.com/2008/10/ogmagazine_003.jpg"><img class="alignright size-thumbnail wp-image-18" title="ogmagazine_003" src="http://originalgirlblog.wordpress.com/files/2008/10/ogmagazine_003.jpg?w=74" alt="" width="74" height="96" /></a></p>
<p>Check back for details on our on-campus castings!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tisanes for two]]></title>
<link>http://myartemismoon.wordpress.com/?p=106</link>
<pubDate>Fri, 10 Oct 2008 00:39:14 +0000</pubDate>
<dc:creator>myartemismoon</dc:creator>
<guid>http://myartemismoon.da.wordpress.com/2008/10/10/tisanes-for-two/</guid>
<description><![CDATA[Another favourite springtime tea for the Mums at playgroup is lemongrass and mint.  Just pick them ]]></description>
<content:encoded><![CDATA[<p>Another favourite springtime tea for the Mums at playgroup is lemongrass and mint.  Just pick them fresh from the garden (they grow prolifically in our garden during spring, and reasonably well during the rest of the year), pour over boiling water, and Voila!  This is also great poured over ice as a refreshing cold drink. </p>
<p> <a href="http://myartemismoon.files.wordpress.com/2008/10/p10100101.jpg"><img class="alignnone size-medium wp-image-114" title="p10100101" src="http://myartemismoon.wordpress.com/files/2008/10/p10100101.jpg?w=224" alt="" width="224" height="300" /></a></p>
<p>Blessings on the Blossom</p>
<p>Blessings on the Fruit</p>
<p>Blessings on the leaves and stems</p>
<p>and Blessings on the roots.</p>
<p>Blessings on your Morning tea.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[fashion week: spring '09]]></title>
<link>http://msyeahh.wordpress.com/?p=25</link>
<pubDate>Thu, 09 Oct 2008 23:24:20 +0000</pubDate>
<dc:creator>msyeahh</dc:creator>
<guid>http://msyeahh.da.wordpress.com/2008/10/09/fashion-week-spring-09/</guid>
<description><![CDATA[here are my top 5 trends for spring 2009:
ruffles, pleats and tiers

this girly trend was a hit from]]></description>
<content:encoded><![CDATA[<p>here are my top 5 trends for spring 2009:</p>
<h2 style="text-align:center;">ruffles, pleats and tiers</h2>
<p style="text-align:center;"><a href="http://msyeahh.files.wordpress.com/2008/10/ruffles1.png"><img class="alignnone size-full wp-image-27" title="ruffles1" src="http://msyeahh.wordpress.com/files/2008/10/ruffles1.png" alt="" width="500" height="396" /></a></p>
<p style="text-align:left;">this girly trend was a hit from anna sui, christopher kane, galliano and lagerfeld. toughen up these frills with a tough motorcycle jacket or pair a stiff blazer with your ruffles for a menswear feel.</p>
<p style="text-align:left;"> </p>
<h2 style="text-align:center;">full skirts</h2>
<p style="text-align:center;"><a href="http://msyeahh.files.wordpress.com/2008/10/full-skirt.png"><img class="alignnone size-full wp-image-28" title="full-skirt" src="http://msyeahh.wordpress.com/files/2008/10/full-skirt.png" alt="" width="447" height="480" /></a></p>
<p style="text-align:left;">as seen at lanvin, leulla and miu miu, the full skirt is best worn on the natural waist. this is a great trend for you if you have large hips that you want to play down.</p>
<p style="text-align:left;"> </p>
<h2 style="text-align:center;">yellow</h2>
<p style="text-align:center;"><a href="http://msyeahh.files.wordpress.com/2008/10/yellow.png"><img class="alignnone size-full wp-image-29" title="yellow" src="http://msyeahh.wordpress.com/files/2008/10/yellow.png" alt="" width="500" height="410" /></a></p>
<p style="text-align:left;">yellow popped on the runways at abaete, alexander mcqueen, chris benz and pucci. wake yourself up with a whole yellow ensemble for spring! or, add a yellow accent to any outfit with an accessory, like shoes or a clutch.</p>
<p style="text-align:center;"> </p>
<h2 style="text-align:center;">loose pants</h2>
<p style="text-align:center;"><a href="http://msyeahh.files.wordpress.com/2008/10/loose-pants.jpg"><img class="alignnone size-full wp-image-30" title="loose-pants" src="http://msyeahh.wordpress.com/files/2008/10/loose-pants.jpg" alt="" width="500" height="345" /></a></p>
<p style="text-align:left;">this is my favorite trend for spring. finally! some comfort for my poor gams! i loved phillip lim, chloe, diesel, cavalli and stella mccartney.</p>
<p style="text-align:left;"> </p>
<h2 style="text-align:center;">circus</h2>
<p style="text-align:center;"><a href="http://msyeahh.files.wordpress.com/2008/10/circus.png"><img class="alignnone size-full wp-image-31" title="circus" src="http://msyeahh.wordpress.com/files/2008/10/circus.png" alt="" width="435" height="478" /></a></p>
<p style="text-align:left;">at betsey johnson, marc by marc and topshop unique, some serious fun went down on the runways. you can add this playful trend into your wardrobe by incorporating humor into your outfits. remember, bright colors, stripes and checks rule for this trend.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How Cute is That Boutique Sponsor’s Explore Spring TX Best Friend Forever (BFF) Photo Contest!]]></title>
<link>http://springtexas.wordpress.com/?p=145</link>
<pubDate>Thu, 09 Oct 2008 22:03:17 +0000</pubDate>
<dc:creator>explorespring</dc:creator>
<guid>http://springtexas.da.wordpress.com/2008/10/09/how-cute-is-that-boutique-sponsor%e2%80%99s-explore-spring-tx-best-friend-forever-bff-photo-contest/</guid>
<description><![CDATA[
Friends
Free best friend photo contest seeks entries. Win $50 gift certificate to How Cute is That ]]></description>
<content:encoded><![CDATA[<p><em><span style="font-size:11pt;font-family:&#34;"></p>
[caption id="attachment_146" align="alignleft" width="200" caption="Friends"]<a href="http://springtexas.files.wordpress.com/2008/10/j0411808.jpg"><img class="size-medium wp-image-146" title="CBR003158" src="http://springtexas.wordpress.com/files/2008/10/j0411808.jpg?w=200" alt="Friends" width="200" height="300" /></a>[/caption]
<p class="MsoNormal" style="margin:0;">Free best friend photo contest seeks entries. Win $50 gift certificate to How Cute is That Boutique of Spring Texas.</p>
<p></span></em></p>
<p> </p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:11pt;font-family:&#34;">Spring, TX – October 1, 2008 – ExploreSpring.com and How Cute is That Boutique announces date for 1<sup>st</sup> "Best Friend Forever" – October 1, 1008. Do you have a special friendship? Then put your picture taking to the test and send in your best photo of you and your best friend.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:11pt;font-family:&#34;"></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:11pt;font-family:&#34;">Simply logon on to <a href="http://www.explorespring.com/"><span style="color:windowtext;">www.explorespring.com</span></a> and upload your photo between October 1 and October 31, 2008. The contest is run completely online. </span><span style="font-size:11pt;font-family:&#34;" lang="EN">All of the entries we receive are voted on by our site viewers. The top vote getter as of midnight October 31, 2008 wins the prize. Entries and voting will continue the entire month. </span><span style="font-size:11pt;font-family:&#34;">The winner of the contest will win a $50 gift certificate with How Cute is That Boutique, custom ExploreSpring.com Gift Pack a "featured winner" photo on the ExploreSpring.com Web site located at <a href="http://www.explorespring.com/"><span style="color:windowtext;">http://www.explorespring.com</span></a>.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:11pt;font-family:&#34;"></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:11pt;font-family:&#34;">The contest will be starting soon, so get those cameras out and start shooting. Entries will only be accepted online from viewers in the Houston Metropolitan Area. The contest entry form can be accessed by visiting: <a href="http://www.explorespring.com/pages/Photo_Contest"><span style="color:windowtext;">http://www.explorespring.com/pages/Photo_Contest</span></a>.  </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:11pt;font-family:&#34;"></span></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:11pt;font-family:&#34;">About ExploreSpring.com</span></strong><span style="font-size:11pt;font-family:&#34;"></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:11pt;font-family:&#34;">ExploreSpring.com is a locally owned City Directory for Spring, Texas where you can find all kinds of services - from restaurants and automobiles to shopping and home services. The online community guide and business directory for Spring and Klein TX, providing local news, real estate, jobs, advertising, calendar, events and more.ExploreSpring.com provides a central online location 24 hours a day to find information relevant to the Spring Community. The web site is located at <a href="http://www.explorespring.com">http://www.explorespring.com</a>. </span></p>
<p class="MsoNormal" style="margin:0;"><strong></strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="font-size:11pt;font-family:&#34;">About How Cute is That Boutique</span></strong></p>
<p class="MsoNormal" style="margin:0;"><strong></strong><span style="font-size:11pt;color:windowtext;font-family:&#34;">How Cute is That Boutique (H.C.I.T.B) is an excellent place to shop for the current and trendy accessories for all girly girls. Whether it is a pair of earrings with a matching necklace, or just a nice bracelet and earrings to complete the statement for that new outfit or that new pair of shoes, How Cute Is That Boutique can compliment whatever your needs are. The company Web site is located at http://www.howcuteisthatboutique.net/. </span></p>
<p class="MsoNormal" style="margin:0;"><em></em><span style="font-size:11pt;font-family:&#34;"></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Secure Your Spring Application Configuration With Jasypt]]></title>
<link>http://heuristicexception.wordpress.com/?p=66</link>
<pubDate>Thu, 09 Oct 2008 19:25:19 +0000</pubDate>
<dc:creator>heuristicexception</dc:creator>
<guid>http://heuristicexception.da.wordpress.com/2008/10/09/secure-your-spring-application-configuration-with-jasypt/</guid>
<description><![CDATA[By and large, the applications that we deploy are configured at runtime by using the Spring Property]]></description>
<content:encoded><![CDATA[<p>By and large, the applications that we deploy are configured at runtime by using the <a href="http://www.springframework.org/">Spring</a> <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html">PropertyPlaceholderConfigurer</a>. For those of you not familiar with this concept, basically, any environment specific properties in our application or even properties that we just want to be able to easily change, are defined using <a href="http://ant.apache.org/">Ant</a> style <a href="http://ant.apache.org/manual/using.html#properties">property syntax</a> within our <a href="http://www.springframework.org/">Spring</a> beans configuration.</p>
<p>For instance, our <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/sql/DataSource.html">DataSource</a> configuration looks something like this:</p>
<p>[sourcecode language="xml"]<br />
<bean id="dataSource" class="com.atomikos.jdbc.nonxa.AtomikosNonXADataSourceBean"<br />
          destroy-method="close"></p>
<property name="uniqueResourceName" value="My Primary Datasource"/>
<property name="driverClassName" value="com.inet.tds.TdsDriver"/>
<property name="url" value="jdbc:inetdae7a:${database.host}:${database.port}?database=${database.name}&#38;secureLevel=0"/>
<property name="user" value="${database.user}"/>
<property name="password" value="${database.password}"/>
<property name="testQuery" value="select 1"/>
<property name="maxPoolSize" value="50"/>
<property name="minPoolSize" value="20"/>
      <!-- Setting reapTimeout=0 because atomikos incorrectly reaps nonxa connections. -->  </p>
<property name="reapTimeout" value="0"></property>
    </bean><br />
[/sourcecode]</p>
<p>By defining a <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html">PropertyPlaceholderConfigurer</a>, we can have <a href="http://www.springframework.org/">Spring</a> inject the appropriate properties for this <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/sql/DataSource.html">DataSource</a> when the application starts up:</p>
<p>[sourcecode language="xml"]<br />
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"></p>
<property name="locations">
            <value>classpath:runtime-properties/${env}/my-application.properties</value>
        </property>
<property name="nullValue">
            <value>null</value>
        </property>
        <!-- Force system properties to override any deployed runtime properties --></p>
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE"/>
    </bean><br />
[/sourcecode]</p>
<p>For instance, my file <code>runtime-properties/dev/my-application.properties</code> would contain:<br />
<code><br />
database.host=localhost<br />
database.user=myuser<br />
database.password=mypassword<br />
database.name=myapplicationdb<br />
database.port=1433<br />
</code><br />
When we deploy our application, we deploy ALL of the runtime property files for all of the different runtime environments. By injecting the <em><strong>env</strong></em> property into the container at runtime, we tell the application which runtime properties to use, e.g.:<br />
<code><br />
-Denv=dev<br />
</code><br />
This is usually done either in the startup script or the startup configuration for the container. For example, in <a href="http://www.jboss.org/">JBoss</a>, we would add this to the <code>run.conf</code> file or the <code>run.sh</code> script.</p>
<p>This approach opens up some security issues, however. Now, all of my database credentials for all of my runtime environments are packaged up in cleartext in my single WAR artifact. If, for instance, the sys admin who manages our deployments in our testing environments (integration and staging) is not the same sys admin that manages our deployments in our production environment, especially if this is security related (only trusted senior administrators can manage production applications), we have a security hole because the credentials for all environments are stored in the WAR.</p>
<p>Historically, there has been no easy way around this. Typically, one would generate a secret key that could be used to decrypt the passwords if they were encrypted in the application configuration but then if you put this secret key IN the application deployment, you STILL have a security hole--any sufficiently determined adversary can use this key to decrypt your encrypted passwords.</p>
<p>Recently, I stumbled across the <a href="http://www.jasypt.org/">Jasypt</a> project. It aims to provide some simplified interfaces into the <a href="http://java.sun.com/javase/technologies/security/">Java Encryption API's</a>. The feature it offered that most appealed to me, however, was the integration that it offers for <a href="http://www.springframework.org/">Spring</a> that dovetails nicely with my configuration.</p>
<p><a href="http://www.jasypt.org/">Jasypt</a> offers a special implementation of the <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html">PropertyPlaceholderConfigurer</a> called the <a href="http://www.jasypt.org/api/jasypt/apidocs/org/jasypt/spring/properties/EncryptablePropertyPlaceholderConfigurer.html">EncryptablePropertyPlaceholderConfigurer</a> that allows you to encrypt some of your properties in your configuration files and have them decrypted on the fly when the application is starting. What's more important, is it allows you to pass the encryption key, or 'password' into the application as a system property at runtime, decoupling the knowledge of the key from the deployable artifact.</p>
<p>Let's see how this would work</p>
<p>First we would need to decide on an encryption algorithm and a password. Then we would use the commandline tools that ship with <a href="http://www.jasypt.org/">Jasypt</a> to encrypt our database password above:<br />
<code>./encrypt.sh input="mypassword" algorithm=PBEWithMD5AndTripleDES password=jasypt_is_cool</code><br />
<a href="http://www.jasypt.org/">Jasypt</a> will output something that looks like:<br />
<code><br />
----ENVIRONMENT-----------------</p>
<p>Runtime: Sun Microsystems Inc. Java HotSpot(TM) Server VM 10.0-b23 </p>
<p>----ARGUMENTS-------------------</p>
<p>algorithm: PBEWithMD5AndTripleDES<br />
input: mypassword<br />
password: jasypt_is_cool</p>
<p>----OUTPUT----------------------</p>
<p>AUP/WSfdvbAfVuBJW/kbXsqh2qu8yWiJ<br />
</code><br />
Then, we update our configuration file and replace:<br />
<code><br />
database.password=mypassword<br />
</code><br />
with:<br />
<code><br />
database.password=ENC(AUP/WSfdvbAfVuBJW/kbXsqh2qu8yWiJ)<br />
</code><br />
The syntax <code>ENC(...)</code> tells the <a href="http://www.jasypt.org/api/jasypt/apidocs/org/jasypt/spring/properties/EncryptablePropertyPlaceholderConfigurer.html">EncryptablePropertyPlaceholderConfigurer</a> that this property is encrypted.</p>
<p>Now, we will add the beans for the encryptor and it's configuration:</p>
<p>[sourcecode language="xml"]<br />
    <bean id="jasyptConfiguration"<br />
          class="org.jasypt.encryption.pbe.config.EnvironmentStringPBEConfig"<br />
          p:algorithm="PBEWithMD5AndTripleDES"<br />
          p:passwordSysPropertyName="jasypt.encryption.password"/></p>
<p>    <bean id="propertyPasswordEncryptor"<br />
          class="org.jasypt.encryption.pbe.StandardPBEStringEncryptor"<br />
          p:config-ref="jasyptConfiguration"/><br />
[/sourcecode]</p>
<p>The important thing to take away from the above is the configuration. The property <code>passwordSysPropertyName</code> tells <a href="http://www.jasypt.org/">Jasypt</a> that it should load the encryption password from a system property named <code>jasypt.encryption.password</code>.</p>
<p>Now, as I described above, I add a runtime property to my container so that this password gets injected into the runtime environment as a system property:<br />
<code><br />
-Djasypt.encryption.password=jasypt_is_cool<br />
</code><br />
The final step is to change the <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html">PropertyPlaceholderConfigurer</a> and wire it up to this encryptor:</p>
<p>[sourcecode language="xml"]<br />
    <bean class="org.jasypt.spring.properties.EncryptablePropertyPlaceholderConfigurer"><br />
        <constructor-arg><br />
          <ref bean="propertyPasswordEncryptor"/><br />
        </constructor-arg></p>
<property name="locations">
          <value>classpath:runtime-properties/${env}/my-application.properties</value>
        </property>
<property name="nullValue">
          <value>null</value>
        </property>
        <!-- Force system properties to override any deployed runtime properties --></p>
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE"/>
    </bean><br />
[/sourcecode]</p>
<p>And that's it! I've now added another layer of security to avoid having my production passwords floating around in my deployable artifact. It is generally a good idea to record this configuration in a secure location outside of source control that has limited access. This configuration should include the actual database password, the <a href="http://www.jasypt.org/">Jasypt</a> encryption password used and the <a href="http://www.jasypt.org/">Jasypt</a> algorithm that was used to generate the encrypted password, at a minimum.</p>
<p>Cheers!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[MVC in .Net]]></title>
<link>http://happyt.wordpress.com/?p=135</link>
<pubDate>Wed, 08 Oct 2008 22:56:42 +0000</pubDate>
<dc:creator>ianm</dc:creator>
<guid>http://happyt.da.wordpress.com/2008/10/08/mvc-in-net/</guid>
<description><![CDATA[Spent the evening with Cenk at the VBUG evening in London. It was at the offices of the Anteo group,]]></description>
<content:encoded><![CDATA[<p>Spent the evening with Cenk at the VBUG evening in London. It was at the offices of the <a href="http:// www.anteogroup.com/uk">Anteo group</a>, who are a staffing agency. They gave a quick rundown on getting a new job in the current climate. Everything is drying up so take advantage of any training opportuities, C# and .NET is still buoyant and keep the skills up to date was the message.</p>
<p>Bem Gmedouye gave a talk on the Microsoft MVC framework. He’s ex LBi, who I recently spoke to about PureMVC. A bit different here as this one is the .Net based framework from Microsoft. Bem claimed to have the first MVC (Microsoft) based web site up and running at the Morning Advertiser. The framework is using lambda functions in the View and the Spring.Net expressions in the Controller to give strongly typed View data, rather than using dictionary methods. jQuery is used for validation methods.<br />
[caption id="attachment_138" align="alignnone" width="270" caption="Morning Advertiser"]<a href="http://www.morningadvertiser.co.uk/"><img src="http://happyt.wordpress.com/files/2008/10/ma.jpg" alt="Morning Advertiser" title="ma" width="270" height="173" class="size-full wp-image-138" /></a>[/caption]<br />
The final framework is available at cacdframework.co.uk and was used to give the content management structure of the <a href="http://www.morningadvertiser.co.uk">Morning Advertiser</a> site. Looked as though it worked well and is woth investigation. The site looks clean and flexible.</p>
]]></content:encoded>
</item>

</channel>
</rss>
