<?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>HardLikeSoftware &#187; Web Apps</title>
	<atom:link href="http://hardlikesoftware.com/weblog/category/web-apps/feed/" rel="self" type="application/rss+xml" />
	<link>http://hardlikesoftware.com/weblog</link>
	<description>The writings of John Snyders, mostly about software.</description>
	<lastBuildDate>Wed, 14 Sep 2011 04:57:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Angular, Bindings and Templates</title>
		<link>http://hardlikesoftware.com/weblog/2010/09/19/angular-bindings-and-templates/</link>
		<comments>http://hardlikesoftware.com/weblog/2010/09/19/angular-bindings-and-templates/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 01:53:00 +0000</pubDate>
		<dc:creator>John Snyders</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://hardlikesoftware.com/weblog/?p=97</guid>
		<description><![CDATA[I recently watched a video about a cool new technology called &#60;angular/&#62;. It looks like a great way to create web applications. It caught my attention because I saw in it some parallels with some of my recent writings and what I am currently working on.
The video was very good but in the beginning Misko [...]]]></description>
			<content:encoded><![CDATA[<p>I recently watched a <a href="http://www.youtube.com/watch?v=0iQCLlu1dko">video</a> about a cool new technology called <a href="http://angularjs.org">&lt;angular/&gt;</a>. It looks like a great way to create web applications. It caught my attention because I saw in it some parallels with some of my recent <a href="/weblog/2009/05/14/a-declaritive-language-for-web-applications/">writings</a> and what I am currently <a href="/weblog/2010/09/06/implementing-a-domain-specific-language/">working on</a>.</p>
<p>The video was very good but in the beginning Misko Hevery struggled a bit to describe it and at the end admitted the biggest problem was explaining to people what &lt;angular/&gt; is. To me it is clearly a language, and an extensible one at that. It is (or at least contains) as he describes an HTML compiler. Doesn&#8217;t a compiler imply some language to compile. The source is clearly more than just HTML so it must be more than just an HTML compiler. I wonder if there is some reason he avoids calling it a language. The fact that it can be extended to handle new behaviors, widgets, etc. just makes it a better language. Is there some fear that calling it a language would put people off? It doesn&#8217;t bother me since I previously said that higher level languages will provide the <a href="/weblog/2009/04/20/writtten-language-already-the-best-tool-for-software/"> biggest productivity gains</a>. </p>
<p>The parallels I was talking about are:</p>
<ul>
<li>Its a declarative language</li>
<li>The language is designed to be extended</li>
<li>It has two way data binding</li>
</ul>
<p>Two way data binding is a very important aspect in simplifying the creation of web apps. The first time I ever saw data binding was back in the the late &#8217;80s. I was visiting a friend that was working on a <a href="http://en.wikipedia.org/wiki/Maser">maser</a>, which is cool (literally) in its own right, but what caught my eye, as he showed me around his lab, was some software running on an old Mac. That software was LabView. The fact that a line drawn between a sensor and a gauge meant that any time the senor value changed the gauge was updated really impressed me. More recently I noticed that data binding is built in to the JavaFX language. I haven&#8217;t written any programs in LabView or JavaFX so I&#8217;m not sure if the bindings can be bidirectional but I&#8217;m pretty sure at least in JavaFX that bidirectional changes can be accomplished.</p>
<p>It is the two way data bindings that most notably distinguish &lt;angular/&gt; from template languages. I used to be a big fan of template languages, and StringTemplate was my favorite. Lately I have found them to be less useful. One reason is that in my recent work I have found that procedural logic far outweighs the amount of template text. The bigger reason is that most template languages don&#8217;t automatically protect you from <a href="/weblog/2008/02/15/script-injection-and-stringtemplate/">script injection (XSS)</a>. There are many JavaScript template languages available now and I don&#8217;t have a need for any of them. But &lt;angular/&gt; is different &mdash; it is not a template language and it looks like it protects against script injection by default.</p>
<p>&lt;angular/&gt; is new but it looks very promising.</p>
]]></content:encoded>
			<wfw:commentRss>http://hardlikesoftware.com/weblog/2010/09/19/angular-bindings-and-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing a domain specific language</title>
		<link>http://hardlikesoftware.com/weblog/2010/09/06/implementing-a-domain-specific-language/</link>
		<comments>http://hardlikesoftware.com/weblog/2010/09/06/implementing-a-domain-specific-language/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 01:53:13 +0000</pubDate>
		<dc:creator>John Snyders</dc:creator>
				<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://hardlikesoftware.com/weblog/?p=95</guid>
		<description><![CDATA[I have been so busy at work lately that since wrapping up the climbing robot I haven&#8217;t had time for any substantial personal projects. What I&#8217;ve been working on is a declarative DSL for implementing a web application based on ideas I previously wrote about. Like I said its a work project so I can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I have been so busy at work lately that since wrapping up the <a href="http://hardlikesoftware.com/weblog/2009/11/14/lego-climbing-robot/">climbing robot</a> I haven&#8217;t had time for any substantial personal projects. What I&#8217;ve been working on is a declarative DSL for implementing a web application based on <a href="http://hardlikesoftware.com/weblog/2009/05/14/a-declaritive-language-for-web-applications/">ideas</a> I previously wrote about. Like I said its a work project so I can&#8217;t go into any details. I will say that I&#8217;m working with <a href="http://www.antlr.org/">ANTLR v3</a> and <a href="http://jquery.com/">jQuery</a>, which are technologies I really like. My point in mentioning it is that if you read that post and wondered, like I did, if those ideas would work I believe the project is far enough along that I can say that they do.</p>
]]></content:encoded>
			<wfw:commentRss>http://hardlikesoftware.com/weblog/2010/09/06/implementing-a-domain-specific-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Sprites vs. High Contrast Mode</title>
		<link>http://hardlikesoftware.com/weblog/2009/11/04/css-sprites-vs-high-contrast-mode/</link>
		<comments>http://hardlikesoftware.com/weblog/2009/11/04/css-sprites-vs-high-contrast-mode/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 03:12:14 +0000</pubDate>
		<dc:creator>John Snyders</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://hardlikesoftware.com/weblog/2009/11/04/css-sprites-vs-high-contrast-mode/</guid>
		<description><![CDATA[Using positioned background images (a.k.a CSS Sprites) has a number of benefits: 

Performance. One of the performance recommendations made by Yahoo&#8217;s performance team is to reduce HTTP requests. One way to do this is using the CSS Sprite technique &#8212; combining many images into a single background image.
Skin-ability. With the img tag the image URL [...]]]></description>
			<content:encoded><![CDATA[<p>Using positioned background images (a.k.a <a href="http://www.alistapart.com/articles/sprites/">CSS Sprites</a>) has a number of benefits: </p>
<ul>
<li>Performance. One of the <a href="http://developer.yahoo.com/performance/rules.html">performance recommendations</a> made by Yahoo&#8217;s performance team is to reduce HTTP requests. One way to do this is using the CSS Sprite technique &mdash; combining many images into a single background image.</li>
<li>Skin-ability. With the img tag the image URL is in HTML markup where it is hard to change. With CSS Sprites the image URL is in a CSS file making it more convenient to change. Sure you can change the contents of the original file but there are reasons for changing the URL. It is not as easy to move the images to a different server or group them in different image files when the URL is not in CSS.</li>
</ul>
<p>However there are drawbacks. The biggest is accessibility, specifically high contrast mode. In high contrast mode all background images and colors are ignored &mdash; replaced with high contrast colors such as white on black or black on white. The other issue is that background images are not always printed.</p>
<p>The prevailing accessibility advice is to not use background images for functional images. The underlying problem is that there is no way in HTML/CSS to identify a background image as being functional. They are all considered decorative. It is also true that not all img tag images are functional but again there is no way to distinguish them for the purpose of high contrast mode. So high contrast mode makes a reasonable assumption that background images are decoration to be removed and img images are functional and must be shown. From here on I&#8217;ll call functional images icons. They either convey important information or are interactive (like a toolbar button for example).</p>
<p>I have seen recommendations that functional background images should be replaced with text when high contrast mode is detected. This does not seem right to me at all. A desktop app does not change its toolbar button icons to text in high contrast mode. The assumption is that icons are already designed to have reasonable contrast.</p>
<p>It also just feels right to me that the icon URLs should come from CSS.</p>
<p>Since I care about performance and accessibility I&#8217;m not happy with this conflict. I want a solution that puts the icon URL in CSS, works in high contrast mode and allows me to combine icons into a single image file. Here is what I came up with.<br />
<span id="more-88"></span><br />
My typical markup for an icon is something like this:</p>
<pre class='code'>
    &lt;button>&lt;span class="icon edit">&lt;/span>&lt;/button>
    &lt;button>&lt;span class="icon delete">&lt;/span>&lt;/button>
</pre>
<p>The basic style is:</p>
<pre class='code'>
span.icon {
    display: -moz-inline-box;
    display: inline-block;
    width: 16px;
    height: 16px;
}
button span.icon.edit {
    background: transparent url(images/toolbar.png) no-repeat 0px -32px;
}
button span.icon.delete {
    background: transparent url(images/toolbar.png) no-repeat 0px -16px;
}
</pre>
<p>This creates a button with an edit icon assuming that toolbar.png is a sprite image with the edit icon at offset 0, 32 etc. I left out extras like a title tooltip and hover and active states for the button icon to keep things simple. This works nicely until high contrast mode is turned on. </p>
<p>You can use the same sprite image in an img element and position it relative to a fixed size parent that has overflow:hidden to achieve similar functionality to a background image.</p>
<p>For example:</p>
<pre class='code'>
    &lt;button>&lt;span class="icon edit">&lt;img alt="" src="images/toolbar.png">&lt;/span>&lt;/button>
    ...
</pre>
<p>The style to make this work is:</p>
<pre class='code'>
span.icon {
    display: -moz-inline-box;
    display: inline-block;
    width: 16px;
    height: 16px;
    overflow: hidden;
    position: relative;
}
button span.icon.edit img {
    position: relative;
    left: 0px;
    top: -32px;
}
...
</pre>
<p>This works in high contrast mode (as well as normal mode) and has multiple icons in a single image but the image URL is in the markup not in the stylesheet. What I want to do is use JavaScript to take the image URL from CSS and dynamically add the img element as a child of the icon span. The html mark up and stylesheet will be the same as the first example above except that the stylesheet will have these additional styles:</p>
<pre class='code'>
span.icon.edit img {
    top: -32px;
    left: 0px;
}
span.icon.delete img {
    top: -16px;
    left: 0px;
}
</pre>
<p>These additional rules are not too much extra work considering you will usually have additional rules to adjust the position on hover and active states anyway.</p>
<p>My first attempt tried to get the URL from the current styles using jQuery like so: $(&#8230;).css(&#8220;background-image&#8221;). The trouble is that in high contrast mode the effective current background image is &#8220;none&#8221; even though the CSS file does have a background image. This makes sense &mdash; the program should &#8220;see&#8221; what the user sees. The solution is to get the actual background image directly from the CSS rules. This takes a little fiddling to get it to work cross browser. Some browsers return the full URL and some return exactly what is in the CSS file. Some times its wrapped in quotes. </p>
<p>This <a href="/projects/HCMtest.html">test page</a> shows an example of the traditional CSS Sprite technique as well as my jQuery enhanced high contrast mode compatible version. All the styles and JavaScript are in the html file to make it easy to see how it works. It also contains code to detect high contrast mode. One option is to only make the dynamic change if high contrast mode is detected but that is not the approach I took in the test page.</p>
<p>View the page with high contrast mode turned on and off to see the difference. Note: not all browsers or operating systems support high contrast mode. Firefox and IE on Windows do. It is also important that the dynamic changes work even in browsers that don&#8217;t support it (by work I mean that the icons look right and are functional, not that high contrast mode magically starts working in browsers that don&#8217;t support it). I tested on Windows with IE8, FF3.5, Safari 3.2 and 4.0, Opera 10 and Chrome and found that they all worked. I also tested on Linux with FF3 and found no problems. I don&#8217;t have a Mac to test with. I tested with IE6 and found that it did not work. More investigation is needed but IE6 is not a high priority for me right now. I need to test with IE7 but don&#8217;t have it handy right now. </p>
<p>Feedback on how it works in other browsers and operating systems would be very helpful.</p>
<p>I did not do any performance testing. The assumption is that moving the image from the background to an img tag will not cause the image to be requested from the server. The Firebug Net tab indicates that it is fetched just once. The page seems to render fast enough with no flashing. More testing is needed but I think the principal is sound. The script could use some improvement to be more robust especially for much older browsers so they at least fall back to using the CSS sprites as is. I bet there are other cases of relative URLs to test for as well.</p>
<p>Keep in mind that the test page is meant to demonstrate just this technique. It has a bunch of other accessibility no-nos such as the disclose icons are not focusable, keyboard accessible, and have no screen reader accessible label text. </p>
]]></content:encoded>
			<wfw:commentRss>http://hardlikesoftware.com/weblog/2009/11/04/css-sprites-vs-high-contrast-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE8 has strange rules for showing focus</title>
		<link>http://hardlikesoftware.com/weblog/2009/09/04/ie8-has-strange-rules-for-showing-focus/</link>
		<comments>http://hardlikesoftware.com/weblog/2009/09/04/ie8-has-strange-rules-for-showing-focus/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 03:07:27 +0000</pubDate>
		<dc:creator>John Snyders</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://hardlikesoftware.com/weblog/2009/09/04/ie8-has-strange-rules-for-showing-focus/</guid>
		<description><![CDATA[While working on some accessible UI widgets I found strange behavior in IE8 related to when it does or doesn&#8217;t show the focus outline around an element that has focus.
When you use the focus method to set focus to a focusable element the expectation is that, in the absence of css rules to the contrary, [...]]]></description>
			<content:encoded><![CDATA[<p>While working on some accessible UI widgets I found strange behavior in IE8 related to when it does or doesn&#8217;t show the focus outline around an element that has focus.</p>
<p>When you use the focus method to set focus to a focusable element the expectation is that, in the absence of css rules to the contrary, the browser will show a focus outline around the element using its default style.  This is what happens in Firefox, Chrome, and Safari. (Opera has its own set of focus problems which I didn&#8217;t investigate fully.)</p>
<p>There are a number of elements that are naturally focusable, such as inputs and anchors. In addition any element with a tabindex attribute equal to -1 is focusable. If the tabindex is non-negative then it is focusable and in the tab order. My test case uses list elements with tabindex of -1 or 0. I suspect that the same is true of other elements using tabindex.</p>
<p>Older versions of IE (I tested IE6 and I believe IE7 works the same in this regard) had some strange additional requirements beyond just calling focus. The outline would not be shown if the focus method was used to give focus to an element with a tabindex of -1. So before setting focus you would have to set the tabIndex to zero (or a positive number). </p>
<p><code>elem.tabIndex = 0;<br />
elem.focus();<br />
</code></p>
<p>Also if you click on an element with tabindex of -1 no outline is shown unless the className is updated (even if the value doesn&#8217;t change). Perhaps other style changes would work as well.</p>
<p>IE8 adds some new bizarre behavior. First if css is used to set an explicit outline style on the elements (either directly or inherited) then the old IE quirks mentioned above go away as well as the new IE8 problem described below. Setting your own outline style for focus isn&#8217;t a good idea unless you are giving your whole web app a focus style makeover. I think it is best to stick with the default styles since it is what the user is probably used to. There is also the problem of old browser like IE6 not supporting the outline style.</p>
<p>If the className of the element receiving focus is updated in the onfocus handler while the tabIndex is -1 then no focus outline is shown. Assuming that the tabIndex is -1 and addClass is a function that adds a class to the className, one would expect the following two lines of code could be executed in either order.</p>
<p><code>addClass(elem, "myfocus");<br />
elem.tabIndex = 0;<br />
</code></p>
<p>In IE8 setting the tabIndex to zero must be done first or the outline is not shown. This is exactly what tripped me up. If I just happened to write the statements in the opposite order I would never have discovered these oddities.</p>
<p>Note that in all cases focus is actually set correctly it is just the visual indication of focus that is wrong &#8211; but thats the important part of focus.</p>
<p>I created a <a href="/projects/IE8FocusTest.html">test page</a> that allows playing around with these rules. It is also an example of how focus can be managed with a roving tabindex.  If you play with this page in different browsers you will notice that in Firefox (versions 2 &#8211; 3.5) , Chrome, and Safari 4 (I tested on Windows) it doesn&#8217;t matter what options are checked, the behavior is correct. In IE you can play with the options to see which combinations work.</p>
<p>I wonder if this is intentional in IE8 or is something that will get fixed in a point release.</p>
]]></content:encoded>
			<wfw:commentRss>http://hardlikesoftware.com/weblog/2009/09/04/ie8-has-strange-rules-for-showing-focus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I think I know about making accessible widgets</title>
		<link>http://hardlikesoftware.com/weblog/2009/09/03/what-i-think-i-know-about-making-accessible-widgets/</link>
		<comments>http://hardlikesoftware.com/weblog/2009/09/03/what-i-think-i-know-about-making-accessible-widgets/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 03:03:53 +0000</pubDate>
		<dc:creator>John Snyders</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://hardlikesoftware.com/weblog/2009/09/03/what-i-think-i-know-about-making-accessible-widgets/</guid>
		<description><![CDATA[I mention Oracle in this post so as a reminder: my views are my own and do not necessarily reflect the views of my employer.
One nice thing about working at Oracle is that they take accessibility seriously. I have worked on web apps before that were supposed to be accessible but this is the first [...]]]></description>
			<content:encoded><![CDATA[<p>I mention Oracle in this post so as a reminder: my views are my own and do not necessarily reflect the views of my employer.</p>
<p>One nice thing about working at Oracle is that they take accessibility seriously. I have worked on web apps before that were supposed to be accessible but this is the first company I have worked for where I could actually get my hands on a (non-demo-mode) <a href="http://www.freedomscientific.com/default.asp">JAWS</a> screen reader to do my own testing. You can try to follow all the best practices but you really do need to test with a screen reader to know how well you have done.</p>
<p>I have found that keyboard accessibility and screen reader accessibility are somewhat at odds.</p>
<p>If you do the right thing for keyboard accessibility (i.e. managing focus) and don’t use <a href="http://en.wikipedia.org/wiki/WAI-ARIA">WAI-ARIA</a> at all then you have a chance of being accidentally partially accessible in JAWS and probably other screen readers. This is assuming that you follow best practices for being accessible to screen readers (use label correctly, use native form controls – links, checkboxes etc. in semantically appropriate ways).</p>
<p>The problem is that all your keyboard/focus management logic is in vain since you are probably going to use arrow keys and JAWS is not going to give them to you (JAWS uses many keys for itself). The reason you have any chance of success is because the normal screen reading behavior of the arrow keys may be close enough and using native form controls will allow JAWS to access them in a reasonable way.  How well it works will depend on the details of your rich control. The best you can do is to try to find the right balance between normal use and screen reader use. This should work OK with older browsers and screen readers depending on the various bugs and odd interactions between various browser and screen readers.</p>
<p>The other option is to go the full WIA-ARIA route. By using the appropriate ARIA roles and states and properties you can get JAWS version 10 (and presumably other new ARIA aware readers) to give you the keyboard keys you need. For this to work you need very recent versions of browser and JAWS. I have had some initial success with JAWS 10 and FF3.5. It looks like this approach will provide the very best functionality for all users. I have not yet tried the combination of JAWS 10 and IE8. The trouble is that the combination of JAWS 10 and IE7 works quite badly when you use ARIA. JAWS seems to get some of the ARIA information like roles but doesn’t get enough to work correctly. It gives up the keyboard keys but then doesn’t handle the ARIA based changes and therefore the normal JAWS arrow key functionality doesn’t work either. This is the worst possible behavior.  Presumably older versions of JAWS that don’t know anything about ARIA will work fine with IE7 even if the rich control uses ARIA provided the ARIA support is on top of non-ARIA techniques mentioned previously. I have not yet tested this combination.</p>
<p>To me this means that if you are adding on to an existing app that must support older browsers or screen readers then using ARIA probably isn&#8217;t worth it yet. But if you are starting a new app that wont be released for a while then using ARIA is the way to go. You can still support older browsers but you would have to require that for screen reader accessibility an ARIA aware browser and reader must be used. </p>
<p>Another possible solution is to have an option to turn WAI-ARIA support on or off. I don’t like this because of the added complexity of implementation and testing.</p>
<p>Here are some resources that I found very useful in my recent accessibility work: <a href="http://yuiblog.com/blog/2009/02/23/managing-focus/">Improving Accessibility Through Focus Management</a>, <a href="http://www.w3.org/TR/wai-aria-practices/">WAI-ARIA Best Practices</a>, and <a href="http://www.quirksmode.org/blog/archives/2008/04/delegating_the.html">Delegating the focus and blur events</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://hardlikesoftware.com/weblog/2009/09/03/what-i-think-i-know-about-making-accessible-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Language Oriented Programming</title>
		<link>http://hardlikesoftware.com/weblog/2009/06/30/language-oriented-programming/</link>
		<comments>http://hardlikesoftware.com/weblog/2009/06/30/language-oriented-programming/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 02:53:06 +0000</pubDate>
		<dc:creator>John Snyders</dc:creator>
				<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://hardlikesoftware.com/weblog/2009/06/30/language-oriented-programming/</guid>
		<description><![CDATA[Since my last post where I presented a number of ideas on a declarative domain specific language for implementing web applications, I learned about the language oriented programming paradigm. 
I recommend reading &#8220;Language Oriented Programming&#8221; by M. P. Ward.  It also claims programmer productivity as a benefit of what it calls the &#8220;middle-out&#8221; development [...]]]></description>
			<content:encoded><![CDATA[<p>Since my last <a href="http://hardlikesoftware.com/weblog/2009/05/14/a-declaritive-language-for-web-applications/">post</a> where I presented a number of ideas on a declarative domain specific language for implementing web applications, I learned about the <a href="http://en.wikipedia.org/wiki/Language_oriented_programming">language oriented</a> programming paradigm. </p>
<p>I recommend reading <a title="In PDF format" href="http://www.cse.dmu.ac.uk/~mward/martin/papers/middle-out-t.pdf">&#8220;Language Oriented Programming&#8221;</a> by M. P. Ward.  It also claims programmer productivity as a benefit of what it calls the &#8220;middle-out&#8221; development style. </p>
]]></content:encoded>
			<wfw:commentRss>http://hardlikesoftware.com/weblog/2009/06/30/language-oriented-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

