<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LeMiffe &#187; Programming</title>
	<atom:link href="http://www.lemiffe.com/category/technology/computers/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lemiffe.com</link>
	<description>Life, Music, Places and more...</description>
	<lastBuildDate>Wed, 21 Dec 2011 17:44:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>My initial experience with ASP.NET MVC3 and Razor</title>
		<link>http://www.lemiffe.com/my-initial-experience-with-asp-net-mvc3-and-razor/</link>
		<comments>http://www.lemiffe.com/my-initial-experience-with-asp-net-mvc3-and-razor/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 16:54:20 +0000</pubDate>
		<dc:creator>lemiffe</dc:creator>
				<category><![CDATA[Companies]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[aspnet]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[jquery mobile]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[mvc3]]></category>
		<category><![CDATA[razor]]></category>
		<category><![CDATA[starter]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.lemiffe.com/?p=1200</guid>
		<description><![CDATA[A couple of weeks ago I was asked to develop a mobile application with data access in ASP.NET. Naturally, I did a bit of research, tried out a few things, and finally came to the conclusion that .NET framework 4.0 was the best choice. So I got down straight to development, using Jquery Mobile Framework, [...]


Related posts:<ol><li><a href='http://www.lemiffe.com/a-universal-programming-language/' rel='bookmark' title='Permanent Link: A universal programming language?'>A universal programming language?</a></li>
<li><a href='http://www.lemiffe.com/the-increasing-level-of-connectivity-between-social-sites/' rel='bookmark' title='Permanent Link: The increasing level of connectivity between Social Sites'>The increasing level of connectivity between Social Sites</a></li>
<li><a href='http://www.lemiffe.com/review-eeepc-1002-ha/' rel='bookmark' title='Permanent Link: Review: eeepc 1002 HA'>Review: eeepc 1002 HA</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">A couple of weeks ago I was asked to develop a mobile application with data access in ASP.NET.</p>
<p style="text-align: justify;">Naturally, I did a bit of research, tried out a few things, and finally came to the conclusion that .NET framework 4.0 was the best choice.</p>
<p style="text-align: justify;">So I got down straight to development, using <a href="http://jquerymobile.com/">Jquery Mobile Framework</a>, ASP.NET with .NET 4.0,  <a href="http://www.asp.net/mvc/mvc3">MVC3</a>, ADO.NET <a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=8363">Entity Framework 4.1</a>, and ASPX (web forms).</p>
<p style="text-align: justify;">It was easy enough to set up, but when it came down to implementing user controls, I found it a nightmare. Passing parameters to the user control whilst using a MultiView was giving me a headache.</p>
<p style="text-align: justify;">The issue here is that web forms are not naturally set up to work via AJAX calls, and Jquery Mobile Framework relies entirely on AJAX calls. So I decided to try out the <a href="http://weblogs.asp.net/scottgu/archive/2010/07/02/introducing-razor.aspx">Razor layout engine</a> instead of web forms.</p>
<p style="text-align: justify;">I had no experience using the Razor layout engine, but after a couple of hours, I found it delicious to use. I could code up pages much faster than in web forms. And the integration with controllers and models in the MVC3 framework was just, natural, it all fit into place beautifully.</p>
<p style="text-align: justify;">Naturally, I found a few issues learning the basics of the MVC3 framework, forms authentication, the Razor layout engine, and accessing data from a database. Tutorials seemed to be all over the place, but I came across a few good ones which I will share with you.</p>
<p style="text-align: justify;">If you are getting started with MVC3 + Razor + Data access (using DBContext in MVC3), follow these tutorials, and you&#8217;ll be a &#8216;pro&#8217; in a couple of days (providing you have enough experience).</p>
<h2 style="text-align: justify;">Razor Layout Engine:</h2>
<p style="text-align: justify;"><strong>Learn the basics of the Razor layout syntax:</strong></p>
<p style="text-align: justify;"><a href="http://msdn.microsoft.com/en-us/gg618477">http://msdn.microsoft.com/en-us/gg618477</a></p>
<p style="text-align: justify;"><strong>Learn how &#8220;sections&#8221; work in Razor:</strong></p>
<p style="text-align: justify;"><a href="http://weblogs.asp.net/scottgu/archive/2010/12/30/asp-net-mvc-3-layouts-and-sections-with-razor.aspx">http://weblogs.asp.net/scottgu/archive/2010/12/30/asp-net-mvc-3-layouts-and-sections-with-razor.aspx</a></p>
<p style="text-align: justify;"><strong>Learn how to implement partial views in Razor </strong>(which can be used as &#8216;user controls&#8217;)<strong>:</strong></p>
<p style="text-align: justify;"><a href="http://rachelappel.com/razor/partial-views-in-asp-net-mvc-3-w-the-razor-view-engine/">http://rachelappel.com/razor/partial-views-in-asp-net-mvc-3-w-the-razor-view-engine/</a></p>
<h2 style="text-align: justify;">MVC3:</h2>
<p style="text-align: justify;"><strong>Learn how a basic MVC3 application works in .NET:</strong></p>
<p style="text-align: justify;"><a href="http://www.asp.net/mvc/tutorials/creating-a-mvc-3-application-with-razor-and-unobtrusive-javascript">http://www.asp.net/mvc/tutorials/creating-a-mvc-3-application-with-razor-and-unobtrusive-javascript</a></p>
<p style="text-align: justify;"><strong>Learn how to integrate data access (database first) using MVC3 and EF 4.1:</strong></p>
<p style="text-align: justify;"><a href="http://msdn.microsoft.com/en-us/data/gg685489">http://msdn.microsoft.com/en-us/data/gg685489</a></p>
<p style="text-align: justify;">(If you want to create models, but use a MSSQL database that is not on your machine, and you don&#8217;t want to have it in the App_Data folder, just follow the steps, then delete the database from the app_data folder, and change the data source in the web.config to point to the correct location).</p>
<p style="text-align: justify;"><strong>Writing your own queries to access the database instead of relying solely on those from the model:</strong></p>
<p style="text-align: justify;"><a href="http://blogs.msdn.com/b/adonet/archive/2011/02/04/using-dbcontext-in-ef-feature-ctp5-part-10-raw-sql-queries.aspx">http://blogs.msdn.com/b/adonet/archive/2011/02/04/using-dbcontext-in-ef-feature-ctp5-part-10-raw-sql-queries.aspx</a></p>
<p style="text-align: justify;">So that&#8217;s it for now, I thought it would be good to have a central location for these tutorials as they served me well whilst I learned the basics of MVC3 + EF4.1 + Razor, so I hope they are useful to you as well.</p>
<p style="text-align: justify;">If you have any queries, please let me know in the comment section below.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F&amp;partner=sociable" title="Print"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F&amp;title=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor&amp;bodytext=A%20couple%20of%20weeks%20ago%20I%20was%20asked%20to%20develop%20a%20mobile%20application%20with%20data%20access%20in%20ASP.NET.%0D%0ANaturally%2C%20I%20did%20a%20bit%20of%20research%2C%20tried%20out%20a%20few%20things%2C%20and%20finally%20came%20to%20the%20conclusion%20that%20.NET%20framework%204.0%20was%20the%20best%20choice.%0D%0ASo%20I%20got%20down" title="Digg"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F&amp;title=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor&amp;notes=A%20couple%20of%20weeks%20ago%20I%20was%20asked%20to%20develop%20a%20mobile%20application%20with%20data%20access%20in%20ASP.NET.%0D%0ANaturally%2C%20I%20did%20a%20bit%20of%20research%2C%20tried%20out%20a%20few%20things%2C%20and%20finally%20came%20to%20the%20conclusion%20that%20.NET%20framework%204.0%20was%20the%20best%20choice.%0D%0ASo%20I%20got%20down" title="del.icio.us"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F&amp;t=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor" title="Facebook"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F&amp;title=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor&amp;annotation=A%20couple%20of%20weeks%20ago%20I%20was%20asked%20to%20develop%20a%20mobile%20application%20with%20data%20access%20in%20ASP.NET.%0D%0ANaturally%2C%20I%20did%20a%20bit%20of%20research%2C%20tried%20out%20a%20few%20things%2C%20and%20finally%20came%20to%20the%20conclusion%20that%20.NET%20framework%204.0%20was%20the%20best%20choice.%0D%0ASo%20I%20got%20down" title="Google Bookmarks"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor&amp;link=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F" title="FriendFeed"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F&amp;t=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor" title="MySpace"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F&amp;title=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor&amp;body=A%20couple%20of%20weeks%20ago%20I%20was%20asked%20to%20develop%20a%20mobile%20application%20with%20data%20access%20in%20ASP.NET.%0D%0ANaturally%2C%20I%20did%20a%20bit%20of%20research%2C%20tried%20out%20a%20few%20things%2C%20and%20finally%20came%20to%20the%20conclusion%20that%20.NET%20framework%204.0%20was%20the%20best%20choice.%0D%0ASo%20I%20got%20down" title="Ping.fm"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor%20-%20http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F" title="Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor&amp;body=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F" title="email"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F%20My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor" title="Suggest to Techmeme via Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F" title="Technorati"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/><div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F&amp;text=My%20initial%20experience%20with%20ASP.NET%20MVC3%20and%20Razor&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.lemiffe.com%2Fmy-initial-experience-with-asp-net-mvc3-and-razor%2F" class="twitter-share-button" id="tweetbutton1200" style="width:55px;height:22px;background:transparent url('http://www.lemiffe.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>

<p>Related posts:<ol><li><a href='http://www.lemiffe.com/a-universal-programming-language/' rel='bookmark' title='Permanent Link: A universal programming language?'>A universal programming language?</a></li>
<li><a href='http://www.lemiffe.com/the-increasing-level-of-connectivity-between-social-sites/' rel='bookmark' title='Permanent Link: The increasing level of connectivity between Social Sites'>The increasing level of connectivity between Social Sites</a></li>
<li><a href='http://www.lemiffe.com/review-eeepc-1002-ha/' rel='bookmark' title='Permanent Link: Review: eeepc 1002 HA'>Review: eeepc 1002 HA</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lemiffe.com/my-initial-experience-with-asp-net-mvc3-and-razor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A universal programming language?</title>
		<link>http://www.lemiffe.com/a-universal-programming-language/</link>
		<comments>http://www.lemiffe.com/a-universal-programming-language/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 12:44:08 +0000</pubDate>
		<dc:creator>lemiffe</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[universal]]></category>

		<guid isPermaLink="false">http://www.lemiffe.com/?p=994</guid>
		<description><![CDATA[A random thought popped into my head not so long ago: What if we had a universal language that integrated all the common programming language syntaxes, integrating the binaries, engines and function calls for each of them, allowing anything to be written in any language in each file? .NET made huge progress allowing a single [...]


Related posts:<ol><li><a href='http://www.lemiffe.com/is-ubuntu-the-right-option-for-you/' rel='bookmark' title='Permanent Link: Is Ubuntu the right option for you?'>Is Ubuntu the right option for you?</a></li>
<li><a href='http://www.lemiffe.com/trying-to-understand-language/' rel='bookmark' title='Permanent Link: Trying to Understand Language'>Trying to Understand Language</a></li>
<li><a href='http://www.lemiffe.com/judge-bans-microsoft-word-sales-bbc-news/' rel='bookmark' title='Permanent Link: Judge bans Microsoft Word sales &#8211; BBC News'>Judge bans Microsoft Word sales &#8211; BBC News</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">A random thought popped into my head not so long ago: What if we had a universal language that integrated all the common programming language syntaxes, integrating the binaries, engines and function calls for each of them, allowing anything to be written in any language in each file?</p>
<p style="text-align: justify;">.NET made huge progress allowing a single project to be coded with  different languages, at file-level of course. But what if we could use several languages in a single file?</p>
<p style="text-align: justify;">I know this would probably represent a heavy strain on the processing part of it, but for web-based technologies it would be an interesting approach. Just imagine, Rails+PHP+Python+Java, a world where we can truly live together. Or not?</p>
<p style="text-align: justify;">Take the following code as an example:</p>
<blockquote>
<pre style="text-align: justify;">cout &lt;&lt; "Hello world" &lt;&lt; endl;
echo "This is a test";
System.Windows.MessageBox("And another test");
print "Just for the sake of it"</pre>
</blockquote>
<div style="text-align: justify;">I had a talk with a programmer about a month ago, and we obviously reached the conclusion that it would be too bloated and problematic to manage. However, an engine that can handle maybe 2 or 3 languages would be rather interesting. I&#8217;d be happy enough to get C#/VB (ASP.NET) + PHP + Ruby.</div>
<p style="text-align: justify;">Assuming you can keep it clean, and standards are adopted, I think it would be great. Things might be simpler in certain languages than in others, and sometimes it would certainly be reflected in the amount of lines as many languages implement built-in functions that perform many tasks with a single line of code.</p>
<p style="text-align: justify;">On the other hand, it could become programming hell, but I&#8217;d be interested if such a thing existed, for the mere purpose of having fun. What do you think? Would it be &#8220;programming hell&#8221;? or does it actually sound viable?</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F&amp;partner=sociable" title="Print"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F&amp;title=A%20universal%20programming%20language%3F&amp;bodytext=A%20random%20thought%20popped%20into%20my%20head%20not%20so%20long%20ago%3A%20What%20if%20we%20had%20a%20universal%20language%20that%20integrated%20all%20the%20common%20programming%20language%20syntaxes%2C%20integrating%20the%20binaries%2C%20engines%20and%20function%20calls%20for%20each%20of%20them%2C%20allowing%20anything%20to%20be%20wri" title="Digg"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F&amp;title=A%20universal%20programming%20language%3F&amp;notes=A%20random%20thought%20popped%20into%20my%20head%20not%20so%20long%20ago%3A%20What%20if%20we%20had%20a%20universal%20language%20that%20integrated%20all%20the%20common%20programming%20language%20syntaxes%2C%20integrating%20the%20binaries%2C%20engines%20and%20function%20calls%20for%20each%20of%20them%2C%20allowing%20anything%20to%20be%20wri" title="del.icio.us"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F&amp;t=A%20universal%20programming%20language%3F" title="Facebook"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F&amp;title=A%20universal%20programming%20language%3F&amp;annotation=A%20random%20thought%20popped%20into%20my%20head%20not%20so%20long%20ago%3A%20What%20if%20we%20had%20a%20universal%20language%20that%20integrated%20all%20the%20common%20programming%20language%20syntaxes%2C%20integrating%20the%20binaries%2C%20engines%20and%20function%20calls%20for%20each%20of%20them%2C%20allowing%20anything%20to%20be%20wri" title="Google Bookmarks"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=A%20universal%20programming%20language%3F&amp;link=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F" title="FriendFeed"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F&amp;t=A%20universal%20programming%20language%3F" title="MySpace"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F&amp;title=A%20universal%20programming%20language%3F&amp;body=A%20random%20thought%20popped%20into%20my%20head%20not%20so%20long%20ago%3A%20What%20if%20we%20had%20a%20universal%20language%20that%20integrated%20all%20the%20common%20programming%20language%20syntaxes%2C%20integrating%20the%20binaries%2C%20engines%20and%20function%20calls%20for%20each%20of%20them%2C%20allowing%20anything%20to%20be%20wri" title="Ping.fm"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=A%20universal%20programming%20language%3F%20-%20http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F" title="Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=A%20universal%20programming%20language%3F&amp;body=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F" title="email"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F%20A%20universal%20programming%20language%3F" title="Suggest to Techmeme via Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F" title="Technorati"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/><div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F&amp;text=A%20universal%20programming%20language%3F&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.lemiffe.com%2Fa-universal-programming-language%2F" class="twitter-share-button" id="tweetbutton994" style="width:55px;height:22px;background:transparent url('http://www.lemiffe.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>

<p>Related posts:<ol><li><a href='http://www.lemiffe.com/is-ubuntu-the-right-option-for-you/' rel='bookmark' title='Permanent Link: Is Ubuntu the right option for you?'>Is Ubuntu the right option for you?</a></li>
<li><a href='http://www.lemiffe.com/trying-to-understand-language/' rel='bookmark' title='Permanent Link: Trying to Understand Language'>Trying to Understand Language</a></li>
<li><a href='http://www.lemiffe.com/judge-bans-microsoft-word-sales-bbc-news/' rel='bookmark' title='Permanent Link: Judge bans Microsoft Word sales &#8211; BBC News'>Judge bans Microsoft Word sales &#8211; BBC News</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lemiffe.com/a-universal-programming-language/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Documenting Stored Procedures</title>
		<link>http://www.lemiffe.com/documenting-stored-procedures/</link>
		<comments>http://www.lemiffe.com/documenting-stored-procedures/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 15:15:04 +0000</pubDate>
		<dc:creator>lemiffe</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[documenting]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[sp]]></category>
		<category><![CDATA[sproc]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[stored procedures]]></category>

		<guid isPermaLink="false">http://www.lemiffe.com/?p=77</guid>
		<description><![CDATA[I&#8217;ve been creating and modifying a few stored procedures for a &#8216;debt history and future payments&#8217; report in a VS.NET app using SQL Server 2005 for the past days. Quite a bit of a task to be honest, but I have found something very useful while developing large stored procedures. Some times they can get [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I&#8217;ve been creating and modifying a few stored procedures for a &#8216;debt history and future payments&#8217; report in a VS.NET app using SQL Server 2005 for the past days. Quite a bit of a task to be honest, but I have found something very useful while developing large stored procedures. Some times they can get out of hand, you know, with virtual tables, views, massive calculations involving aggregate functions and loads of inner joins.</p>
<p style="text-align: justify;">Document everything! Changes, current status, this way you&#8217;ll have a clue on where you stand and what you must achieve, so even if things get out of hand this is always a good reference, and gives you a great focus. It&#8217;s also a very good guide when you finished it, and several months later your customer calls you nagging that it&#8217;s not working anymore. You go back, read all you wrote, and get a full view on it&#8217;s current status and what you must do to correct the mistakes.</p>
<p>An example of my style of documenting stored procedures is as follows:</p>
<p><span id="more-77"></span></p>
<pre>/*###########################

Stored Procedure:	[NAME]
Main Author:		Persons Name
Modifications:		Person, Person, Person
Current State:		Not Working
Parameters:		@idcatalog: Catalog ID
			@parameter1: Description
			@parameter2: Description
Test Parameters:	1, 100, 2044

General Info:		This stored procedure does this
			and that and something else,
			unfortunately it does not work
			because it is missing this and
			that and something else.

LOG:	28.07.2008	SP created with initial values. (Me)
	29.07.2008	Parameter 2 added for +reason. (You)

###########################*/</pre>
<p style="text-align: justify;">You&#8217;ll notice a good improvement in programming time per stored procedure even though it takes you a mintue or two to write it down. It&#8217;ll help you out quite a lot in the future, you&#8217;ll see.</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F&amp;partner=sociable" title="Print"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F&amp;title=Documenting%20Stored%20Procedures&amp;bodytext=I%27ve%20been%20creating%20and%20modifying%20a%20few%20stored%20procedures%20for%20a%20%27debt%20history%20and%20future%20payments%27%20report%20in%20a%20VS.NET%20app%20using%20SQL%20Server%202005%20for%20the%20past%20days.%20Quite%20a%20bit%20of%20a%20task%20to%20be%20honest%2C%20but%20I%20have%20found%20something%20very%20useful%20while%20develop" title="Digg"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F&amp;title=Documenting%20Stored%20Procedures&amp;notes=I%27ve%20been%20creating%20and%20modifying%20a%20few%20stored%20procedures%20for%20a%20%27debt%20history%20and%20future%20payments%27%20report%20in%20a%20VS.NET%20app%20using%20SQL%20Server%202005%20for%20the%20past%20days.%20Quite%20a%20bit%20of%20a%20task%20to%20be%20honest%2C%20but%20I%20have%20found%20something%20very%20useful%20while%20develop" title="del.icio.us"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F&amp;t=Documenting%20Stored%20Procedures" title="Facebook"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F&amp;title=Documenting%20Stored%20Procedures&amp;annotation=I%27ve%20been%20creating%20and%20modifying%20a%20few%20stored%20procedures%20for%20a%20%27debt%20history%20and%20future%20payments%27%20report%20in%20a%20VS.NET%20app%20using%20SQL%20Server%202005%20for%20the%20past%20days.%20Quite%20a%20bit%20of%20a%20task%20to%20be%20honest%2C%20but%20I%20have%20found%20something%20very%20useful%20while%20develop" title="Google Bookmarks"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Documenting%20Stored%20Procedures&amp;link=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F" title="FriendFeed"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F&amp;t=Documenting%20Stored%20Procedures" title="MySpace"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F&amp;title=Documenting%20Stored%20Procedures&amp;body=I%27ve%20been%20creating%20and%20modifying%20a%20few%20stored%20procedures%20for%20a%20%27debt%20history%20and%20future%20payments%27%20report%20in%20a%20VS.NET%20app%20using%20SQL%20Server%202005%20for%20the%20past%20days.%20Quite%20a%20bit%20of%20a%20task%20to%20be%20honest%2C%20but%20I%20have%20found%20something%20very%20useful%20while%20develop" title="Ping.fm"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Documenting%20Stored%20Procedures%20-%20http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F" title="Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Documenting%20Stored%20Procedures&amp;body=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F" title="email"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F%20Documenting%20Stored%20Procedures" title="Suggest to Techmeme via Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F" title="Technorati"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/><div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F&amp;text=Documenting%20Stored%20Procedures&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.lemiffe.com%2Fdocumenting-stored-procedures%2F" class="twitter-share-button" id="tweetbutton77" style="width:55px;height:22px;background:transparent url('http://www.lemiffe.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lemiffe.com/documenting-stored-procedures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mad Business</title>
		<link>http://www.lemiffe.com/mad-business/</link>
		<comments>http://www.lemiffe.com/mad-business/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 03:35:01 +0000</pubDate>
		<dc:creator>lemiffe</dc:creator>
				<category><![CDATA[Computer Games]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[mad buiznazz]]></category>
		<category><![CDATA[mad business]]></category>
		<category><![CDATA[mb1]]></category>
		<category><![CDATA[vb6]]></category>
		<category><![CDATA[vb6 games]]></category>

		<guid isPermaLink="false">http://www.lemiffe.com/?p=65</guid>
		<description><![CDATA[This was one of the first games I ever finished&#8230; it&#8217;s terrible, it barely works, it flickers a hell of a lot (I used VB4 without BitBlt), it has a bad plot and theme, it is boring as hell, but it brings back a few memories *sniff*. If you&#8217;ve got time on your hands and [...]


Related posts:<ol><li><a href='http://www.lemiffe.com/mad-business-2/' rel='bookmark' title='Permanent Link: Mad Business'>Mad Business</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">This was one of the first games I ever finished&#8230; it&#8217;s terrible, it barely works, it flickers a hell of a lot (I used VB4 without BitBlt), it has a bad plot and theme, it is boring as hell, but it brings back a few memories <img src='http://www.lemiffe.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <em>*sniff*</em>.</p>
<p style="text-align: justify;">If you&#8217;ve got time on your hands and want to check it out go to the following URL, the download is available on the main page: <a title="Mad BuIzNaZz" href="http://www.citiria.com/mb/" target="_blank">http://www.citiria.com/mb/</a></p>
<p style="text-align: justify;">I think the major achievement I had making this game was learning TCP/IP packet transmission. The game was supposedly multiplayer, I never really tested it out thoroughly though. Give it a try and tell me what you think <img src='http://www.lemiffe.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <span style="color: #808080;">(I might release the source code for it one of these days, as soon as I find it heheh).</span></p>
<p style="text-align: justify;"><span style="color: #ff0000;">* <strong>Update:</strong> Removed the game from the website because I had to reorganize quite a few things, if you are interested in it just email me.</span></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F&amp;partner=sociable" title="Print"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F&amp;title=Mad%20Business&amp;bodytext=This%20was%20one%20of%20the%20first%20games%20I%20ever%20finished...%20it%27s%20terrible%2C%20it%20barely%20works%2C%20it%20flickers%20a%20hell%20of%20a%20lot%20%28I%20used%20VB4%20without%20BitBlt%29%2C%20it%20has%20a%20bad%20plot%20and%20theme%2C%20it%20is%20boring%20as%20hell%2C%20but%20it%20brings%20back%20a%20few%20memories%20%3B%29%20%2Asniff%2A.%0D%0AIf%20you%27ve%20go" title="Digg"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F&amp;title=Mad%20Business&amp;notes=This%20was%20one%20of%20the%20first%20games%20I%20ever%20finished...%20it%27s%20terrible%2C%20it%20barely%20works%2C%20it%20flickers%20a%20hell%20of%20a%20lot%20%28I%20used%20VB4%20without%20BitBlt%29%2C%20it%20has%20a%20bad%20plot%20and%20theme%2C%20it%20is%20boring%20as%20hell%2C%20but%20it%20brings%20back%20a%20few%20memories%20%3B%29%20%2Asniff%2A.%0D%0AIf%20you%27ve%20go" title="del.icio.us"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F&amp;t=Mad%20Business" title="Facebook"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F&amp;title=Mad%20Business&amp;annotation=This%20was%20one%20of%20the%20first%20games%20I%20ever%20finished...%20it%27s%20terrible%2C%20it%20barely%20works%2C%20it%20flickers%20a%20hell%20of%20a%20lot%20%28I%20used%20VB4%20without%20BitBlt%29%2C%20it%20has%20a%20bad%20plot%20and%20theme%2C%20it%20is%20boring%20as%20hell%2C%20but%20it%20brings%20back%20a%20few%20memories%20%3B%29%20%2Asniff%2A.%0D%0AIf%20you%27ve%20go" title="Google Bookmarks"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Mad%20Business&amp;link=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F" title="FriendFeed"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F&amp;t=Mad%20Business" title="MySpace"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F&amp;title=Mad%20Business&amp;body=This%20was%20one%20of%20the%20first%20games%20I%20ever%20finished...%20it%27s%20terrible%2C%20it%20barely%20works%2C%20it%20flickers%20a%20hell%20of%20a%20lot%20%28I%20used%20VB4%20without%20BitBlt%29%2C%20it%20has%20a%20bad%20plot%20and%20theme%2C%20it%20is%20boring%20as%20hell%2C%20but%20it%20brings%20back%20a%20few%20memories%20%3B%29%20%2Asniff%2A.%0D%0AIf%20you%27ve%20go" title="Ping.fm"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Mad%20Business%20-%20http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F" title="Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Mad%20Business&amp;body=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F" title="email"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F%20Mad%20Business" title="Suggest to Techmeme via Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F" title="Technorati"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/><div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F&amp;text=Mad%20Business&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.lemiffe.com%2Fmad-business%2F" class="twitter-share-button" id="tweetbutton65" style="width:55px;height:22px;background:transparent url('http://www.lemiffe.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>

<p>Related posts:<ol><li><a href='http://www.lemiffe.com/mad-business-2/' rel='bookmark' title='Permanent Link: Mad Business'>Mad Business</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lemiffe.com/mad-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Using Excessive Flash!</title>
		<link>http://www.lemiffe.com/stop-using-excessive-flash/</link>
		<comments>http://www.lemiffe.com/stop-using-excessive-flash/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 16:42:03 +0000</pubDate>
		<dc:creator>lemiffe</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[100% flash]]></category>
		<category><![CDATA[excessive flash]]></category>
		<category><![CDATA[flash websites]]></category>
		<category><![CDATA[suggestion]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.lemiffe.com/?p=40</guid>
		<description><![CDATA[When building your website, I&#8217;d suggest to ease out on flash. Maybe in a few years, when regular bandwidth is at 6MBPS and higher it would be acceptable, but today most users still have 1MBPS and lower. It takes too long to load flash sites built 100% with flash. Example: http://www.microsoft.com/forefront/easyeasier/index.htm#intro Please reconsider building a [...]


Related posts:<ol><li><a href='http://www.lemiffe.com/learning-about-time-lapse-stop-motion/' rel='bookmark' title='Permanent Link: Learning about: Time Lapse? Stop Motion?'>Learning about: Time Lapse? Stop Motion?</a></li>
<li><a href='http://www.lemiffe.com/further-reading-violence-in-films/' rel='bookmark' title='Permanent Link: Further Reading: Violence in Films'>Further Reading: Violence in Films</a></li>
<li><a href='http://www.lemiffe.com/claiming-my-blog-on-technorati/' rel='bookmark' title='Permanent Link: Claiming my Blog on Technorati'>Claiming my Blog on Technorati</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">When building your website, I&#8217;d suggest to ease out on flash. Maybe in a few years, when regular bandwidth is at 6MBPS and higher it would be acceptable, but today most users still have 1MBPS and lower. It takes too long to load flash sites built 100% with flash.</p>
<p>Example: <a title="ForeFront by MS" href="http://www.microsoft.com/forefront/easyeasier/index.htm#intro" target="_blank">http://www.microsoft.com/forefront/easyeasier/index.htm#intro</a></p>
<p style="text-align: justify;">Please reconsider building a website 100% with flash, it&#8217;s much better to opt for a nice flash intro, and use it in various parts, sidebars, etc. You optimize speed and experience that way. Just a tip <img src='http://www.lemiffe.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F&amp;partner=sociable" title="Print"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F&amp;title=Stop%20Using%20Excessive%20Flash%21&amp;bodytext=When%20building%20your%20website%2C%20I%27d%20suggest%20to%20ease%20out%20on%20flash.%20Maybe%20in%20a%20few%20years%2C%20when%20regular%20bandwidth%20is%20at%206MBPS%20and%20higher%20it%20would%20be%20acceptable%2C%20but%20today%20most%20users%20still%20have%201MBPS%20and%20lower.%20It%20takes%20too%20long%20to%20load%20flash%20sites%20built%20100" title="Digg"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F&amp;title=Stop%20Using%20Excessive%20Flash%21&amp;notes=When%20building%20your%20website%2C%20I%27d%20suggest%20to%20ease%20out%20on%20flash.%20Maybe%20in%20a%20few%20years%2C%20when%20regular%20bandwidth%20is%20at%206MBPS%20and%20higher%20it%20would%20be%20acceptable%2C%20but%20today%20most%20users%20still%20have%201MBPS%20and%20lower.%20It%20takes%20too%20long%20to%20load%20flash%20sites%20built%20100" title="del.icio.us"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F&amp;t=Stop%20Using%20Excessive%20Flash%21" title="Facebook"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F&amp;title=Stop%20Using%20Excessive%20Flash%21&amp;annotation=When%20building%20your%20website%2C%20I%27d%20suggest%20to%20ease%20out%20on%20flash.%20Maybe%20in%20a%20few%20years%2C%20when%20regular%20bandwidth%20is%20at%206MBPS%20and%20higher%20it%20would%20be%20acceptable%2C%20but%20today%20most%20users%20still%20have%201MBPS%20and%20lower.%20It%20takes%20too%20long%20to%20load%20flash%20sites%20built%20100" title="Google Bookmarks"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Stop%20Using%20Excessive%20Flash%21&amp;link=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F" title="FriendFeed"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F&amp;t=Stop%20Using%20Excessive%20Flash%21" title="MySpace"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F&amp;title=Stop%20Using%20Excessive%20Flash%21&amp;body=When%20building%20your%20website%2C%20I%27d%20suggest%20to%20ease%20out%20on%20flash.%20Maybe%20in%20a%20few%20years%2C%20when%20regular%20bandwidth%20is%20at%206MBPS%20and%20higher%20it%20would%20be%20acceptable%2C%20but%20today%20most%20users%20still%20have%201MBPS%20and%20lower.%20It%20takes%20too%20long%20to%20load%20flash%20sites%20built%20100" title="Ping.fm"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Stop%20Using%20Excessive%20Flash%21%20-%20http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F" title="Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Stop%20Using%20Excessive%20Flash%21&amp;body=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F" title="email"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F%20Stop%20Using%20Excessive%20Flash%21" title="Suggest to Techmeme via Twitter"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F" title="Technorati"><img src="http://www.lemiffe.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/><div class="tw_button" style=";float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F&amp;text=Stop%20Using%20Excessive%20Flash%21&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.lemiffe.com%2Fstop-using-excessive-flash%2F" class="twitter-share-button" id="tweetbutton40" style="width:55px;height:22px;background:transparent url('http://www.lemiffe.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>

<p>Related posts:<ol><li><a href='http://www.lemiffe.com/learning-about-time-lapse-stop-motion/' rel='bookmark' title='Permanent Link: Learning about: Time Lapse? Stop Motion?'>Learning about: Time Lapse? Stop Motion?</a></li>
<li><a href='http://www.lemiffe.com/further-reading-violence-in-films/' rel='bookmark' title='Permanent Link: Further Reading: Violence in Films'>Further Reading: Violence in Films</a></li>
<li><a href='http://www.lemiffe.com/claiming-my-blog-on-technorati/' rel='bookmark' title='Permanent Link: Claiming my Blog on Technorati'>Claiming my Blog on Technorati</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lemiffe.com/stop-using-excessive-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Object Caching 3372/3470 objects using disk

Served from: www.lemiffe.com @ 2012-02-05 18:14:26 -->
