<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Yanachik.org</title>
	<atom:link href="http://www.yanachik.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yanachik.org</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 10 Nov 2008 19:28:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Linq To SQL Entity Data Context InsertOnSubmit vs Attach</title>
		<link>http://www.yanachik.org/2008/11/10/linq-to-sql-entity-data-context-insertonsubmit-vs-attach/</link>
		<comments>http://www.yanachik.org/2008/11/10/linq-to-sql-entity-data-context-insertonsubmit-vs-attach/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 19:28:49 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[Yahoo YUI]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/?p=100</guid>
		<description><![CDATA[After writing Unit tests lately I&#8217;ve been trying to test my business logic (which is all done in the Entity Manager) without actually submitting data to the database.  I&#8217;ll create my Items and Customers and do an InsertOnSubmit to get them into the Entity Manager context, but never call SubmitChanges().
This gets the data into the [...]]]></description>
			<content:encoded><![CDATA[<p>After writing Unit tests lately I&#8217;ve been trying to test my business logic (which is all done in the Entity Manager) without actually submitting data to the database.  I&#8217;ll create my Items and Customers and do an InsertOnSubmit to get them into the Entity Manager context, but never call SubmitChanges().</p>
<p>This gets the data into the database, however, it does not get the objects into the EntityManager&#8217;s data context.  If I were to create a Customer Order and then create a Customer Order Item I can then Add the Customer Order Item to the Customer Order and the order item is then available within the Customer Order context, but the Customer Order is still not available within the Entity Manager context.  To do that, you need to Attach the Customer Order to the CustomerOrders table.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/11/10/linq-to-sql-entity-data-context-insertonsubmit-vs-attach/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Visual Studio 2008 Service Pack 1 Javascript Formatting Drives Me Nuts</title>
		<link>http://www.yanachik.org/2008/10/31/visual-studio-2008-service-pack-1-javascript-formatting-drives-me-nuts/</link>
		<comments>http://www.yanachik.org/2008/10/31/visual-studio-2008-service-pack-1-javascript-formatting-drives-me-nuts/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 13:01:28 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[ASP.Net]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Visual Studio 2008]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/?p=98</guid>
		<description><![CDATA[With all of the goodies included with Service Pack 1 for Visual Studio 2008, the one thing that Microsoft did not do right is Javascript formatting.  First of all, it&#8217;s really slow.  Second of all, it doesn&#8217;t seem to be consistent with it&#8217;s indenting.
For me, I&#8217;d like to do my own formatting.  So, to turn [...]]]></description>
			<content:encoded><![CDATA[<p>With all of the goodies included with Service Pack 1 for Visual Studio 2008, the one thing that Microsoft did not do right is Javascript formatting.  First of all, it&#8217;s really slow.  Second of all, it doesn&#8217;t seem to be consistent with it&#8217;s indenting.</p>
<p>For me, I&#8217;d like to do my own formatting.  So, to turn off the Javascript formatting in Visual Studio 2008 go to Tools - Options - Text Editor - JScript - Formatting.  And uncheck all of the checkboxes in the Automatic Formatting group.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/10/31/visual-studio-2008-service-pack-1-javascript-formatting-drives-me-nuts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yahoo DataTable editorSaveEvent Change from YUI 2.5.2 to 2.6.0</title>
		<link>http://www.yanachik.org/2008/10/10/yahoo-datatable-editorsaveevent-change-from-yui-252-to-260/</link>
		<comments>http://www.yanachik.org/2008/10/10/yahoo-datatable-editorsaveevent-change-from-yui-252-to-260/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 16:22:41 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[Yahoo YUI]]></category>

		<category><![CDATA[Yahoo.YUI.DataTable]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/?p=96</guid>
		<description><![CDATA[In Yahoo YUI 2.5.2 the Yahoo DataTable editorSave Event&#8217;sData Cell Editor has changed.  To get to the data record for the editor it is no-longer oArgs.editor.record, but rather oArgs.editor.getRecord();
DataTable.subscribe(&#8221;editorSaveEvent&#8221;, EditorChanged);
function EditorChanged(oArgs)
{
var record = oArgs.editor.getRecord();
}
]]></description>
			<content:encoded><![CDATA[<p>In Yahoo YUI 2.5.2 the Yahoo DataTable editorSave Event&#8217;sData Cell Editor has changed.  To get to the data record for the editor it is no-longer oArgs.editor.record, but rather oArgs.editor.getRecord();</p>
<blockquote><p>DataTable.subscribe(&#8221;editorSaveEvent&#8221;, EditorChanged);</p>
<p>function EditorChanged(oArgs)</p>
<p>{</p>
<p>var record = oArgs.editor.getRecord();</p>
<p>}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/10/10/yahoo-datatable-editorsaveevent-change-from-yui-252-to-260/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to preconfigure your Ruby on Rails application for MySQL</title>
		<link>http://www.yanachik.org/2008/08/19/how-to-preconfigure-your-ruby-on-rails-application-for-mysql/</link>
		<comments>http://www.yanachik.org/2008/08/19/how-to-preconfigure-your-ruby-on-rails-application-for-mysql/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 20:04:30 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/?p=94</guid>
		<description><![CDATA[Rails 2.0.2 now defaults your app&#8217;s database to SQLite3 (I believe because OSX comes pre-shipped with it).  In order to generate a rails application and having it setup to MySQL is pretty easy.
In your when you create your app add (-d mysql) in the rails command:  rails -d mysql myapp
]]></description>
			<content:encoded><![CDATA[<p>Rails 2.0.2 now defaults your app&#8217;s database to SQLite3 (I believe because OSX comes pre-shipped with it).  In order to generate a rails application and having it setup to MySQL is pretty easy.</p>
<p>In your when you create your app add (-d mysql) in the rails command:  rails -d mysql myapp</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/08/19/how-to-preconfigure-your-ruby-on-rails-application-for-mysql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bill Gates&#8217; last day at Microsoft</title>
		<link>http://www.yanachik.org/2008/03/04/bill-gates-last-day-at-microsoft/</link>
		<comments>http://www.yanachik.org/2008/03/04/bill-gates-last-day-at-microsoft/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 20:43:09 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/2008/03/04/bill-gates-last-day-at-microsoft/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="373" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/i1M-IafCor4&amp;rel=1&amp;border=1" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="425" height="373" src="http://www.youtube.com/v/i1M-IafCor4&amp;rel=1&amp;border=1" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/03/04/bill-gates-last-day-at-microsoft/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A series of Short reviews&#8230;</title>
		<link>http://www.yanachik.org/2008/03/04/a-series-of-short-reviews/</link>
		<comments>http://www.yanachik.org/2008/03/04/a-series-of-short-reviews/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 19:19:58 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/2008/03/04/a-series-of-short-reviews/</guid>
		<description><![CDATA[There were a series of announcements and reviews that came out lately, here&#8217;s a sample:
Google Gears has gone mobile - what a great idea.  When your mobile device can&#8217;t get a signal (such as on an airplane) but you need to do some work, you can now access your mobile apps though google gears.  Zoho [...]]]></description>
			<content:encoded><![CDATA[<p>There were a series of announcements and reviews that came out lately, here&#8217;s a sample:</p>
<div><a title="Google Mobile" href="http://www.flickr.com/photos/14047056@N05/2310082233/"><img src="http://static.flickr.com/3007/2310082233_d5dcba5f6b.jpg" border="0" alt="Google Mobile" /></a><a href="http://googlemobile.blogspot.com/2008/03/shifting-google-gears-to-mobile.html" target="_blank">Google Gears has gone mobile</a> - what a great idea.  When your mobile device can&#8217;t get a signal (such as on an airplane) but you need to do some work, you can now access your mobile apps though google gears.  Zoho runs on Google Gears, hopefully Zoho Planner is supported.  Unfortunately, Google Gears only runs on IE Mobile.</div>
<div><a title="Yahoo onePlace Overview" href="http://www.flickr.com/photos/14047056@N05/2310082285/"><img src="http://static.flickr.com/2109/2310082285_068cbf1b55.jpg" border="0" alt="Yahoo onePlace Overview" /></a>Yahoo has announced <a href="http://mobile.yahoo.com/oneplace" target="_blank">onePlace</a> which is a mobile service designed to take your Yahoo settings and make them available on your mobile device.  Your stock portfolio is available, your favorites, your Flickr account, your My Yahoo feeds - everything is available.  Look for this to come out shortly.</div>
<div><a title="Google Docs Vs Microsoft Workspaces" href="http://www.flickr.com/photos/14047056@N05/2310886448/"><img src="http://static.flickr.com/2346/2310886448_dc1a0f93b0.jpg" border="0" alt="Google Docs Vs Microsoft Workspaces" align="left" /></a> Read Write Web has a good <a href="http://www.readwriteweb.com/archives/office_live_workspace_vs_google_docs_feature_by_feature.php" target="_blank">feature comparison</a> between Google Docs and Microsoft Office Workspaces.  Google has everything between email, documents, calendars, etc.  For the life of me I can&#8217;t figure out why they don&#8217;t have a task tracking system.  Is it too easy?  Too basic for them?  It would be a hot commodity.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/03/04/a-series-of-short-reviews/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Presentation Foundation Flotzam has a new UI</title>
		<link>http://www.yanachik.org/2008/03/02/windows-presentation-foundation-flotzam-has-a-new-ui/</link>
		<comments>http://www.yanachik.org/2008/03/02/windows-presentation-foundation-flotzam-has-a-new-ui/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 04:20:07 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[ASP.Net]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/2008/03/02/windows-presentation-foundation-flotzam-has-a-new-ui/</guid>
		<description><![CDATA[Flotzam, a life streaming screensaver based all on Microsoft&#8217;s new Windows Presentation Foundation (WPF) put out a contest for redesigned UI.&#160; Here&#8217;s a screencast of the winner. 
Flotzam Design Contest Winner
]]></description>
			<content:encoded><![CDATA[<p>Flotzam, a life streaming screensaver based all on Microsoft&#8217;s new Windows Presentation Foundation (WPF) put out a contest for redesigned UI.&nbsp; Here&#8217;s a screencast of the winner. </p>
<p><iframe src="http://visitmix.com/blogs/News/523/player/" frameborder="0" width="320" scrolling="no" height="325"></iframe><br /><a href="http://visitmix.com/blogs/News/Flotzam-Design-Contest-Winner/">Flotzam Design Contest Winner</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/03/02/windows-presentation-foundation-flotzam-has-a-new-ui/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sharepoint Conference 2008 - Buzzstream</title>
		<link>http://www.yanachik.org/2008/03/02/sharepoint-conference-2008-buzzstream/</link>
		<comments>http://www.yanachik.org/2008/03/02/sharepoint-conference-2008-buzzstream/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 04:10:25 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[ASP.Net]]></category>

		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/2008/03/02/sharepoint-conference-2008-buzzstream/</guid>
		<description><![CDATA[Here are feeds to track the action going on at Sharepoint Conference 2008:

Blogstream (via Technorati): http://feeds.technorati.com/search/SPC2008?authority=a4&#38;language=en
Photostream (via Flickr): http://api.flickr.com/services/feeds/photos_public.gne?tags=SPC2008&#38;lang=en-us&#38;format=atom
Videostream (via MSN Soapbox): http://soapbox.msn.com/rss.aspx?searchTerm=SPC2008

You can also monitor:&#160; http://mysharepointcommunity.com/SPC2008
]]></description>
			<content:encoded><![CDATA[<p>Here are feeds to track the action going on at Sharepoint Conference 2008:</p>
<ul>
<li><strong>Blog</strong>stream (via Technorati): <a href="http://feeds.technorati.com/search/SPC2008?authority=a4&amp;language=en">http://feeds.technorati.com/search/SPC2008?authority=a4&amp;language=en</a>
<li><strong>Photo</strong>stream (via Flickr): <a href="http://api.flickr.com/services/feeds/photos_public.gne?tags=SPC2008&amp;lang=en-us&amp;format=atom">http://api.flickr.com/services/feeds/photos_public.gne?tags=SPC2008&amp;lang=en-us&amp;format=atom</a>
<li><strong>Video</strong>stream (via MSN Soapbox): <a href="http://soapbox.msn.com/rss.aspx?searchTerm=SPC2008">http://soapbox.msn.com/rss.aspx?searchTerm=SPC2008</a></li>
</ul>
<p>You can also monitor:&nbsp; <a href="http://mysharepointcommunity.com/SPC2008">http://mysharepointcommunity.com/SPC2008</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/03/02/sharepoint-conference-2008-buzzstream/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is SocialThing.com the big hit out of SXSW?</title>
		<link>http://www.yanachik.org/2008/03/02/is-socialthingcom-the-big-hit-out-of-sxsw/</link>
		<comments>http://www.yanachik.org/2008/03/02/is-socialthingcom-the-big-hit-out-of-sxsw/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 04:02:29 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/2008/03/02/is-socialthingcom-the-big-hit-out-of-sxsw/</guid>
		<description><![CDATA[ReadWriteWeb is trying to predict what app will be the big hit at SXSW, and they seem to have concluded that whatever it is, it will involve social networking.&#160; RWW seem impressed with SocialThing, and predict that if they get their iPhone interface working by SXSW then thy&#8217;ve got a real chance at being a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://readwriteweb.com" target="_blank">ReadWriteWeb</a> is trying to predict what app will be the big hit at SXSW, and they seem to have concluded that whatever it is, it will involve social networking.&nbsp; RWW seem impressed with SocialThing, and predict that if they get their iPhone interface working by SXSW then thy&#8217;ve got a real chance at being a huge hit this year.&nbsp; The idea behind the app is to allow you and your friends to keep tabs on what one-another is doing via different services available for life streaming.&nbsp; From their website:</p>
<blockquote><h4><strong>Get your digital life in order</strong></h4>
<p><a href="http://socialthing.com" target="_blank">socialthing</a>! is a digital life manager that puts what you do online into one place. See everything that&#8217;s going on with your friends in all the sites you use, post stuff to multiple places at once and more!</p>
</blockquote>
<p>Here are some photos from their flickr account:
<div><a title="Socialthing! Adds Pownce" href="http://www.flickr.com/photos/66985807@N00/2277901289/"><img alt="Socialthing! Adds Pownce" src="http://static.flickr.com/2013/2277901289_2c787f638f.jpg" border="0"></a></div>
<p> 
<p>&nbsp;
<p>And their iPhone interface:
<div><a title="Socialthing! Mobile - Home" href="http://www.flickr.com/photos/66985807@N00/2286094927/"><img alt="Socialthing! Mobile - Home" src="http://static.flickr.com/3175/2286094927_f8030dd90b.jpg" border="0"></a></div>
<p> 
<div><a title="Socialthing! iPhone Edition" href="http://www.flickr.com/photos/66985807@N00/2282878430/"><img alt="Socialthing! iPhone Edition" src="http://static.flickr.com/3165/2282878430_e0f1621562.jpg" border="0"></a></div>
<p> 
<div><a title="Socialthing! Mobile - Post Status" href="http://www.flickr.com/photos/66985807@N00/2286882608/"><img alt="Socialthing! Mobile - Post Status" src="http://static.flickr.com/2284/2286882608_f2faa33fc1.jpg" border="0"></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/03/02/is-socialthingcom-the-big-hit-out-of-sxsw/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Check out my Pownce Feed</title>
		<link>http://www.yanachik.org/2008/02/28/check-out-my-pownce-feed/</link>
		<comments>http://www.yanachik.org/2008/02/28/check-out-my-pownce-feed/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 05:06:42 +0000</pubDate>
		<dc:creator>kyanachik</dc:creator>
		
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.yanachik.org/2008/02/28/check-out-my-pownce-feed/</guid>
		<description><![CDATA[I&#8217;ve place a badge on my home page that displays my two latest Pownce posts, and dedicated an entire page Pownce Feeds that lists my 30 most recent Pownce posts.&#160; Things that ramble off my brain that don&#8217;t deserve a full blog post will get Pownced.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve place a badge on my home page that displays my two latest Pownce posts, and dedicated an entire page <a href="http://www.yanachik.org/pownce-feed/">Pownce Feeds</a> that lists my 30 most recent Pownce posts.&#160; Things that ramble off my brain that don&#8217;t deserve a full blog post will get Pownced.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yanachik.org/2008/02/28/check-out-my-pownce-feed/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.947 seconds -->
