<?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>Dave Enjoys &#187; programming</title>
	<atom:link href="http://www.daveenjoys.com/tag/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daveenjoys.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 05:23:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>FreeBasic (Programming)</title>
		<link>http://www.daveenjoys.com/2011/04/30/freebasic-programming/</link>
		<comments>http://www.daveenjoys.com/2011/04/30/freebasic-programming/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 17:18:03 +0000</pubDate>
		<dc:creator>davemackey</dc:creator>
				<category><![CDATA[learning]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[BASIC]]></category>
		<category><![CDATA[compiler]]></category>
		<category><![CDATA[Component Frameworks]]></category>
		<category><![CDATA[fbide]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[freebasic]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[pds]]></category>
		<category><![CDATA[QBASIC]]></category>
		<category><![CDATA[quickbasic]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.daveenjoys.com/?p=2271</guid>
		<description><![CDATA[<p>My first experiences programming where on a <a class="zem_slink" title="Commodore 64" rel="wikipedia" href="http://en.wikipedia.org/wiki/Commodore_64">Commodore 64</a> and an <a class="zem_slink" title="Apple II series" rel="wikipedia" href="http://en.wikipedia.org/wiki/Apple_II_series">Apple II</a>+. In both cases there was no separation of the end <a class="zem_slink" title="User interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/User_interface">user interface</a> and the development interface&#8230;you could just start entering code at the command line and [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div class="wp-caption alignright" style="width: 310px"><a href="http://commons.wikipedia.org/wiki/File:Commodore64.jpg"><img title="Commodore 64 computer (1982). Post processing:..." src="http://www.daveenjoys.com/wp-content/uploads/2011/04/300px-Commodore642.jpg" alt="Commodore 64 computer (1982). Post processing:..." width="300" height="190" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
</div>
<p>My first experiences programming where on a <a class="zem_slink" title="Commodore 64" rel="wikipedia" href="http://en.wikipedia.org/wiki/Commodore_64">Commodore 64</a> and an <a class="zem_slink" title="Apple II series" rel="wikipedia" href="http://en.wikipedia.org/wiki/Apple_II_series">Apple II</a>+. In both cases there was no separation of the end <a class="zem_slink" title="User interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/User_interface">user interface</a> and the development interface&#8230;you could just start entering code at the command line and it would begin building. Things have come a long ways since then &#8211; this is good and bad. It is no longer quite as easy or essential to get involved in programming, on the other hand one can much more rapidly build complex applications.</p>
<p>If you ever long for the throw back days you may think of <a class="zem_slink" title="QBasic" rel="wikipedia" href="http://en.wikipedia.org/wiki/QBasic">QBasic</a>, which became ubiquitous due to its inclusion with <a class="zem_slink" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> DOS&#8230;but all these concepts are so from yesteryear &#8211; in computer terms they are almost millennia away.</p>
<p>So what if you want to do some simple programming these days with a <a class="zem_slink" title="BASIC" rel="wikipedia" href="http://en.wikipedia.org/wiki/BASIC">BASIC</a> feel to it? One good option is <a href="http://freebasic.net/">FreeBasic</a>. FreeBasic was built to be largely backwards compatible with Microsoft&#8217;s QBasic and thus can run many old QBasic programs with only minimal modifications, but FreeBasic has also gone far beyond this and delivers a fairly powerful development environment.</p>
<p>If you do decide to use FreeBasic I recommend downloading a free copy of <a href="http://radasm.cherrytree.at/fbedit/">FbEdit</a> as well. See development usually consists of at least two components &#8211; the compiler and the editor. A compiler is the program that takes your code and turns it into an <a class="zem_slink" title="Executable" rel="wikipedia" href="http://en.wikipedia.org/wiki/Executable">executable program</a> while an editor is what you write the code in. Granted, you can write your code in any plain <a class="zem_slink" title="Text editor" rel="wikipedia" href="http://en.wikipedia.org/wiki/Text_editor">text editor</a> &#8211; but trust me, FbEdit will be a big help.</p>
<p>The <a href="http://www.freebasic.net/forum/">FreeBasic forums</a> have a very friendly and active community that will help you along through the learning process. Just take some time to explore the entire site and community, it is pretty impressive.</p>
<p>All this said, FreeBasic isn&#8217;t the language I primarily use for development &#8211; or the language I would recommend. In general, I&#8217;m a <a class="zem_slink" title=".NET Framework" rel="homepage" href="http://msdn.microsoft.com/netframework">Microsoft .NET</a> guy &#8211; mainly ASP.NET and VB.NET. Microsoft offers free copies of the lite versions of these applications as well, and while I say kudos to the FreeBasic team and hope they keep up the great work, if you are looking for a job in technology, you might be better off starting with a Microsoft .NET technology. Actually, probably C#.NET instead of VB.NET as I do (old habits die hard).</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://oreilly.com/catalog/9780735643383/">Programming Microsoft ASP.NET 4</a> (oreilly.com)</li>
<li class="zemanta-article-ul-li"><a href="http://defenestrationcoding.wordpress.com/2011/03/17/visual-basic-what-is-it/">Visual Basic &#8211; What is it?</a> (defenestrationcoding.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.intomobile.com/2011/04/06/mono-android-now-out-write-android-application-microsofts-net-and-c-languages/">Mono for Android is now out [Write Android application in Microsoft's .NET and C# languages]</a> (intomobile.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=62af2f9d-ac9f-49cc-b900-ceb7f0cccb36" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daveenjoys.com/2011/04/30/freebasic-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Components List</title>
		<link>http://www.daveenjoys.com/2010/05/19/asp-net-components-list/</link>
		<comments>http://www.daveenjoys.com/2010/05/19/asp-net-components-list/#comments</comments>
		<pubDate>Thu, 20 May 2010 03:15:30 +0000</pubDate>
		<dc:creator>davemackey</dc:creator>
				<category><![CDATA[productivity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[ASP.NET AJAX]]></category>
		<category><![CDATA[ASP.NET MVC Framework]]></category>
		<category><![CDATA[Component Frameworks]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<category><![CDATA[Windows Presentation Foundation]]></category>

		<guid isPermaLink="false">http://www.daveenjoys.com/?p=424</guid>
		<description><![CDATA[<p>I was recently looking for <a class="zem_slink" title="ASP.NET" rel="homepage" href="http://www.asp.net">ASP.NET</a> components and figured I&#8217;d share some of the resources I came across. I&#8217;ve attempted to only include some of the big name / best out there. Hope these are helpful!</p> <a href="http://www.obout.com/">Obout</a> &#8211; Offers a large variety of controls, several for free. They also offer [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently looking for <a class="zem_slink" title="ASP.NET" rel="homepage" href="http://www.asp.net">ASP.NET</a> components and figured I&#8217;d share some of the resources I came across. I&#8217;ve attempted to only include some of the big name / best out there. Hope these are helpful!</p>
<ul>
<li><a href="http://www.obout.com/">Obout</a> &#8211; Offers a large variety of controls, several for free. They also offer free licenses to students. A few of their controls are: Grid, TreeView, <a class="zem_slink" title="HTML editor" rel="wikipedia" href="http://en.wikipedia.org/wiki/HTML_editor">HTML Editor</a>, <a class="zem_slink" title="Spell checker" rel="wikipedia" href="http://en.wikipedia.org/wiki/Spell_checker">Spell Checker</a>, Calendar, Easy Menu, AJAX Page, and Splitter.</li>
<li><a href="http://www.componentart.com/">ComponentArt</a> &#8211; Offers a large variety of controls for <a class="zem_slink" title="ASP.NET AJAX" rel="wikipedia" href="http://en.wikipedia.org/wiki/ASP.NET_AJAX">ASP.NET AJAX</a>, <a class="zem_slink" title="ASP.NET MVC Framework" rel="wikipedia" href="http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework">MVC</a>, <a class="zem_slink" title="Microsoft Silverlight" rel="homepage" href="http://www.microsoft.com/SILVERLIGHT">Silverlight</a>, <a class="zem_slink" title="Windows Presentation Foundation" rel="wikipedia" href="http://en.wikipedia.org/wiki/Windows_Presentation_Foundation">WPF</a>, etc. A few of their controls are: Calendar, Chart, Editor, <a class="zem_slink" title="Grid view" rel="wikipedia" href="http://en.wikipedia.org/wiki/Grid_view">DataGrid</a>, Snap, and Splitter.</li>
<li><a href="http://www.karamasoft.com/">Karamasoft</a> &#8211; Offers a large variety of controls for ASP.NET including UltimateAJAX, UltimateCalendar, UltimateEditor, UltimateEmail, and UltimateTabstrip.</li>
<li><a href="http://www.telerik.com/">Telerik</a> &#8211; A huge variety of controls for ASP.NET AJAX, MVC, Silverlight, <a class="zem_slink" title="Windows Forms" rel="wikipedia" href="http://en.wikipedia.org/wiki/Windows_Forms">WinForms</a>, and WPF. Also have a number of other productivity tools for development. Some of their controls include Calendar, Captcha, Compression, Editor, FileExplorer, Grid, SkinManager, and StyleSheetManager.</li>
<li><a href="http://www.devexpress.com/">DevExpress</a> &#8211; Offers a set of sixty controls for free. Has a large variety of premium controls available for ASP.NET, WinForms, WPF, and Silverlight. Some of their controls include Charting, Grid, Data Editors, Calendar / Scheduler, Gauges / Dashboards, and Utility Components.</li>
<li><a href="http://www.componentone.com/">ComponentOne</a> &#8211; Large variety of controls and tools. Includes calendar, expander, formdecorator, gridview, headercontent, splitter, superpanel, and tooltip amongst others.</li>
<li><strong>(Added: 5/21/10)</strong> <a href="http://www.infragistics.com/">Infragistics</a> &#8211; Large variety of controls.</li>
<li><strong>(Added: 5/21/10)</strong> <a href="http://us.grapecity.com/">GrapeCity</a>.</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e5a6944b-4562-4d33-b311-e24099f67764/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=e5a6944b-4562-4d33-b311-e24099f67764" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daveenjoys.com/2010/05/19/asp-net-components-list/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stackoverflow &#8211; A Great Resource for the Budding Programmer.</title>
		<link>http://www.daveenjoys.com/2010/04/21/stackoverflow-a-great-resource-for-the-budding-programmer/</link>
		<comments>http://www.daveenjoys.com/2010/04/21/stackoverflow-a-great-resource-for-the-budding-programmer/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 19:30:28 +0000</pubDate>
		<dc:creator>davemackey</dc:creator>
				<category><![CDATA[learning]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Aardvark]]></category>
		<category><![CDATA[Ask an Expert]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Knowledge base]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[stackoverflow]]></category>
		<category><![CDATA[Yahoo Answers]]></category>

		<guid isPermaLink="false">http://www.daveenjoys.com/?p=412</guid>
		<description><![CDATA[<p><a href="http://stackoverflow.com/">Stackoverflow</a> is a niche site, but for its niche it is absolutely amazing. The site features a tremendous community of developers who ask and respond to questions. This creates both a huge <a class="zem_slink" title="Knowledge base" rel="wikipedia" href="http://en.wikipedia.org/wiki/Knowledge_base">knowledge base</a> of existing information and a quick way to get additional information. It is very similar [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://stackoverflow.com/">Stackoverflow</a> is a niche site, but for its niche it is absolutely amazing. The site features a tremendous community of developers who ask and respond to questions. This creates both a huge <a class="zem_slink" title="Knowledge base" rel="wikipedia" href="http://en.wikipedia.org/wiki/Knowledge_base">knowledge base</a> of existing information and a quick way to get additional information. It is very similar in concept to <a class="zem_slink" title="Aardvark" rel="homepage" href="http://vark.com/">Aardvark</a> or <a class="zem_slink" title="Yahoo! Answers" rel="homepage" href="http://answers.yahoo.com">Yahoo! Answers</a> but differentiates itself in its tight focus on development related topics. If you are a developer or are considering becoming one this site is an absolute must.</p>
<p>If you do sign up &#8211; say hi &#8211; I&#8217;m davemackey on stackoverflow. <img src='http://www.daveenjoys.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/de62fe83-1efc-48b0-a054-141fb17482d6/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=de62fe83-1efc-48b0-a054-141fb17482d6" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daveenjoys.com/2010/04/21/stackoverflow-a-great-resource-for-the-budding-programmer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Platform as a Service (PaaS) List.</title>
		<link>http://www.daveenjoys.com/2009/09/18/my-platform-as-a-service-paas-list/</link>
		<comments>http://www.daveenjoys.com/2009/09/18/my-platform-as-a-service-paas-list/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 00:45:42 +0000</pubDate>
		<dc:creator>davemackey</dc:creator>
				<category><![CDATA[learning]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[bungeeconnect]]></category>
		<category><![CDATA[caspio]]></category>
		<category><![CDATA[creator]]></category>
		<category><![CDATA[daas]]></category>
		<category><![CDATA[dbstract]]></category>
		<category><![CDATA[force.com]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[longjump]]></category>
		<category><![CDATA[nubuilder]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[paas]]></category>
		<category><![CDATA[Platform as a service]]></category>
		<category><![CDATA[rad]]></category>
		<category><![CDATA[rapid application development]]></category>
		<category><![CDATA[saas]]></category>
		<category><![CDATA[salesforce]]></category>
		<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[springbase]]></category>
		<category><![CDATA[trackvia]]></category>
		<category><![CDATA[visual web gui]]></category>
		<category><![CDATA[wavemaker]]></category>
		<category><![CDATA[web fuser]]></category>
		<category><![CDATA[WinDev]]></category>
		<category><![CDATA[Wolf Frameworks]]></category>
		<category><![CDATA[workxpress]]></category>
		<category><![CDATA[zoho]]></category>

		<guid isPermaLink="false">http://www.daveenjoys.com/?p=326</guid>
		<description><![CDATA[<p>Some people are going to be up in arms over this list &#8211; because it isn&#8217;t truly a <a class="zem_slink freebase/guid/9202a8c04000641f80000000081246fc" title="Platform as a service" rel="wikipedia" href="http://en.wikipedia.org/wiki/Platform_as_a_service">PaaS</a> (platform as a service) list. I&#8217;m sure some noticeable entries are missing and some non-noticeable entries are present. The order is random. I&#8217;ve just been evaluating PaaS solutions [...]]]></description>
			<content:encoded><![CDATA[<p>Some people are going to be up in arms over this list &#8211; because it isn&#8217;t truly a <a class="zem_slink freebase/guid/9202a8c04000641f80000000081246fc" title="Platform as a service" rel="wikipedia" href="http://en.wikipedia.org/wiki/Platform_as_a_service">PaaS</a> (platform as a service) list. I&#8217;m sure some noticeable entries are missing and some non-noticeable entries are present. The order is random. I&#8217;ve just been evaluating PaaS solutions and figured I&#8217;d post most of what I&#8217;ve found thus far. I had a hard time finding any good lists &#8211; so perhaps this will ease someone else&#8217;s research. I&#8217;d love to hear what PaaS solutions I am missing!</p>
<ul>
<li><a href="http://www.wavemaker.com/">WaveMaker</a> &#8211; Build <a class="zem_slink freebase/guid/9202a8c04000641f800000000044f447" title="Rich Internet application" rel="wikipedia" href="http://en.wikipedia.org/wiki/Rich_Internet_application">rich internet applications</a> (RIA) using a WYSIWYG interface. Community edition is <a class="zem_slink freebase/guid/9202a8c04000641f8000000005bcd984" title="Open source" rel="wikipedia" href="http://en.wikipedia.org/wiki/Open_source">open source</a>. Creates Java applications. <a href="http://en.wikipedia.org/wiki/Wavemaker">Wikipedia Article</a>.</li>
<li><a href="http://www.visualwebgui.com/">Visual Web GUI</a> &#8211; Build RIA&#8217;s using visual development interface. There is a free/open source express edition with regular pricing beginning slightly under $350 for a license. Creates .NET applications. Can deploy to <a class="zem_slink freebase/guid/9202a8c04000641f8000000009d3cafc" title="Azure Services Platform" rel="wikipedia" href="http://en.wikipedia.org/wiki/Azure_Services_Platform">Windows Azure</a>.</li>
<li><a href="http://www.salesforce.com/">SalesForce</a> &#8211; The Force platform is the defacto standard PaaS. Significant free offering included with up to 100 users, etc. Also, free licenses for non-profits with majority price discount on additional licenses.</li>
<li><a href="http://www.nubuilder.com/">nuBuilder</a> &#8211; A open source project that allows for rapid development of web database applications. <a href="http://en.wikipedia.org/wiki/NuBuilder">Wikipedia Article</a>.</li>
<li><a href="http://www.bungeeconnect.com/">BungeeConnect</a> &#8211; Uses an Eclipse-based IDE.</li>
<li><a href="http://www.webfuser.com/">Web Fuser (Inuvia Technologies)</a> &#8211; IDE and hosting. Hosting starts at $20/mo.</li>
<li><a href="http://www.windev.com/">WinDev</a> &#8211; Free lite IDE for rapid development of JAVA/.NET applications. <a href="http://en.wikipedia.org/wiki/WinDev">Wikipedia Article</a>.</li>
<li><a href="http://www.wolfframeworks.com/">Wolf Frameworks</a> &#8211; Has a free starter plan (2 users, 100 MB storage, unlimited apps/entries). <a href="http://en.wikipedia.org/wiki/Wolf_Frameworks">Wikipedia Article</a>.</li>
<li><a href="http://longjump.com/">LongJump</a> &#8211; Pricing starts at $30/user/mo.</li>
<li><a href="http://www.workxpress.com/">WorkXpress</a> &#8211; No pricing, thirty-day free trial. Does offer the ability to host with them, a third party, or your own. Claims to require no programming.</li>
<li><a href="http://www.springbase.com">SpringBase</a> &#8211; Fairly impressive free account for those looking to create a small database application. Appears they no longer offer a free trial. Pricing starts at $99/year.</li>
<li><a href="http://www.trackvia.com/">TrackVia</a> &#8211; Pricing is expensive ($249/mo., starts at $99/mo.). Online database platform</li>
<li><a href="http://www.dbstract.com/">DBstract</a> &#8211; Offers free accounts and low-cost premium accounts ($20/mo.) for creating database applications/hosting.</li>
<li><a href="http://www.caspio.com/">Caspio</a> &#8211; Starts at $40/mo. Claims to require no programming. <a href="http://en.wikipedia.org/wiki/Caspio">Wikipedia Article</a>.</li>
<li><a href="http://www.zoho.com/">Zoho</a> &#8211; Free account for up to two users, $5/ea./mo. additional users.</li>
<li><a href="http://www.hydro4ge.com/">Hyrdo4GE</a> &#8211; Still in closed beta.</li>
<li><a href="http://www.hyperoffice.com/">HyperBase</a> &#8211; Part of HyperOffice. (thanks: Jean Churchill).</li>
<li><a href="http://www.mytaskhelper.com/">MyTaskHelper</a> &#8211; UI is pretty basic, but it is free.</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/70067b1d-bc86-4ab9-9454-650bffae5451/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=70067b1d-bc86-4ab9-9454-650bffae5451" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daveenjoys.com/2009/09/18/my-platform-as-a-service-paas-list/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Microsoft&#8217;s Free Development Tools.</title>
		<link>http://www.daveenjoys.com/2009/09/15/microsofts-free-development-tools/</link>
		<comments>http://www.daveenjoys.com/2009/09/15/microsofts-free-development-tools/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 04:11:12 +0000</pubDate>
		<dc:creator>davemackey</dc:creator>
				<category><![CDATA[learning]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[ASP.NET Web Matrix]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[QBASIC]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server Express]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.daveenjoys.com/?p=324</guid>
		<description><![CDATA[<p>I remember as a teenager programming for years in <a class="zem_slink freebase/guid/9202a8c04000641f800000000025e844" title="QBasic" rel="wikipedia" href="http://en.wikipedia.org/wiki/QBasic">QBASIC</a> &#8211; a free, lite version of <a class="zem_slink freebase/guid/9202a8c04000641f8000000000078856" title="QuickBASIC" rel="wikipedia" href="http://en.wikipedia.org/wiki/QuickBASIC">QuickBasic</a> <a class="zem_slink freebase/guid/9202a8c04000641f8000000000026344" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> bundled with DOS and early versions of Windows. It was great fun &#8211; but I yearned to get my hands on the [...]]]></description>
			<content:encoded><![CDATA[<p>I remember as a teenager programming for years in <a class="zem_slink freebase/guid/9202a8c04000641f800000000025e844" title="QBasic" rel="wikipedia" href="http://en.wikipedia.org/wiki/QBasic">QBASIC</a> &#8211; a free, lite version of <a class="zem_slink freebase/guid/9202a8c04000641f8000000000078856" title="QuickBASIC" rel="wikipedia" href="http://en.wikipedia.org/wiki/QuickBASIC">QuickBasic</a> <a class="zem_slink freebase/guid/9202a8c04000641f8000000000026344" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> bundled with DOS and early versions of Windows. It was great fun &#8211; but I yearned to get my hands on the full QuickBasic so I could compile my applications and give them to others without giving away all my source code (okay, OSS was barely known back then).</p>
<p>Later I would save for months to purchase <a class="zem_slink freebase/guid/9202a8c04000641f8000000000dafc3d" title="Visual Basic" rel="wikipedia" href="http://en.wikipedia.org/wiki/Visual_Basic">Visual Basic</a> 5. $100+ is a lot of money for a teenager &#8211; but I wanted to program so bad that I scraped and saved.</p>
<p>After that there was the <a class="zem_slink freebase/guid/9202a8c04000641f8000000000320fd7" title="ASP.NET Web Matrix" rel="wikipedia" href="http://en.wikipedia.org/wiki/ASP.NET_Web_Matrix">ASP.NET Web Matrix</a> &#8211; a predecessor to the great tools Microsoft now offers for free. Unfortunately, its development was abandoned and for a long period of time I was left in a painful lurch&#8230;.but then Microsoft started the trend that has made me extremely happy &#8211; free lite development tools.</p>
<p>These development tools include Visual Basic 2008 (for desktop applications), Visual C# 2008 (also for desktop applications, but in C#), <a class="zem_slink freebase/guid/9202a8c04000641f8000000000131543" title="Visual C++" rel="wikipedia" href="http://en.wikipedia.org/wiki/Visual_C%2B%2B">Visual C++</a> (just like the last two), and <a class="zem_slink freebase/guid/9202a8c04000641f800000000039fc6b" title="Microsoft Visual Studio Express" rel="homepage" href="http://msdn.microsoft.com/vstudio/express/default.aspx">Visual Web Developer</a> (for web applications) &#8211; all in the Express line. Additionally they&#8217;ve thrown out there <a class="zem_slink freebase/guid/9202a8c04000641f80000000045cb144" title="SQL Server Express" rel="wikipedia" href="http://en.wikipedia.org/wiki/SQL_Server_Express">SQL Server Express</a> (database back-end) and <a class="zem_slink freebase/guid/9202a8c04000641f8000000000110357" title="Microsoft SQL Server" rel="homepage" href="http://www.microsoft.com/sqlserver">SQL Server</a> Studio Management Studio Express (for writing <a class="zem_slink freebase/guid/9202a8c04000641f8000000000039719" title="SQL" rel="wikipedia" href="http://en.wikipedia.org/wiki/SQL">SQL</a> and managing databases).</p>
<p>While these applications are noted as &#8220;express&#8221; that doesn&#8217;t suggest that they are majorly crippled &#8211; rather they are extremely full functioning applications which can be used to create many impressive applications. For the new, hobbyist, or small business developer many times the Express Editions will be all that you ever need.</p>
<p>This was a smart move on Microsoft&#8217;s part &#8211; it gets people hooked on Microsoft development young &#8211; and it works great for us as well &#8211; because we get free development tools. By the time Microsoft expects us to shell out cash &#8211; well, we are probably making some from our now decent development skills. Go grab yourself some free development applications: <a href="http://www.microsoft.com/express/">http://www.microsoft.com/express/</a>.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e6ba6359-b5ff-41f2-8d2d-75cc4fa00eb2/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=e6ba6359-b5ff-41f2-8d2d-75cc4fa00eb2" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution paragraph-reblog"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daveenjoys.com/2009/09/15/microsofts-free-development-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlueHost &#8211; Simple, Effective Web Hosting.</title>
		<link>http://www.daveenjoys.com/2008/07/16/bluehost-simple-effective-web-hosting/</link>
		<comments>http://www.daveenjoys.com/2008/07/16/bluehost-simple-effective-web-hosting/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 23:44:28 +0000</pubDate>
		<dc:creator>davemackey</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[Bluehost]]></category>
		<category><![CDATA[Domain name]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpbb]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[shared hosting]]></category>
		<category><![CDATA[Web hosting service]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.daveenjoys.com/?p=21</guid>
		<description><![CDATA[<p>Its not uncommon for me to get asked, &#8220;What web host would you recommend for me to use when building a new website?&#8221; I figured now would be as good a time as any</p> <p>to post about one of the hosts I utilize. This host is great for beginners and advanced users alike. That said, [...]]]></description>
			<content:encoded><![CDATA[<p>Its not uncommon for me to get asked, &#8220;What web host would you recommend for me to use when building a new website?&#8221; I figured now would be as good a time as any</p>
<div class="wp-caption alignright" style="width: 188px"><a href="http://www.crunchbase.com/company/bluehost"><img class="zemanta-img-inserted zemanta-img-configured" title="Image representing Bluehost as depicted in Cru..." src="http://www.daveenjoys.com/wp-content/uploads/2012/01/21602v1-max-450x4501.png" alt="Image representing Bluehost as depicted in Cru..." width="178" height="39" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
<p>to post about one of the hosts I utilize. This host is great for beginners and advanced users alike. That said, I&#8217;ll also note right at the beginning that the instigator of this post was actually a server outage on <a href="http://www.bluehost.com/track/davidshq/">Bluehost</a>&#8216;s part. Yesterday I was writing a review of the movie Amazing Grace (don&#8217;t worry, I&#8217;ll rewrite it soon) when the <a href="http://www.bluehost.com/track/davidshq/">Bluehost</a> server went down. But no host is perfect and this is one of only a few times I have experienced any performance problems from <a href="http://www.bluehost.com/track/davidshq/">Bluehost</a>&#8216;s service.</p>
<p>First, lets talk about <a href="http://www.bluehost.com/track/davidshq/">Bluehost</a> from a beginner&#8217;s perspective. If you are looking to create a website or start a blog there are a few easy ways to get started. One is to hire someone to assist you in doing so (you can always hire me). Another is to utilize any of a number of free services that allow you to create sites/blogs easily &#8211; for example in the blogging arena one can get free accounts from blogger and wordpress. The third option, and the one I personally prefer, is utilizing a shared host. This scenario gives you the most flexibility. When determining what sort of host you should utilize ask yourself these questions:</p>
<ol>
<li>Do I enjoy technology? (If no, hire someone).</li>
<li>Do I want to learn more about web-based technologies? (If yes, utilize a shared host).</li>
<li>Do I have time to expend on learning new technologies? (If no, hire someone or utilize a free account).</li>
<li>Do I want a professional presence? (If yes, either hire someone or use a shared host and expect to spend a significant amount of time learning and experimenting).</li>
</ol>
<p>Should you decide to go with a shared host you face one additional large question: Do I want a Windows or a <a class="zem_slink" title="Linux" href="http://www.kernel.org/" rel="homepage">Linux</a> environment? If you are new to technology generally, I recommend Linux. In fact, unless you already utilize web-based technologies that are Windows specific I recommend Linux. Why? Because its built around a nice word &#8211; free. There is one exception. If you want to do custom product development rather than just building a straight-up site, you may want to consider using Windows for your development environment. Microsoft&#8217;s <a class="zem_slink" title="Microsoft Visual Studio" href="http://msdn.microsoft.com/vstudio/" rel="homepage">Visual Studio</a> is pretty kick-butt. I really enjoy <a class="zem_slink" title="ASP.NET" href="http://en.wikipedia.org/wiki/ASP.NET" rel="wikipedia">ASP.NET</a> and think it is great for developing applications in.</p>
<p>Okay&#8230;So we&#8217;ve decided to go with a Linux host. In that case, open an account with <a href="http://www.bluehost.com/track/davidshq/">Bluehost</a>. Here&#8217;s the main factors I consider killer about <a href="http://www.bluehost.com/track/davidshq/">Bluehost</a>:</p>
<ul>
<li>$6.95/mo. What? Yes. $6.95/mo. We eat that at McDonald&#8217;s in one lunch! That includes a free domain name (e.g. yourname.com), which is pretty huge since these usually cost around $10 in and of themselves.</li>
<li>Unlimited Hosting/File Transfer. You can store as much data as you want on their servers (okay, there are some exceptions, but generally&#8230;you&#8217;ll never run out of space) and you can also transfer as much information to and from the server as you want (again, some exceptions&#8230;but mainly apply to people who are trying to abuse the service).</li>
<li>Free <a class="zem_slink" title="MySQL" href="http://www.mysql.com/" rel="homepage">MySQL</a> Databases. MySQL Databases (or <a class="zem_slink" title="PostgreSQL" href="http://www.postgresql.org" rel="homepage">PostgreSQL</a>) are the backbone of most modern web applications. They store data in a way that makes it extremely easy and quick to retrieve.</li>
<li>SimpleScripts. Allows you to within two minutes deploy popular web applications including <a class="zem_slink" title="WordPress" href="http://wordpress.org/" rel="homepage">WordPress</a> (blogging), Joomla (cms), Drupal (cms), <a class="zem_slink" title="PhpBB" href="http://www.phpbb.com/" rel="homepage">phpBB</a> (forums), <a class="zem_slink" title="Zenphoto" href="http://www.zenphoto.org/" rel="homepage">Zenphoto</a> (photo gallery), Roundcube (webmail), and <a class="zem_slink" title="WikkaWiki" href="http://wikkawiki.org" rel="homepage">WikkaWiki</a> (wiki) amongst many others. Seriously &#8211; two minutes.</li>
<li><a href="http://www.bluehost.com/track/davidshq/">Bluehost</a> includes lots of other standard features like FTP, email, free advertising credits (<a class="zem_slink" title="Google" href="http://google.com" rel="homepage">Google,</a> Yahoo, Miva), and automatic backups.</li>
</ul>
<p>So what are you waiting for? There are no contracts. Even if you just want to familiarize yourself with some web-based technologies &#8211; open an account, use it for a few months, and then cancel. Its a great learning tool. No, it won&#8217;t run the next Google, but once you grow big enough and learn enough you can move to a larger host (we&#8217;ll talk about them in another post) who can handle your highest demands.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=fc7462bd-9df4-4ef6-a988-e7b459288dba" alt="Enhanced by Zemanta" /></a></div>

]]></content:encoded>
			<wfw:commentRss>http://www.daveenjoys.com/2008/07/16/bluehost-simple-effective-web-hosting/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.daveenjoys.com/tag/programming/feed/ ) in 0.52950 seconds, on Feb 10th, 2012 at 5:04 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 10th, 2012 at 6:04 pm UTC -->
