<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>RSS feed for InstantSpot - (All)</title><link>http://www.instantspot.com</link><description>RSS feed for InstantSpot - (All)</description><language>en-us</language><copyright>This work is Copyright &#xA9; 2009 by InstantSpot</copyright><generator>RSSVille ColdFusion FeedMaker, version 1.0</generator><pubDate>Sat, 21 Nov 2009 11:33:04 GMT</pubDate><item><title>Coldfusion on the Google App Engine with Open BlueDragon</title><link>http://ajlcom.instantspot.com/blog/2009/11/20/Coldfusion-on-the-Google-App-Engine-with-Open-BlueDragon</link><description>&lt;p&gt;&lt;strong&gt;The future is now!&amp;nbsp; &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A little melodramatic maybe, but this technology is exciting.&amp;nbsp; Free cfml app servers with clustering (including data and file storage).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First, if you don&apos;t know what the Google App&amp;nbsp;Engine is yet, go &lt;a href=&quot;http://code.google.com/appengine/&quot;&gt;here&lt;/a&gt; first and do a little reading.&amp;nbsp; Once you have read enough of that to be sufficiently excited, we need to set up the development and deployment tools.&amp;nbsp; Paul Kukiel has put together a really nice demo on how to do this &lt;a href=&quot;http://blog.kukiel.net/2009/09/coldfusion-on-google-app-engine-with.html&quot;&gt;here&lt;/a&gt;.&amp;nbsp; &lt;strong&gt;NOTE&amp;nbsp;THERE&amp;nbsp;IS&amp;nbsp;ONE&amp;nbsp;THING&amp;nbsp;THAT&amp;nbsp;IS&amp;nbsp;INCORRECT&amp;nbsp;IN&amp;nbsp;THE&amp;nbsp;VIDEO &amp;nbsp; &lt;/strong&gt; Do not delete the &amp;quot;war&amp;quot; directory, merely paste the openbd war over the existing one.&amp;nbsp; This is important.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Next, reading and writing data with the Google datastore.&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;Storing data in a scalable web application can be tricky. A user could be interacting with any of dozens of web servers at a given time, and the user&apos;s next request could go to a different web server than the one that handled the previous request. All web servers need to be interacting with data that is also spread out across dozens of machines, possibly in different locations around the world.  &lt;br /&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;Thanks to Google App Engine, you don&apos;t have to worry about any of that. App Engine&apos;s infrastructure takes care of all of the distribution, replication and load balancing of data behind a simple API&amp;mdash;and you get a powerful query engine and transactions as well.&lt;/blockquote&gt;
&lt;p&gt;Thanks to the fine people at Open BlueDragon, this task is made very very simple.&amp;nbsp; Every cfc in the openBD GAE inherits the following methods from component.cfc.&amp;nbsp; GoogleWrite(), GoogleRead(), and GoogleKey().&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;-- Example object Status.cfc:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;code&quot; &gt;&lt;pre&gt;&amp;lt;cfcomponent displayname=&amp;quot;Status&amp;quot; output=&amp;quot;false&amp;quot;&amp;gt;

	&amp;lt;cfproperty name=&amp;quot;Message&amp;quot; displayname=&amp;quot;Message&amp;quot; type=&amp;quot;string&amp;quot; /&amp;gt;
	&amp;lt;cfproperty name=&amp;quot;DateTimeCreated&amp;quot; displayname=&amp;quot;DateTimeCreated&amp;quot; type=&amp;quot;date&amp;quot; /&amp;gt;

	&amp;lt;cffunction name=&amp;quot;init&amp;quot; access=&amp;quot;public&amp;quot; output=&amp;quot;false&amp;quot; returntype=&amp;quot;Status&amp;quot;&amp;gt;
		&amp;lt;cfreturn this/&amp;gt;
	&amp;lt;/cffunction&amp;gt;

	&amp;lt;cffunction name=&amp;quot;getMessage&amp;quot; access=&amp;quot;public&amp;quot; output=&amp;quot;false&amp;quot; returntype=&amp;quot;string&amp;quot;&amp;gt;
		&amp;lt;cfreturn this.Message /&amp;gt;
	&amp;lt;/cffunction&amp;gt;

	&amp;lt;cffunction name=&amp;quot;setMessage&amp;quot; access=&amp;quot;public&amp;quot; output=&amp;quot;false&amp;quot; returntype=&amp;quot;void&amp;quot;&amp;gt;
		&amp;lt;cfargument name=&amp;quot;Message&amp;quot; type=&amp;quot;string&amp;quot; required=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;cfset this.Message = arguments.Message /&amp;gt;
		&amp;lt;cfreturn /&amp;gt;
	&amp;lt;/cffunction&amp;gt;

	&amp;lt;cffunction name=&amp;quot;getDateTimeCreated&amp;quot; access=&amp;quot;public&amp;quot; output=&amp;quot;false&amp;quot; returntype=&amp;quot;date&amp;quot;&amp;gt;
		&amp;lt;cfreturn this.DateTimeCreated /&amp;gt;
	&amp;lt;/cffunction&amp;gt;

	&amp;lt;cffunction name=&amp;quot;setDateTimeCreated&amp;quot; access=&amp;quot;public&amp;quot; output=&amp;quot;false&amp;quot; returntype=&amp;quot;void&amp;quot;&amp;gt;
		&amp;lt;cfargument name=&amp;quot;DateTimeCreated&amp;quot; type=&amp;quot;date&amp;quot; required=&amp;quot;true&amp;quot; /&amp;gt;
		&amp;lt;cfset this.DateTimeCreated = arguments.DateTimeCreated /&amp;gt;
		&amp;lt;cfreturn /&amp;gt;
	&amp;lt;/cffunction&amp;gt;

	
&amp;lt;/cfcomponent&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;-- Writing data to the datastore:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;code&quot; &gt;&lt;pre&gt;&amp;lt;cfscript&amp;gt;
//saving a new Status to Google datastore
Status = createObject( &amp;quot;component&amp;quot;, &amp;quot;model.Status&amp;quot; ).init();
Status.setMessage( &amp;quot;I love Google App Engine and OpenBD!&amp;quot; );
Status.setDateTimeCreated( Now() );

/*now all we do is call the googleWrite() method on our object, notice this returns the objects new google key*/
googleKey = Status.googleWrite();
&amp;lt;/cfscript&amp;gt;
&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;-- &lt;strong&gt;Querying the datastore:&lt;/strong&gt;&amp;nbsp; for more on this visit the &lt;a href=&quot;http://wiki.openbluedragon.org/wiki/index.php/GoogleAppEngine:Datastore&quot;&gt;openBD wiki page on the datastore&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;code&quot; &gt;&lt;pre&gt;&amp;lt;!---
notice dbtype=&amp;quot;google&amp;quot; and the quasi-SQL 
---&amp;gt;
&amp;lt;cfquery dbtype=&amp;quot;google&amp;quot; name=&amp;quot;result&amp;quot;&amp;gt;
Select from Status
&amp;lt;/cfquery&amp;gt;

&amp;lt;!---
The result of this query, is an array of matching Status objects.  Not the usual query recordset.
---&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Securing your new web app&lt;/strong&gt; with the UserServiceFactory (com.google.appengine.api.users.UserServiceFactory)&lt;/p&gt;
&lt;p&gt;Once I figured this step out, it was almost embarassingly easy to secure a page, allowing access only to validated Google account holders.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;code&quot; &gt;&lt;pre&gt;&amp;lt;cfscript&amp;gt;
UserServiceFactory = CreateObject(&amp;quot;java&amp;quot;,&amp;quot;com.google.appengine.api.users.UserServiceFactory&amp;quot;);

User = UserServiceFactory.getUserService().getCurrentUser();

/*Here I am doing a test to see if there is a valid user object returned, aka &amp;quot;logged in&amp;quot;.  At this time, I haven&apos;t found the ideal solution for this*/

isLoggedIn = false;

try{
   user.getEmail();
   isLoggedIn = true;
}
catch (any excpt){}

&amp;lt;/cfscript&amp;gt;

&amp;lt;!---

building login/logut links

---&amp;gt;

&amp;lt;cfif NOT isLoggedIn&amp;gt;
YOU NEED TO &amp;lt;a href=&amp;quot;&amp;lt;cfoutput&amp;gt;#UserServiceFactory.getUserService().createLoginURL(toString(&amp;quot;http://#cgi.SERVER_NAME#&amp;quot;))#&amp;lt;/cfoutput&amp;gt;&amp;quot;&amp;gt;LOGIN&amp;lt;/a&amp;gt;
&amp;lt;cfelse&amp;gt;
	&amp;lt;cfoutput&amp;gt;#request.user.getEmail()#&amp;lt;/cfoutput&amp;gt;:  All your email are belong to us 
	&amp;lt;br /&amp;gt;
	&amp;lt;a href=&amp;quot;&amp;lt;cfoutput&amp;gt;#UserServiceFactory.getUserService().createLogoutURL(toString(&amp;quot;http://#cgi.SERVER_NAME#&amp;quot;))#&amp;lt;/cfoutput&amp;gt;&amp;quot;&amp;gt;LOGOUT&amp;lt;/a&amp;gt;
&amp;lt;/cfif&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Time to build some real applications.&lt;/strong&gt;&amp;nbsp; Early indications from some experimentation by &lt;a href=&quot;http://www.daveshuck.com&quot;&gt;Dave Shuck&lt;/a&gt;, are revealing that the Mach-ii MVC framework along with the Coldspring IOC framework are working on the Google&amp;nbsp;App Engine.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Other features, new or otherwise:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;a href=&quot;http://code.google.com/appengine/docs/python/config/cron.html&quot;&gt;cron support&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://code.google.com/appengine/docs/python/tools/uploadingdata.html&quot;&gt;database import&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://code.google.com/securedataconnector/&quot;&gt;access to firewalled data&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There is just no reason that we as cfml developers shouldn&apos;t be churning out app after app on this platform.&amp;nbsp;&lt;/p&gt;</description><pubDate>Sat, 21 Nov 2009 03:54:00 GMT</pubDate><guid>http://ajlcom.instantspot.com/blog/2009/11/20/Coldfusion-on-the-Google-App-Engine-with-Open-BlueDragon</guid></item><item><title>Big End of Year Meeting! 12/8/2009</title><link>http://dfwcfug.instantspot.com/blog/2009/11/19/Big-End-of-Year-Meeting-1282009</link><description>&lt;div class=&quot;olFull&quot;&gt;
&lt;div class=&quot;div-fields&quot;&gt;
&lt;div class=&quot;div-field clearfix&quot;&gt;
&lt;div class=&quot;div-label&quot;&gt;Date and Time:&lt;/div&gt;
&lt;div class=&quot;div-value&quot;&gt;
&lt;div class=&quot;ft-date-event&quot;&gt;&lt;span title=&quot;GMT-6 Central Time US &amp;amp; Canada, Guadalajara, Mexico City&quot;&gt;December 8, 2009 from 6:30pm - 9:30pm&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;div-field clearfix&quot;&gt;
&lt;div class=&quot;div-label&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;div-label&quot;&gt;Agenda:&lt;br /&gt;
Somehow another year has rolled around and it is time for the last DFWCFUG meeting for 2009. It has been a great year for CFML developers with the release of ColdFusion 9, big surges in the open source community with Open BlueDragon and Railo becoming real players in the CFML world, and locally as the job availabilities in DFW have been plentiful.&amp;nbsp; We are going to send the year off with a bang. Here is what is on deck for the night:&lt;/div&gt;
&lt;div class=&quot;div-value&quot;&gt;
&lt;div class=&quot;ugc-html&quot;&gt;
&lt;p&gt;&lt;br /&gt;
We will be continuing our ongoing series as we explore the Head First Design Patterns (HFDP) book and give illustrations about how the concepts fit into our world as CFML developers.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;HFDP4CF - Chapter 4: The Factory Pattern&lt;/strong&gt; - If you recall, Andrew Leaf gave us a real world illustration earlier this year about how the factory pattern is being leveraged in his daily work.&amp;nbsp; In this presentation, he will be walking through the topic in the HFDP book and covering their examples using ColdFusion.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;HFDP4CF - Chapter 5: The Singleton Pattern&lt;/strong&gt; - &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.daveshuck.com/&quot;&gt;Dave Shuck&lt;/a&gt; will be covering the chapter explaining how the singleton pattern can be used in the CFML world.&amp;nbsp; As with the other chapters in our series, Dave will be demonstrating the samples using ColdFusion.&lt;br /&gt;
&lt;br /&gt;
Remember that if you would like to read ahead a bit, you can see much of the HFDP book for free on Google Books: &lt;a rel=&quot;nofollow&quot; href=&quot;http://books.google.com/books?id=LjJcCnNf92kC&amp;amp;printsec=frontcover&quot;&gt;http://books.google.com/books?id=LjJcCnNf92kC&amp;amp;printsec=frontcover&lt;br /&gt;
&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
GIVEAWAYS!&lt;br /&gt;
&lt;br /&gt;
As a year-end wrapup, we will have a number of giveaways. We will be giving away one software license for any Adobe project worth up to $2000 to one attendee (CF9 Standard definitely applies!).&amp;nbsp; Additionally, our sponsor Paladin Consulting will be giving away electronic goodies, gift cards and more.&lt;br /&gt;
&lt;br /&gt;
As always we will be meeting at the Paladin Consulting offices at Webb Chapel/635 in the ClubCorp building at 6:30. Food and drinks will be provided.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><pubDate>Thu, 19 Nov 2009 15:27:00 GMT</pubDate><guid>http://dfwcfug.instantspot.com/blog/2009/11/19/Big-End-of-Year-Meeting-1282009</guid></item><item><title>Zu Besuch beim G&#xf6;tz</title><link>http://marcelinbirmingham.instantspot.com/blog/2009/11/18/Zu-Besuch-beim-G&#xf6;tz</link><description>&lt;p&gt;Bei all dem Herumgereise darf nat&amp;uuml;rlich nicht eine Besuch in der Hauptstadt Englands&amp;nbsp; fehlen ... passt ja eigentlich auch gerade hervorragend nach Dublin und Cardiff, gings also vergangen Samstag nach London.&lt;br /&gt;
Da der liebe G&amp;ouml;tz auch noch ein paar seiner Stunden f&amp;uuml;r mich opfern konnte, gings auch noch mit kompetenter F&amp;uuml;hrung durch die Stadt. Wohl gemerkt, wir hatten nur einen reichlichen Tag zeit, aber was f&amp;uuml;r alles zusammen geschafft haben uns anzusehen, war echt unglaublich.&lt;/p&gt;
&lt;p&gt;Also G&amp;ouml;tz falls du das lie&amp;szlig;t, was ich doch stark f&amp;uuml;r dich hoffe. Danke :)&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;Am Samstag hatten wir leider mit dem Wetter pech. Es fing nach einem kleinen Kaffee bei Starbucks, dann ziemlich schnell an richtig ungem&amp;uuml;dlich zu werden. Aber so ein bissl Regen und Sturm kann uns dann doch nicht aufhalten... naja eigentlich schon, es hat vor dem Buckingham Palast so derma&amp;szlig;en gegossen, dass mein Schirm das nicht &amp;uuml;berlebt hat und irgendwie auch das Versprechen mein Rucksack w&amp;auml;re wasserdicht, kann ich nun wiederlegen ...&amp;nbsp; Aber hey mein Schirm hat immerhin 10 Wochen gehalten, das haben viele andere nicht geschafft...&lt;br /&gt;
&lt;br /&gt;
Erstmal ein paar Bilder vom Samstag&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;img width=&quot;240&quot; height=&quot;320&quot; src=&quot;/userfiles/091709/1171/CIMG5503.JPG&quot; alt=&quot;&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;img width=&quot;240&quot; height=&quot;320&quot; src=&quot;/userfiles/091709/1171/CIMG5514.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Harreds und das Natural History Musuem&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;169&quot; height=&quot;225&quot; src=&quot;/userfiles/091709/1171/CIMG5516.JPG&quot; alt=&quot;&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;img width=&quot;300&quot; height=&quot;225&quot; src=&quot;/userfiles/091709/1171/CIMG5519.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Natural History Museum und Royal Albert Hall&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;240&quot; height=&quot;180&quot; src=&quot;/userfiles/091709/1171/CIMG5526.JPG&quot; alt=&quot;&quot; /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;img width=&quot;240&quot; height=&quot;180&quot; src=&quot;/userfiles/091709/1171/CIMG5540.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Hyde Park und Buckingham Palace&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;300&quot; height=&quot;225&quot; src=&quot;/userfiles/091709/1171/CIMG5544.JPG&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;St James Park&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;300&quot; height=&quot;225&quot; src=&quot;/userfiles/091709/1171/CIMG5588.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
G&amp;ouml;tz neue Heimat die Library des UCL ;)&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;F&amp;uuml;r eine kleine Stippvisite am Gleis 9 3/4 haben wir uns auch noch Zeit genommen und am Abend ging es noch f&amp;uuml;r ein Halbes in ein Pub um die Ecke.&lt;br /&gt;
&lt;br /&gt;
Am Sonntag war zum Gl&amp;uuml;ck besseres Wetter, so konnte man die wenigen verbleibenden Stunden noch richtig genie&amp;szlig;en.&lt;br /&gt;
Diesmal gings auf die Sightsing Meile, was man an den Ma&amp;szlig;en an Menschen sp&amp;uuml;rte ...&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img width=&quot;300&quot; height=&quot;225&quot; src=&quot;/userfiles/091709/1171/CIMG5599.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Tower of London&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;240&quot; height=&quot;320&quot; src=&quot;/userfiles/091709/1171/CIMG5607.JPG&quot; alt=&quot;&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;img width=&quot;240&quot; height=&quot;320&quot; src=&quot;/userfiles/091709/1171/CIMG5569.JPG&quot; alt=&quot;Big Ben&quot; /&gt;&lt;br /&gt;
nochmal der Tower und der Big Ben geh&amp;ouml;rt zum verregneten Samstag ;)&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;240&quot; height=&quot;320&quot; src=&quot;/userfiles/091709/1171/CIMG5620.JPG&quot; alt=&quot;&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;img width=&quot;240&quot; height=&quot;320&quot; src=&quot;/userfiles/091709/1171/CIMG5647.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Tower Bridge und Shakespeare&apos;s Globe&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;400&quot; height=&quot;300&quot; src=&quot;/userfiles/091709/1171/CIMG5626.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Im Kontrast die die City Hall und die Tower Bridge&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;400&quot; height=&quot;300&quot; src=&quot;/userfiles/091709/1171/CIMG5669.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Palace of Westminster&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;Mehr war leider in den paar Stunden nicht zu schafften, aber nach dem Wochenende wird mich London sicher noch mehrmals wiedersehen.&lt;br /&gt;
&lt;br /&gt;
Hervorzuheben ist sicher noch der HMV Besuch, bei dem wir beide uns nur schwer zur&amp;uuml;ck halten konnten&amp;nbsp;CDs zu kaufen ;)&lt;br /&gt;
&lt;br /&gt;
So viel erstmal von mir&lt;br /&gt;
Gr&amp;uuml;&amp;szlig;e aus Bham&lt;/p&gt;</description><pubDate>Thu, 19 Nov 2009 03:35:00 GMT</pubDate><guid>http://marcelinbirmingham.instantspot.com/blog/2009/11/18/Zu-Besuch-beim-G&#xf6;tz</guid></item><item><title>Best Undergraduate Degrees </title><link>http://jobsadvisor.instantspot.com/blog/2009/11/18/Best-Undergraduate-Degrees-</link><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;The 2009 &lt;i&gt;&lt;a href=&quot;http://www.payscale.com/best-colleges/degrees.asp&quot;&gt;PayScale College Salary Report&lt;/a&gt;&lt;/i&gt; Released.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;The list is based upon &lt;i&gt;PayScale&lt;/i&gt; Salary Survey data for full-time employees in the United States who possess a Bachelor&apos;s degree and no higher degrees and have majored in the subjects listed.&lt;br style=&quot;&quot; /&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br style=&quot;&quot; /&gt;
&lt;!--[endif]--&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;Take a look at the result!&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;This has something to do with your job search and your career.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;&lt;img align=&quot;top&quot; alt=&quot;&quot; src=&quot;http://steadyoffload.com:8080/172PXNRZYB.aHR0cDovL2djYXB0YWluLmNvbS9tYXJpdGltZS9ibG9nL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDA4LzA3L2VuZ2luZWVyLXdhbnRlZC5qcGc=....&quot; /&gt;&lt;br /&gt;
The Best Undergraduate Degrees By Salary (Best Listed First):&lt;b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Undergrad College Degree / Starting Median Salary / Mid-Career Median Salary&lt;/b&gt;&lt;br /&gt;
1. Aerospace &lt;b&gt;Engineering&lt;/b&gt; / $59,600 / $109,000&lt;br /&gt;
2. Chemical &lt;b&gt;Engineering&lt;/b&gt; / $65,700 / $107,000&lt;br /&gt;
3. Computer &lt;b&gt;Engineering&lt;/b&gt; / $61,700 / $105,000&lt;br /&gt;
4. Electrical &lt;b&gt;Engineering&lt;/b&gt; / $60,200 / $102,000&lt;br /&gt;
5. Economics / $50,200 / $101,000&lt;br /&gt;
6. Physics / $51,100 / $98,800&lt;br /&gt;
7. Mechanical &lt;b&gt;Engineering&lt;/b&gt; / $58,900 / $98,300&lt;br /&gt;
8. Computer Science / $56,400 / $97,400&lt;br /&gt;
9. Industrial &lt;b&gt;Engineering&lt;/b&gt; / $57,100 / $95,000&lt;br /&gt;
10. Environmental &lt;b&gt;Engineering&lt;/b&gt; / $53,400 / $94,500&lt;br /&gt;
&lt;br /&gt;
This means that college-bound students with an interest and talent for math- and science-related subjects should think about engineering as a major. When choosing a major, students need to think about not only their interests, but also their skills, talents, and personality. While employers consider communications one of the most important characteristics in potential employees, other important characteristics include analytical skills, ethics, leadership abilities, work experience, motivation/initiative, teamwork skills and technical skills.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;Think about it! &lt;br /&gt;
&lt;br style=&quot;&quot; /&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br style=&quot;&quot; /&gt;
&lt;!--[endif]--&gt;&lt;/p&gt;</description><pubDate>Wed, 18 Nov 2009 13:33:00 GMT</pubDate><guid>http://jobsadvisor.instantspot.com/blog/2009/11/18/Best-Undergraduate-Degrees-</guid></item><item><title>Thinking &apos;bout Career while on College</title><link>http://jobsadvisor.instantspot.com/blog/2009/11/18/Thinking-bout-Career-while-on-College</link><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; It&amp;rsquo;s really good to think about career and employment, but I think - over the course of the next 5 or six years, plans will change drastically.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Focus on doing well in school, but don&apos;t focus too hard on any one thing that you hedge your bets for success on. There are many paths... don&apos;t force one because you think it might be better - it might only be for some people.&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;
With that said there are a few things you can do to improve your chances:&lt;/p&gt;
&lt;p style=&quot;text-align: justify;&quot; class=&quot;MsoNormal&quot;&gt;&lt;strong&gt;&lt;br /&gt;
Strange advice #1&lt;/strong&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;&quot;&gt;&amp;nbsp;&lt;/span&gt;Control your image: Youtube, Facebook, Twitter and Myspace can make you look bad. You are growing up in a world of social-image permanence which no other generation has had. Bad behavior can be researched by your company. You can have fun, just make sure you and your friends put your best food forward on all these sites when possible. Also - you need to be on all these sites - professionally... just keep the image clean.&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;
&lt;strong&gt; Strange advice #2:&lt;/strong&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;&quot;&gt;&amp;nbsp;&lt;/span&gt;When you go to college, if you need a crappy job consider working for a screen printer. T-shirts have fast turnover, varying level of interest, provide you opportunities to market a high volume product, give you some level of creative outlet and testing, and can leave you with a negative profit margin if you overprint an unpopular T-Shirt. These are good experiences to have in college and are directly applicable to any marketing job in the real world.&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;
&lt;strong&gt; Strange advice #3:&lt;/strong&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;Econ is not Marketing - its good to understand, but Econ and Finance are measurements. Marketing is enticing people to buy something. Econ and finance can effectively set budgets - but creating a successful campaign can make you priceless as a marketeer... Neither is more important. Neither is in charge... Neither ensures that you&apos;ll reach the food chain - its an interdependent relationship. Both are god paths if you are at the top of your game. Maybe - just maybe, you have a bit more flexibility with an economics or finance degree...&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;&lt;strong&gt;&lt;br /&gt;
Strange advice #4:&lt;/strong&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;Stay computer savvy - particularly database savvy. Learn how SQL works, learn how Access works. Learn to leverage data. Learn statistics. Learn how to manipulate statistics. Learn how people are manipulating statistics you see.&lt;o:p&gt;&lt;br /&gt;
&lt;/o:p&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;
&lt;strong&gt; Strange advice #5:&lt;/strong&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;Blog on a financial or product target. Start now. Review advertisements, advertisement campaigns... poll your school. Start doing your own research... start reading the WSJ and learn how stuff works...&lt;/p&gt;
&lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot; class=&quot;MsoNormal&quot;&gt;&lt;img align=&quot;bottom&quot; style=&quot;width: 550px; height: 386px;&quot; src=&quot;http://medicblog999.files.wordpress.com/2009/08/thinking-outside-the-box.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</description><pubDate>Wed, 18 Nov 2009 06:19:00 GMT</pubDate><guid>http://jobsadvisor.instantspot.com/blog/2009/11/18/Thinking-bout-Career-while-on-College</guid></item><item><title>3 Quick Ways To Start Your Own Online Business In Less Than 24 Hours</title><link>http://internetbusiness.instantspot.com/blog/2009/11/14/3-Quick-Ways-To-Start-Your-Own-Online-Business-In-Less-Than-24-Hours</link><description>&lt;p&gt;The Internet and online business especially are becoming more and more popular by the day in todays world simply because people are starting to see the true benefits of the web, consumers are starting to trust the web more, and more importantly, the start up costs for a online business are next to nothing compared to the offline world of business start ups.&lt;br /&gt;
&lt;br /&gt;
The only set back most people run into when wanting to start one of their own online business is How and Where to get started.&lt;br /&gt;
&lt;br /&gt;
I did a search under the keyword term &quot;home based business&quot; and the search results returned 575,000,000 results for that keyword alone.&lt;br /&gt;
&lt;br /&gt;
That&apos;s a pretty intimidating number for someone wanting to start their own home based business on the web wouldn&apos;t you say?&lt;br /&gt;
&lt;br /&gt;
These were the same obstacles I was up against when I first ventured into the online world of business.&lt;br /&gt;
&lt;br /&gt;
But I didn&apos;t let that stop me and I hope that won&apos;t stop you either from wanting to start your own &lt;a href=&quot;http://www.webbizmarketingtips.com/&quot;&gt;internet business&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
So, I saved you the hassle and put together 3 of the quickest ways for ANYONE(that&apos;s You) to start their own online business with next to no investment required and can get started in less than 24 hours.&lt;br /&gt;
&lt;br /&gt;
Are you ready? I hope so.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Business Model #1. Affiliate Programs.&lt;br /&gt;
&lt;br /&gt;
Affiliate Programs are simply programs set up by the business owner for others to sign up for and promote for the business owner for a agreed upon commission(usually between 10 - 75%).&lt;br /&gt;
&lt;br /&gt;
The great thing about Affiliate marketing is it doesn&apos;t cost you a single penny to get started, you don&apos;t have to worry about refunds or customer service that come with owning your own product.&lt;br /&gt;
&lt;br /&gt;
All you have to worry about is generating the traffic to your affiliate link and collecting your commission cheques.&lt;br /&gt;
&lt;br /&gt;
This is the quickest way to get started online... Period!&lt;br /&gt;
&lt;br /&gt;
Here&apos;s a few Affiliate Directories to give you a start:&lt;br /&gt;
&lt;br /&gt;
Associate Programs - http://www.associateprograms.com&lt;br /&gt;
&lt;br /&gt;
Refer It - http://www.refer-it.com&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Business Model #2. Resell Rights.&lt;br /&gt;
&lt;br /&gt;
Resell Rights are simply products that have already been created and are available to anybody who is willing to pay for the Resell Rights to market them.&lt;br /&gt;
&lt;br /&gt;
The upside to this is you get Ready-To-Go websites with PROVEN sales letters that convert. The best part of all is... you get to keep 100% of the $Profits$.&lt;br /&gt;
&lt;br /&gt;
The draw back is you can&apos;t claim those products as your own. The original creator of the product maintains full rights. You just get to keep all the profits.&lt;br /&gt;
&lt;br /&gt;
Not such a bad trade off wouldn&apos;t you say?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Business Model #3. Private Label Resell Rights.&lt;br /&gt;
&lt;br /&gt;
Private Label Resell Rights are simply products that are ready to be branded with your name to it.&lt;br /&gt;
&lt;br /&gt;
What I mean by that is you get full rights to the product or products and are able to claim them as your own even though you didn&apos;t create them yourself.&lt;br /&gt;
&lt;br /&gt;
This is the fastest way for anyone to start a online business who really doesn&apos;t have any experience or knowledge on how to create their own products.&lt;br /&gt;
&lt;br /&gt;
The other really cool thing about Private Label Resell Rights products is they come with Ready-To-Go websites which then again saves you time and money in having to create them yourself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Well there you have it, 3 Quick Ways To Start Your Own Online Business In Less Than 24 Hours.&lt;br /&gt;
&lt;br /&gt;
The easiest way to locate any of the above via the search engines is by entering something like this into there search engine web form:&lt;br /&gt;
&lt;br /&gt;
affiliate programs + &quot;what your niche is&quot;&lt;br /&gt;
&lt;br /&gt;
(Note: make sure you use the quotations around what niche you want to target. Very Important!)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will save you time and target your search much better, where as if you were to just enter &apos;affiliate programs&apos; into the search engine web form you would get a gazillion results, leaving you frustrated.&lt;br /&gt;
&lt;br /&gt;
Now, the only thing left for you to do Right NOW is make a decision on what you would really enjoy doing as a business online.&lt;br /&gt;
&lt;br /&gt;
Once you&apos;ve figured that out the only thing left for you to do is put together a... Plan For $Profit$.&lt;/p&gt;</description><pubDate>Sun, 15 Nov 2009 03:45:00 GMT</pubDate><guid>http://internetbusiness.instantspot.com/blog/2009/11/14/3-Quick-Ways-To-Start-Your-Own-Online-Business-In-Less-Than-24-Hours</guid></item><item><title>Getting the Job You Want</title><link>http://jobsadvisor.instantspot.com/blog/2009/11/14/Getting-the-Job-You-Want</link><description>&lt;div align=&quot;justify&quot;&gt;
&lt;p&gt;&amp;nbsp;&lt;img align=&quot;left&quot; alt=&quot;&quot; src=&quot;http://herculesrelocation.com/clientele/clientele.jpg&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&lt;font style=&quot;font-size: 10pt; line-height: 130%;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot;&gt;The career and employment world is inundated with jobseekers, many of whom are applying for the very same jobs as you. Disappointing? Sure. Hopeless? No way.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; Many smart companies are using the deluge of talent saturating the job market to improve their talent base, and in the book &lt;em&gt;Get the Job You Want Even When No One&apos;s Hiring,&lt;/em&gt; [Wiley, 2009] executive career coach Ford Myers [ExecuNet] details how to distinguish yourself from the competition and find a great job even in these difficult times.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; In this exclusive interview of ExecuNet Editor Will Flamm&amp;eacute; asks the author to discuss the elements of a successful approach to job search. Here&apos;s an excerpt:&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Q. What are the most important job search tools?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot;&gt;&lt;br /&gt;
&lt;strong&gt;A.&lt;/strong&gt; Candidates need to stop relying exclusively on their r&amp;eacute;sum&amp;eacute;, which is actually one of the least important job search tools, in my opinion. Vital tools include the professional biography, target company list, testimonials sheet, professional references list, networking agenda, accomplishment stories, positioning statement and so forth. Using all these tools &amp;quot;synergistically&amp;quot; takes some education and practice &amp;mdash; but once the approach is mastered, it generates exceptional results.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Q. What role does networking play in one&apos;s search for the right job?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot;&gt;&lt;br /&gt;
&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.&lt;/strong&gt; I&apos;m telling my clients they should be spending 90 percent of their time networking. For people in career transition, networking is no longer part of their job search &amp;mdash; networking is their job search! Until someone comes up with a better idea, networking is still the single most effective means of researching, identifying and securing the RIGHT position. Of course, there is a right way and a wrong way to network &amp;mdash; so I&apos;m obviously talking about a structured, proven, effective approach that consistently leads to interviews and eventually, job offers.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Q. How does an online presence help in a job search, and how does one go about creating such a presence?&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Verdana&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot;&gt;&lt;br /&gt;
&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A.&lt;/strong&gt; In today&apos;s world, executives MUST have an online presence. It has to be positive, and it needs to project the sort of image you desire. This is what my colleague Eric Kramer calls &amp;quot;Online Identity Optimization&amp;quot; (OIO). Job seekers can create their online presence by posting their r&amp;eacute;sum&amp;eacute;s online and by using blogs, personal websites, email campaigns and social media websites (such as LinkedIn). It&apos;s also a good idea to buy the domain of your own name (www.yourname.com). Having a strong web presence is a great way to differentiate yourself.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;Excerpt: ExecuNet&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
&lt;/div&gt;</description><pubDate>Sat, 14 Nov 2009 16:29:00 GMT</pubDate><guid>http://jobsadvisor.instantspot.com/blog/2009/11/14/Getting-the-Job-You-Want</guid></item><item><title>Strategy video games</title><link>http://lovelya.instantspot.com/blog/2009/11/13/Strategy-video-games</link><description>&lt;p&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.5pt; font-family: &amp;quot;Times New Roman&amp;quot;&quot;&gt;&lt;font size=&quot;3&quot;&gt;Strategy games played on computers generally take one of four archetypal forms, depending on whether the game is turn-based or real-time and whether the game&apos;s focus is upon military strategy or tactics.Real time strategy game usually has a very detailed story line and are generally role&lt;span style=&quot;color: #ff9900&quot;&gt; &lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;play online games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Some examples are: Age of Empires, Command &amp;amp; Conquer, StarCraft and Total War series.RTS games have the events of the story happening in real time in the game (the flow of the story does not pause if the player stops moving his/her units).&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;The two distinct types of strategy games are Real-time strategy in which players make in game actions at the same time and Turn-based strategy in which players take turns to perform in game actions.This is perhaps the most realistic type of&lt;span style=&quot;color: #ff9900&quot;&gt; &lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;strategy games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;. This type of strategy game is not &amp;quot;free flowing&amp;quot;, i.Most real time strategy games offer the player an almost-true world which can experience climate/weather/day-night change (depending on the game). e.Some very fine examples would be Age of Empires, Stronghold, Age of Mythology and Company of Heroes.Real-time Strategy Game.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;A real-time strategy game (RTS) is a video game in which events unfold as you are issuing commands (as opposed to, say, chess, where the players take turns issuing commands).&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;here a player gives turns to move his units.Its more specific meaning are games in which you must mine resources to build a base of increasing sophistication, which in turn lets you build more sophisticated units, which in turn lets you achieve the mission objectives (often but not always to destroy your enemy&amp;rsquo;s base).&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;He/She has certain limitations of moving units (like restricted number of moves for each unit).Games that lack the resource mining aspect are called Tactical Real-Time Strategy Games.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;After a user completes his/her turn, the opponent starts the turn.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;o:p&gt;&lt;font face=&quot;Times New Roman&quot; size=&quot;3&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;Dune II is widely considered to be the first real-time strategy game.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;In this alternate way the game proceeds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;Real-time Strategy Games offer a blend of action and strategy.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Examples: Poxnora, Gunrox, Silent Storm and Steel Panthers: World at War! as well as UniWar.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Nov 2009 21:34:00 GMT</pubDate><guid>http://lovelya.instantspot.com/blog/2009/11/13/Strategy-video-games</guid></item><item><title>Powerful Message: 7%</title><link>http://jobsadvisor.instantspot.com/blog/2009/11/11/Powerful-Message-7</link><description>&lt;div align=&quot;justify&quot;&gt;
&lt;p&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&lt;img align=&quot;left&quot; alt=&quot;&quot; src=&quot;http://i276.photobucket.com/albums/kk10/lab2000/Christian%20Graphics/I_LoveJesus.jpg&quot; /&gt;&amp;nbsp;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;A holy man was having a conversation with God one day and said, &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&apos; &lt;span style=&quot;&quot;&gt;God , I would like to&lt;/span&gt; &lt;span style=&quot;&quot;&gt;know what Heaven and Hell are like.&apos; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; God &amp;nbsp;led the holy man to two doors.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; He opened one of the doors and the holy man looked in.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; In the middle of the room was a&lt;/span&gt; &lt;span style=&quot;&quot;&gt;large round table. &amp;nbsp;In the middle of the table was a large pot of stew, which smelled delicious and made the holy man&apos;s mouth water.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; The people sitting around the table were thin and sickly. &amp;nbsp;They appeared to be famished.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; They were holding spoons with very long handles, that were strapped to their arms and each found it possible to reach into the pot of stew and take a&lt;/span&gt; &lt;span style=&quot;&quot;&gt;spoonful. &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; But because the handle was&lt;/span&gt; &lt;span style=&quot;&quot;&gt;longer than their arms, they could not get the spoons back into their mouths.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; The holy man shuddered at the sight of their misery and suffering.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; God &amp;nbsp;said, &apos;You have seen Hell.&apos;&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; They went to the next room and opened the door. &amp;nbsp;It was exactly the same as the first one.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; There was the large round table with the large pot of stew which made the holy man&apos;s mouth water.&lt;/span&gt; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; The people were equipped with the same long-handled spoons,&lt;/span&gt; &lt;span style=&quot;&quot;&gt;but here the people were well nourished and plump, laughing and talking. &amp;nbsp;The holy man said,&lt;/span&gt; &lt;span style=&quot;&quot;&gt;&apos;I don&apos;t understand&lt;/span&gt;.&apos; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; It is simple,&apos; said &amp;nbsp;God .&lt;/span&gt; &amp;nbsp;&apos;It &lt;span style=&quot;&quot;&gt;requires but one skill. &amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; You see they have learned to feed each&lt;/span&gt; &lt;span style=&quot;&quot;&gt;other, while the greedy think only of themselves.&apos;&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt;&lt;span style=&quot;&quot;&gt; Its estimated 93%&lt;/span&gt; &lt;span style=&quot;&quot;&gt;won&apos;t forward this. &amp;nbsp;If you are one of the 7% who will, forward this with the title &apos;7%&apos;.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt; I&apos;m in the 7%&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Comic Sans MS&amp;quot;;&quot;&gt; Remember that I will always share my spoon with you.&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; line-height: 115%; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;/div&gt;</description><pubDate>Wed, 11 Nov 2009 17:25:00 GMT</pubDate><guid>http://jobsadvisor.instantspot.com/blog/2009/11/11/Powerful-Message-7</guid></item><item><title>Sample Application Letter</title><link>http://jobsadvisor.instantspot.com/blog/2009/11/11/Sample-Application-Letter</link><description>&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;&lt;img align=&quot;right&quot; src=&quot;http://www.progolfseattle.com/images/letter.jpg&quot; alt=&quot;&quot; /&gt;October 26, 2009&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;Panay, Clarin, &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;7200 Occidental&amp;nbsp; USA&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;09067510032&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;Carlotabiljr08@gmail.com&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;The Manager&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;Universal Creative Advertising&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;Yacapin- Kabayo Sts. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;Cagayan States&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;Dear Sir/Maam,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;I am interested in applying for an entry level position as Graphic Artist as posted (in a banner) in front of your office. I am a recent graduate of &lt;st1:placename w:st=&quot;on&quot;&gt;La Salle&lt;/st1:placename&gt; &lt;st1:placetype w:st=&quot;on&quot;&gt;University&lt;/st1:placetype&gt; &amp;ndash;&lt;st1:place w:st=&quot;on&quot;&gt;&lt;st1:placename w:st=&quot;on&quot;&gt;Ozamiz&lt;/st1:placename&gt; &lt;st1:placetype w:st=&quot;on&quot;&gt;City&lt;/st1:placetype&gt;&lt;/st1:place&gt; where I completed BS in Computer Science. &lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;As requested, I am enclosing my resume and my references.&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;
&lt;span style=&quot;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;The opportunity presented is very interesting, and I believe that my strong technical experience and education will make me a very competitive candidate for the position that you may grant. The key strengths that I possess include:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul type=&quot;square&quot; style=&quot;margin-top: 0in;&quot;&gt;
    &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; text-align: justify;&quot;&gt;&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;font-size: 10pt; color: black;&quot;&gt;I have successfully designed, and developed software      application during my thesis project.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
    &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; text-align: justify;&quot;&gt;&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;font-size: 10pt; color: black;&quot;&gt;I can work individually and a good team player.&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
    &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; text-align: justify;&quot;&gt;&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;font-size: 10pt; color: black;&quot;&gt;I strive for continued excellence and I am willing to learn      new things about Multimedia.&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
    &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; text-align: justify;&quot;&gt;&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;font-size: 10pt; color: black;&quot;&gt;I am knowledgeable in Multimedia Applications such as Adobe      Photoshop, Cool Edit, Sony Vegas, &amp;amp; Corel Draw.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt; &lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;With my degree, I have a full understanding of the full life cycle of a software development project. Please see my resume for additional information on my experience.&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;I can be reached anytime via my cellphone number &lt;/span&gt;&lt;/span&gt;09067510032&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;. Thank you for your time and consideration. I look forward to speak with you about this employment opportunity.&lt;/span&gt;&lt;/span&gt;&lt;br style=&quot;&quot; /&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;font-size: 10pt; color: black;&quot;&gt;Sincerely, &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;&lt;br /&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span class=&quot;f51&quot;&gt;&lt;span style=&quot;font-size: 10pt; color: black;&quot;&gt;Carlo S. Tabil &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; color: black;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;</description><pubDate>Wed, 11 Nov 2009 17:17:00 GMT</pubDate><guid>http://jobsadvisor.instantspot.com/blog/2009/11/11/Sample-Application-Letter</guid></item><item><title>Strategy video games</title><link>http://lovelya.instantspot.com/blog/2009/11/09/Strategy-video-games</link><description>&lt;p&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.5pt; font-family: &amp;quot;Times New Roman&amp;quot;&quot;&gt;&lt;font size=&quot;3&quot;&gt;Strategy games played on computers generally take one of four archetypal forms, depending on whether the game is turn-based or real-time and whether the game&apos;s focus is upon military strategy or tactics.Real time strategy game usually has a very detailed story line and are generally role&lt;span style=&quot;color: #ff9900&quot;&gt; &lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;play online games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Some examples are: Age of Empires, Command &amp;amp; Conquer, StarCraft and Total War series.RTS games have the events of the story happening in real time in the game (the flow of the story does not pause if the player stops moving his/her units).&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;The two distinct types of strategy games are Real-time strategy in which players make in game actions at the same time and Turn-based strategy in which players take turns to perform in game actions.This is perhaps the most realistic type of&lt;span style=&quot;color: #ff9900&quot;&gt; &lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;strategy games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;. This type of strategy game is not &amp;quot;free flowing&amp;quot;, i.Most real time strategy games offer the player an almost-true world which can experience climate/weather/day-night change (depending on the game). e.Some very fine examples would be Age of Empires, Stronghold, Age of Mythology and Company of Heroes.Real-time Strategy Game&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;font size=&quot;3&quot;&gt;A real-time strategy game (RTS) is a video game in which events unfold as you are issuing commands (as opposed to, say, chess, where the players take turns issuing commands).&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;here a player gives turns to move his units.Its more specific meaning are games in which you must mine resources to build a base of increasing sophistication, which in turn lets you build more sophisticated units, which in turn lets you achieve the mission objectives (often but not always to destroy your enemy&amp;rsquo;s base).&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;He/She has certain limitations of moving units (like restricted number of moves for each unit).Games that lack the resource mining aspect are called Tactical Real-Time Strategy Games.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;After a user completes his/her turn, the opponent starts the turn.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;o:p&gt;&lt;font face=&quot;Times New Roman&quot; size=&quot;3&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;font size=&quot;3&quot;&gt;Dune II is widely considered to be the first real-time strategy game.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;In this alternate way the game proceeds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;font size=&quot;3&quot;&gt;Real-time Strategy Games offer a blend of action and strategy.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Examples: Poxnora, Gunrox, Silent Storm and Steel Panthers: World at War! as well as UniWar.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;</description><pubDate>Mon, 09 Nov 2009 21:44:00 GMT</pubDate><guid>http://lovelya.instantspot.com/blog/2009/11/09/Strategy-video-games</guid></item><item><title>Strategy Game Programming</title><link>http://lovelya.instantspot.com/blog/2009/11/09/Strategy-Game-Programming</link><description>&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;font size=&quot;3&quot;&gt;I will develop a C skeleton for strategy games to which only game-specific code will have to be added, but which takes care of the rest of the strategy game playing part.Strategy games offer a wide variety of fun and exciting ways for players to test their ability to outthink and outmaneuver their opponent on the way to victory.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;Perhaps you wonder whether you should read this stuff.In broad terms, strategy video games typically fall into two categories&amp;mdash;turn-based and real-time.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;What does this guy know anyway.Turn-based&lt;span style=&quot;color: #ff9900&quot;&gt; &lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;strategy war games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; consist of a series of distinct moves, much like in a chess match, in which there are definite starts and stops with each move.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;As an avid chess player, I wanted to write a chess program as soon as I got my first computer, an Atari ST back in 1987 or so.Real-time strategy games (also known as RTS games) are games in which the action plays out on an ongoing basis as the player implements tactics and strategies for success..&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Knowing nothing of all the things I&apos;m writing about now, I failed miserably.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;I went back to square one and started over with simpler things.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;I wrote a connect four program, and a program to solve the game of Solitaire for my grandmother, and that was about that for a long time.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;In 1996 I started a checkers program which today has become the de-facto standard for checkers, since it is - at the time of writing - by far the best free checkers program around.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;I generated the 8-piece endgame database for checkers, and also wrote an automated opening book generator for checkers.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Finally, in the summer of 2002 I wrote a chess program.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;It&apos;s a decent amateur program, but nothing more.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;I never found the time to work on it seriously - I&apos;m sure I could improve it, however I have no idea whether it would become a really good program.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;</description><pubDate>Mon, 09 Nov 2009 21:37:00 GMT</pubDate><guid>http://lovelya.instantspot.com/blog/2009/11/09/Strategy-Game-Programming</guid></item><item><title>Abstract strategy</title><link>http://lovelya.instantspot.com/blog/2009/11/09/Abstract-strategy</link><description>&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;font size=&quot;3&quot;&gt;In abstract strategy games, the game is only loosely tied to a real-world theme, if at all.Wargames are simulations of military battles, campaigns or entire wars.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;The mechanics do not attempt to simulate reality, but rather serve the internal logic of the game.Players will have to consider situations that are analogous to the situations faced by leaders of historical battles. &lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;o:p&gt;&lt;font face=&quot;Times New Roman&quot; size=&quot;3&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;font size=&quot;3&quot;&gt;A purist&apos;s definition of an abstract strategy game requires that it cannot have random elements or hidden information.As such, war games are usually heavy on simulation elements, and while they are all &amp;quot;strategy games&amp;quot;, they can also be &amp;quot;strategic&amp;quot; or &amp;quot;tactical&amp;quot; in the military jargon sense.Traditionally, &lt;span style=&quot;color: #ff9900&quot;&gt;&lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;war games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; have been played either with miniatures, using physical models of detailed terrain and miniature representations of people and equipment to depict the game state; or on a board, which commonly uses cardboard counters on a hex map.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;However, many games are commonly classed as abstract strategy games which do not meet these criteria.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;font size=&quot;3&quot;&gt;Popular miniature wargames include Warhammer 40,000 or its fantasy counterpart Warhammer Fantasy.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Games such as Backgammon, Octiles, Can&apos;t Stop, Sequence and Mentalis have all been described as &amp;quot;abstract strategy&amp;quot;[citation needed], despite having a luck element.Popular strategic board wargames include Risk, Axis and Allies, and Diplomacy.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;A smaller category of non-perfect abstract &lt;span style=&quot;color: #ff9900&quot;&gt;&lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;strategy games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; incorporate hidden information without using any random elements.Advanced Squad Leader is a successful tactical scale wargame..&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;An example is Stratego. &lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;This type of game is an attempt to simulate the decisions and processes inherent to some real-world situation.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Most of the mechanics are chosen to reflect what the real-world consequences would be of each player action and decision.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Abstract games cannot be completely divided from simulations and so games can be thought of as existing on a continuum of almost pure abstraction (like Abalone) to almost pure simulation (like Strat-o-Matic Baseball).&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;</description><pubDate>Mon, 09 Nov 2009 21:35:00 GMT</pubDate><guid>http://lovelya.instantspot.com/blog/2009/11/09/Abstract-strategy</guid></item><item><title>For the video game genre</title><link>http://lovelya.instantspot.com/blog/2009/11/09/For-the-video-game-genre</link><description>&lt;p&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.5pt; font-family: &amp;quot;Times New Roman&amp;quot;&quot;&gt;&lt;font size=&quot;3&quot;&gt;Once you&apos;ve found your sign-up offer, you need to input the specified code while making your deposit.After a seven-year hiatus, Electronic Arts Inc.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;There will be a field for it on the deposit screen.(NASDAQ: ERTS) today announced the return of Red Alert, one of the most beloved and best-selling real time strategy (RTS) series of all time.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;If you sign-up and make a deposit without putting in the correct information, your opportunity to get extra cash to play with on that casino will be lost.Command &amp;amp; Conquer.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;Once you&apos;ve put in the info and made the deposit, you will need to meet a wagering requirement.: Red Alert.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;This is how much you must wager before the extra money is released into your account (or, if it is a &amp;quot;sticky bonus&amp;quot; that cannot be withdrawn, how much you must wager before you can withdraw any money from your account). 3, for the PC, Xbox 360TM video game and entertainment system and the PLAYSTATION.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;The wagering requirement will usually be a multiple of the added cash, your deposit or both.3 &lt;span style=&quot;color: #ff9900&quot;&gt;&lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;computer games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; entertainment system, takes players on an epic adventure to a breathtaking alternate future spawned by time travel run amok . &lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;o:p&gt;&lt;font face=&quot;Times New Roman&quot; size=&quot;3&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;font size=&quot;3&quot;&gt;&amp;ldquo;It&amp;rsquo;s been too long.Developed by EA Los Angeles, Red Alert 3 breaks new ground in the RTS genre, featuring a fully co-operative campaign while bringing back the series&amp;rsquo; light-hearted style and classic, action-oriented gameplay. &amp;rdquo; said Chris Corry, Executive Producer at EALA.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.5pt; font-family: &amp;quot;Times New Roman&amp;quot;&quot;&gt;&lt;font size=&quot;3&quot;&gt;&amp;ldquo;The Red Alert games are known for challenging hardcore strategy gamers with depth, variety, and innovative gameplay.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;ldquo;Fans have been waiting for a new Red Alert game for seven years, and we&amp;rsquo;re working hard to ensure its well worth the wait.But they also belong to that rare breed of games that can draw in more casual&lt;span style=&quot;color: #ff9900&quot;&gt; &lt;a href=&quot;http://www.warheroonline.com/&quot;&gt;&lt;span style=&quot;color: #ff9900&quot;&gt;play online games&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; with their over-the-top stories, instantly accessible mechanics, and straight-to-the-fun design,&amp;rdquo; said Mike Verdu, General Manager of EALA.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;The team is staying true to the series&amp;rsquo; roots while adding new elements like a co-operatively played story-driven campaign, an astounding new faction that will shake-up the Red Alert universe as we know it, and units that will help make Red Alert 3 everything our fans have been waiting for.&amp;ldquo;With Red Alert 3, our team is continuing that proud tradition by introducing genre-first features like co-operative campaign play, which rewards veterans and casual players alike.&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;And by bringing naval combat into the heart of the game design, we&amp;rsquo;re transporting that fast, fun and fluid C&amp;amp;C gameplay to the high-seas in ways that you&amp;rsquo;ve never seen before.In Red Alert 3, friends and family can always have your back!&amp;rdquo; &lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0cm 0cm 0pt&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size: 10.5pt&quot;&gt;&lt;o:p&gt;&lt;font face=&quot;Times New Roman&quot; size=&quot;3&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;</description><pubDate>Mon, 09 Nov 2009 21:33:00 GMT</pubDate><guid>http://lovelya.instantspot.com/blog/2009/11/09/For-the-video-game-genre</guid></item><item><title>Here&apos;s a great way to uncover hidden jobs </title><link>http://jobsadvisor.instantspot.com/blog/2009/11/08/Heres-a-great-way-to-uncover-hidden-jobs-</link><description>&lt;p align=&quot;justify&quot;&gt;&lt;img align=&quot;left&quot; src=&quot;http://www.sd381.k12.id.us/afhs/images/stories/JobWanted.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;
&lt;p align=&quot;justify&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Though slow, the recovery is prompting employers to add new executive jobs as they see light at the end of the tunnel. &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; But as Mark Anderson, ExecuNet President and Chief Economist points out, finding these opportunities will be more challenging than it was before the recession. &amp;quot;Companies are less likely to advertise openings in this environment given the sheer volume of talent in the market and their focus on improving existing leadership teams. This means infiltrating the hidden job market will be more important than ever before.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Creating a target company list will give you a starting point for uncovering the hidden jobs. But how do you create a target list?&lt;br /&gt;
&lt;br /&gt;
Here are a few great approaches our career experts have shared with ExecuNet members:&lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
&lt;ul type=&quot;square&quot; style=&quot;color: rgb(204, 0, 51); margin-top: 5px;&quot;&gt;
    &lt;li&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot; color=&quot;#333333&quot;&gt;Use online job postings as a guide to those companies that are hiring and what those companies needs are, recommends Rick Balsiger, president of Balsiger Partners LLC. You can then match your unique skills and abilities against the needs of the companies you&apos;ve researched to compile your target list.&lt;/font&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&lt;br /&gt;
    &lt;br /&gt;
    &lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot; color=&quot;#333333&quot;&gt;Don Orlando, a career coach and president of Alabama-based The McLean Group, suggests connecting with the economic development officer at the local chamber of commerce. &amp;quot;You are not asking him or her for a job,&amp;quot; Orlando stresses. &amp;quot;The director of economic development relies on the quality of the local workforce to influence corporate decision-makers to expand their presence in your backyard. You are a critical part of that workforce.&amp;quot; The economic development officer may know what companies are planning to relocate or expand in your area, and a referral from this individual could increase your chances of securing an interview, notes Orlando.&lt;/font&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&lt;br /&gt;
    &lt;br /&gt;
    &lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot; color=&quot;#333333&quot;&gt;Frank Slugaski, an executive coach with Connecticut-based Hire Aspirations, suggests visiting the local town hall and taking a look at the tax roll. &amp;quot;Companies are usually the top payers of taxes and can be easily identified,&amp;quot; he says.&lt;/font&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&lt;br /&gt;
    &lt;br /&gt;
    &lt;/font&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Once you&apos;ve created your target list, it&apos;s time to share your list with your existing network of contacts to see if one of your contacts either works at one of the companies or knows someone who does. If your existing networking can&apos;t help you get an interview with your target companies, then it&apos;s time for you to turn to the social networking sites to make new connections with new contacts who work at or &amp;quot;have an in&amp;quot; at one or more of the companies on your list.&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font size=&quot;2&quot; face=&quot;Verdana&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; There are many great executive jobs out there! But they take skill, ingenuity and a long-term focus to get. Try these approaches to uncover the job that&apos;s right for you. And for more help with your job search, visit ExecuNet.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;5&quot; border=&quot;0&quot;&gt;
    &lt;tbody&gt;
        &lt;tr&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td bgcolor=&quot;#ffffff&quot;&gt;&lt;font face=&quot;Verdana, Helvetica, Arial, sans-serif&quot; style=&quot;font-size: 10pt; line-height: 130%;&quot;&gt;&lt;br /&gt;
            &lt;/font&gt;&lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;</description><pubDate>Mon, 09 Nov 2009 01:57:00 GMT</pubDate><guid>http://jobsadvisor.instantspot.com/blog/2009/11/08/Heres-a-great-way-to-uncover-hidden-jobs-</guid></item><item><title>GatorMoto Low Speed Vehicles Qualify for Extensive Tax Credit</title><link>http://gainesvillescooters.instantspot.com/blog/2009/11/07/GatorMoto-Low-Speed-Vehicles-Qualify-for-Extensive-Tax-Credit</link><description>&lt;p&gt;Receiving up to a $5,335 tax credit for purchasing an electric vehicle in 2009 may seem hard to believe, but is possible. In effort to go green, from now till December 31, 2009, the government is offering the tax credits of up to $5,335 for qualified street legal electric vehicles. After the New Year however, the electric vehicle tax credit will lower significantly.&lt;/p&gt;
&lt;p&gt;Although most of the low speed electric vehicles look like golf carts at first glance, they are completely different. These vehicles are street-legal on roads that have speed limits up to 35 mph, have seat belts, turn signals, windshields and wipers, can travel 40 to 50 miles on a single charge, and can go up to 25 miles per hour.&lt;/p&gt;
&lt;p&gt;Justin Jackrel, owner and president of &lt;a href=&quot;http://www.gatormoto.com/&quot; target=&quot;_blank&quot; mce_href=&quot;http://www.GatorMoto.com&quot;&gt;GatorMoto&lt;/a&gt; at 7065 NW 22nd St, takes pains to point out that they aren&amp;rsquo;t the same carts used on golf courses or darting across streets in gated communities. GatorMoto sells&lt;a href=&quot;http://www.gatormoto.com/index.cfm?Action=ViewCategory&amp;amp;Category=18&quot; target=&quot;_blank&quot; mce_href=&quot;http://www.gatormoto.com/index.cfm?Action=ViewCategory&amp;amp;Category=18&quot;&gt; street legal golf carts&lt;/a&gt; and a line of low speed vehicles, named the Bubble Buddies. They range from two-passenger to eight-passenger and come in an assortment of colors. With prices starting at only $6,995 for a fully loaded vehicle, the end cost after the credits can be as low as only $2,160.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;We cannot build them as fast as the orders are coming in,&amp;rdquo; Jackrel said. &amp;ldquo;We placed large orders to make sure we have enough in time for the holidays, but the last few weeks have been crazy around here. Our current inventory is low and most of the vehicles on the future build schedule are already pre ordered!&amp;rdquo;&lt;/p&gt;
&lt;p&gt;There is no better time than now to purchase an electric vehicle, and with gas prices on the rise, you are sure to love the fact that they only take one cent of electricity to go one mile.&lt;/p&gt;</description><pubDate>Sat, 07 Nov 2009 06:13:00 GMT</pubDate><guid>http://gainesvillescooters.instantspot.com/blog/2009/11/07/GatorMoto-Low-Speed-Vehicles-Qualify-for-Extensive-Tax-Credit</guid></item><item><title>What makes my Mocha Special</title><link>http://polanskihaven.instantspot.com/blog/2009/11/05/What-makes-my-Mocha-Special</link><description>&lt;p&gt;
&lt;meta content=&quot;text/html; charset=utf-8&quot; http-equiv=&quot;CONTENT-TYPE&quot;&gt;
&lt;title&gt;&lt;/title&gt;
&lt;meta content=&quot;OpenOffice.org 2.4  (Linux)&quot; name=&quot;GENERATOR&quot;&gt; 	&lt;style type=&quot;text/css&quot;&gt;
		&lt;!-- 
		BODY,DIV,TABLE,THEAD,TBODY,TFOOT,TR,TH,TD,P { font-family:&quot;Arial&quot;; font-size:x-small }
		 --&gt;&lt;/style&gt;  &lt;/meta&gt;
&lt;/meta&gt;
&lt;/p&gt;
&lt;div align=&quot;justify&quot;&gt;I am at Gloria Jean&apos;s Coffee last Wednesday sipping my mocha-latte when a question just popped out in my mind. I am thinking where did mocha come from and how it was made. We know chocolate comes from cacao beans and coffee comes from coffee beans. I was in this state when Jill one of my girl friends handed me a &lt;a href=&quot;http://www.superiorpapers.com/&quot; target=&quot;_blank&quot;&gt;research paper&lt;/a&gt; about coffee and it&apos;s variants. I learned that mocha got its name from a port city in Yemen. It also has an Arabic descent and it&apos;s taste was derived from a coffee bean that is generally from &lt;a href=&quot;http://en.wikipedia.org/wiki/Mocha,_Yemen&quot; target=&quot;_blank&quot;&gt;Mocha, Yemen&lt;/a&gt;. What I really love is the aroma of mocha and when it&apos;s mixed with cream, it really soothes my senses. Mocha-latte always keeps me up especially at night where I assist my sister in &lt;a href=&quot;http://www.superiorpapers.com/homework.php&quot; target=&quot;_blank&quot;&gt;homework help&lt;/a&gt; task. The best part of mocha is that it can be made in other products other than a beverage. It can be a flavor of an ice cream, cake and other sweets.&lt;/div&gt;</description><pubDate>Thu, 05 Nov 2009 17:31:00 GMT</pubDate><guid>http://polanskihaven.instantspot.com/blog/2009/11/05/What-makes-my-Mocha-Special</guid></item><item><title>November Monthly Meeting - CFHFDP Chap 3: The Decorator Pattern</title><link>http://dfwcfug.instantspot.com/blog/2009/11/05/November-Monthly-Meeting--CFHFDP-Chap-3-The-Decorator-Pattern</link><description>&lt;p&gt;This meeting will be a continuation of our series: Head First Design Patterns for ColdFusion (CFHFDP).&amp;nbsp; We are taking each chapter out of the HFDP book and writing ColdFusion implementations of each pattern that is covered. So far we have broken down the Strategy Pattern and the Observer Pattern.&amp;nbsp; November brings us to Chapter 3 - The Decorator Pattern.&amp;nbsp; Adrian Moreno will be presenting this topic as our main session of the night.&amp;nbsp;&lt;/p&gt;
&lt;div class=&quot;div-field clearfix&quot;&gt;
&lt;div class=&quot;div-value&quot;&gt;
&lt;div class=&quot;ugc-html&quot;&gt;
&lt;p&gt;We have had some great feedback on this series, so make sure to join us as we continue.&amp;nbsp; If you wish to catch up on Chapters 1 and 2, you can watch the recordings of those sessions at the links below:&lt;/p&gt;
&lt;p&gt;Dave Shuck - CFHFDP - Chapter 1: The Strategy Pattern&lt;br /&gt;
&lt;a href=&quot;http://experts.na3.acrobat.com/p50727167/&quot; rel=&quot;nofollow&quot;&gt;http://experts.na3.acrobat.com/p50727167/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Adam Presley - CFHFDP - Chapter 2: The Observer Pattern&lt;br /&gt;
&lt;a href=&quot;http://experts.na3.acrobat.com/p34878675/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://experts.na3.acrobat.com/p34878675/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The intro topic for the first hour is currently TBA as of the time of this posting. If you have a topic you would like to share, please contact Dave Shuck.&lt;/p&gt;
&lt;p&gt;Additionally, we may be tackling 2 chapters, so if you are interested in presenting on Chap 4 - The Factory Pattern or Chap 5 - The Singleton Pattern please contact Dave Shuck.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class=&quot;div-field clearfix&quot;&gt;
&lt;div class=&quot;div-label&quot;&gt;&lt;strong&gt;Date and Time:&lt;/strong&gt;&lt;/div&gt;
&lt;div class=&quot;div-value&quot;&gt;
&lt;div class=&quot;ft-date-event&quot;&gt;&lt;span title=&quot;GMT-6 Central Time US &amp;amp; Canada, Guadalajara, Mexico City&quot;&gt;November 10, 2009 from 6:30pm - 9:30pm&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;div-field clearfix&quot;&gt;
&lt;div class=&quot;div-label&quot;&gt;&lt;strong&gt;Address&lt;/strong&gt;:&lt;/div&gt;
&lt;div class=&quot;div-value&quot;&gt;
&lt;div class=&quot;ft-address&quot;&gt;Paladin Consulting, Inc.&lt;br /&gt;
3030 LBJ Freeway, Suite 1140&lt;br /&gt;
Dallas, TX 75234&lt;br /&gt;
&lt;a href=&quot;http://maps.google.com/maps?q=Paladin+Consulting%2C+Inc.+3030+LBJ+Freeway%2C+Suite+1140+Dallas%2C+TX+75234&quot; class=&quot;a-subtle&quot; title=&quot;http://groups.adobe.com/common/icons/map.gif&quot; target=&quot;_new&quot;&gt;google map&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><pubDate>Thu, 05 Nov 2009 16:31:00 GMT</pubDate><guid>http://dfwcfug.instantspot.com/blog/2009/11/05/November-Monthly-Meeting--CFHFDP-Chap-3-The-Decorator-Pattern</guid></item><item><title>Pushing Weight: Back to Basics</title><link>http://ajlcom.instantspot.com/blog/2009/11/03/Pushing-Weight-Back-to-Basics</link><description>&lt;p&gt;This post is going to be the kick-off for a new series of blog posts tracking my strength and fitness progress.&amp;nbsp; In the past I have followed complex body-part split routines that focused more on bodybuilding, with a secondary goal of getting stronger.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Back to Basics&lt;/strong&gt; is my simple plan.&amp;nbsp; Eat enough food to keep the scale moving up (.5 lb to 1lb per week) and strive to get stronger in a few basic lifts.&amp;nbsp; This approach is very different from what I am used to in terms of volume and variation.&amp;nbsp; As long as strength continues to increase, then I will consider this a successful routine.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Routine&lt;/strong&gt; consists of four workout days with a focus on Squat, Deadlift, Bench, Overhead Press.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Workout 1 - Lower&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Squat (6 sets / heavy)&lt;/li&gt;
    &lt;li&gt;Deadlift (4 or 5 sets / moderate)&lt;/li&gt;
    &lt;li&gt;Calves&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Workout 2 - Upper&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Bent over Barbell Row ( 3 sets / moderate)&lt;/li&gt;
    &lt;li&gt;Bench (5 sets /&amp;nbsp; heavy)&lt;/li&gt;
    &lt;li&gt;Overhead Press (4 or 5 sets / moderate)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Workout 3 - Lower&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Deadlift (5 sets / heavy)&lt;/li&gt;
    &lt;li&gt;Squats (5 sets / moderate)&lt;/li&gt;
    &lt;li&gt;Calves&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Workout 4 - Upper&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Pull - ups (4 sets / bodyweight)&lt;/li&gt;
    &lt;li&gt;Bench (5 sets / moderate)&lt;/li&gt;
    &lt;li&gt;Overhead Press (6 sets / heavy)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have created a log here &lt;a href=&quot;http://proglog.instantspot.com&quot;&gt;proglog.instantspot.com&lt;/a&gt; to track my progress and updates.&lt;/p&gt;</description><pubDate>Tue, 03 Nov 2009 21:21:00 GMT</pubDate><guid>http://ajlcom.instantspot.com/blog/2009/11/03/Pushing-Weight-Back-to-Basics</guid></item><item><title>Warwick Castle</title><link>http://marcelinbirmingham.instantspot.com/blog/2009/11/02/Warwick-Castle</link><description>&lt;p&gt;Bevor es heute Abend nach Dublin geht, will ich mich noch einmal bei euch melden. Letzte Woche hat mir leider eine Erk&amp;auml;ltung zu schaffen gemacht, so dass es nicht viel zu berichten gab.&lt;br /&gt;
Am Samstag ging es mit dem Computer Science Department nach Warwick Castle, eine traditionellen, britische Burg ...&lt;br /&gt;
Am besten ich lass die Bilder f&amp;uuml;r sich sprechen. Obwohl es am Morgen nicht so aussah, war nat&amp;uuml;rlich wieder wundersch&amp;ouml;nes Wetter :)&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img width=&quot;300&quot; height=&quot;400&quot; src=&quot;/userfiles/091709/1171/CIMG4871.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;200&quot; height=&quot;266&quot; src=&quot;/userfiles/091709/1171/CIMG4850.JPG&quot; alt=&quot;&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;img width=&quot;200&quot; height=&quot;266&quot; src=&quot;/userfiles/091709/1171/CIMG4843.JPG&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;The Mound und die Library&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;200&quot; height=&quot;266&quot; src=&quot;/userfiles/091709/1171/CIMG4919.JPG&quot; alt=&quot;&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;img width=&quot;200&quot; height=&quot;266&quot; src=&quot;/userfiles/091709/1171/CIMG4949.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Warwick Castle Park mit Bootshaus&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;300&quot; height=&quot;225&quot; src=&quot;/userfiles/091709/1171/CIMG4829.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;300&quot; height=&quot;225&quot; src=&quot;/userfiles/091709/1171/CIMG4917.JPG&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Halloween Witch&lt;br /&gt;
&lt;br /&gt;
&lt;img width=&quot;200&quot; height=&quot;266&quot; src=&quot;/userfiles/091709/1171/CIMG4949.JPG&quot; alt=&quot;&quot; /&gt;&amp;nbsp;&amp;nbsp; &lt;img width=&quot;200&quot; height=&quot;266&quot; src=&quot;/userfiles/091709/1171/CIMG4961.JPG&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p align=&quot;left&quot;&gt;F&amp;uuml;r den Moment soll es das erstmal gewesen sein, ich muss erstmal zur Vorlesung. Ein bissl studieren tue ich nat&amp;uuml;rlich auch noch, irgendwie brauch ich auch ein paar Aufgaben f&amp;uuml;r die Woche.&lt;br /&gt;
Ende der Woche gibt es dann sicher wieder ein paar Eindr&amp;uuml;cke aus Dublin und eine Fahrt nach Wales steht auch bald auf dem Programm :)&lt;br /&gt;
&lt;br /&gt;
Gr&amp;uuml;&amp;szlig;e aus Bham&lt;/p&gt;</description><pubDate>Mon, 02 Nov 2009 06:11:00 GMT</pubDate><guid>http://marcelinbirmingham.instantspot.com/blog/2009/11/02/Warwick-Castle</guid></item></channel></rss>