<?xml version="1.0"?>
<rss version="2.0">
<channel>
  <title>Coding the Architecture - developer tag</title>
  <link>http://www.codingthearchitecture.com/tags/developer/</link>
  <description>Software architecture for developers</description>
  <language>en</language>
  <copyright>Coding the Architecture</copyright>
  <lastBuildDate>Wed, 16 May 2012 08:01:04 GMT</lastBuildDate>
  <generator>Pebble (http://pebble.sourceforge.net)</generator>
  <docs>http://backend.userland.com/rss</docs>
  
  
  <item>
    <title>Becoming more architecturally aware - part 2</title>
    <link>http://www.codingthearchitecture.com/2008/10/28/becoming_more_architecturally_aware_part_2.html</link>
    
      
        <description>
          &lt;p&gt;
&lt;a href=&#034;http://www.codingthearchitecture.com/2008/10/17/becoming_more_architecturally_aware_part_1.html&#034;&gt;Last time&lt;/a&gt; I talked about how we need to understand how application frameworks are designed and work behind the scenes in order to produce code that is consistent and compliant with the overall architectural principles. The second aspect that we need to become architecturally aware about is the underlying technology.
&lt;/p&gt;

&lt;p&gt;
Again, let&#039;s put this in context of my current .NET project. I have much more Java experience than .NET experience; I&#039;ve written some C# and I&#039;ve played with Silverlight, but ASP.NET is new to me.  Thankfully, the concepts behind ASP.NET translate fairly directly with those behind JSP, so it&#039;s not as if I&#039;m tackling this from a standing start. Having said that, I&#039;ve felt that it&#039;s really important to get to grips with the underlying architecture of the technology so I can be sure that the code I write, again, integrates properly into the overall architecture. An example here would be the ASP.NET page life cycle. Like JSP, ASP.NET pages have a series of things that happen to them when a request is made, which includes creation of the request/response objects, page compilation, page instantiation, calling page event handlers and so on.

&lt;p&gt;
Knowing the finer details of a programming language is one thing, although using or not using new language features such as generics isn&#039;t necessarily going to negatively affect the architectural integrity of the solution. Not understanding something like the page life cycle of ASP.NET could. For example, it&#039;s important to understand the page life cycle so that you understand when objects can be shared/cached. Session management is another important thing to understand, and blindly throwing objects into the user&#039;s session can have architectural implications if your application needs to scale horizontally and you need to implement transparent session failover using session replication.
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&#034;http://www.codingthearchitecture.com/pages/book/mind-the-gap.html&#034;&gt;Being more architecturally aware&lt;/a&gt; doesn&#039;t necessarily mean that you need to understand the entirety of the bigger picture, but you should understand how to write code that is architecturally compliant. And that means understanding more about how the underlying technologies work.
&lt;/p&gt;
        </description>
      
      
    
    
    
    <category>What is software architecture?</category>
    
    <comments>http://www.codingthearchitecture.com/2008/10/28/becoming_more_architecturally_aware_part_2.html#comments</comments>
    <guid isPermaLink="true">http://www.codingthearchitecture.com/2008/10/28/becoming_more_architecturally_aware_part_2.html</guid>
    <pubDate>Tue, 28 Oct 2008 20:18:49 GMT</pubDate>
  </item>
  
  <item>
    <title>Becoming more architecturally aware - part 1</title>
    <link>http://www.codingthearchitecture.com/2008/10/17/becoming_more_architecturally_aware_part_1.html</link>
    
      
        <description>
          &lt;p&gt;
In my &lt;a href=&#034;http://www.codingthearchitecture.com/pages/book/mind-the-gap.html&#034;&gt;Mind the gap&lt;/a&gt; essay and &lt;a href=&#034;http://www.codingthearchitecture.com/2008/06/11/slides_from_our_software_architect_2008_sessions.html&#034;&gt;Why Software Projects Fail&lt;/a&gt; presentation, I talk about how we as developers should be more architecturally aware if we are to bridge the gap between the code and the overall design. I include myself in this statement because recently I&#039;ve started adding functionality to an existing ASP.NET website and I&#039;ve found it essential that I become as architecturally aware as possible in a short amount of time. Let me provide a couple of real world examples.
&lt;/p&gt;

&lt;p&gt;
Although I&#039;m adding behaviour that is in effect isolated from the rest of the application, my code is still a constituent part of the overall architecture. In addition, I&#039;m using some of the utilities and frameworks that the development team have already produced. Clearly I need to understand the usage patterns in order that I can be productive as a developer on the team but, furthermore, I need to understand something about the inner workings in order that the code I write is architecturally compliant with the rest of the system. I&#039;m sure you&#039;ve seen this yourself, but give a few people the same framework and you&#039;ll see usage patterns that you hadn&#039;t even dreamed of. Some will be what you expected, some may be better than what you expected and some may break your framework in horrible ways.
&lt;/p&gt;

&lt;p&gt;
If somebody on the team is taking responsibility for the architecture and undertaking reviews, it&#039;s possible to catch those instances where application framework code isn&#039;t being used as anticipated. Sometimes, it&#039;s even possible to automate these architectural conflicts with a set of automated unit tests. If, however, nobody is taking on this architectural guardian role and everybody is simply using what they&#039;ve been provided with, then this is where problems start to creep in. Sometimes they creep in from people adopting a copy-paste approach to development (i.e. copying another class because it &#034;works&#034;) and sometimes they creep in because people just aren&#039;t aware of the hidden side effects of their framework usage pattern. Either way, problems introduced because of a lack of architectural awareness might not show up during local single-user testing, but could prove critical when the system is rolled out to a wider user base.
&lt;/p&gt;

&lt;p&gt;
The only way to get really productive with existing application code is to dive into it and understand how it works at both a conceptual and implementation level. Only then can you ensure that the code being written is compliant with the rest of the architecture, which is crucial for the quality and integrity of the solution. This is one way in which developers should become more architecturally aware and next time I&#039;ll discuss another.
&lt;/p&gt;


        </description>
      
      
    
    
    
    <category>What is software architecture?</category>
    
    <comments>http://www.codingthearchitecture.com/2008/10/17/becoming_more_architecturally_aware_part_1.html#comments</comments>
    <guid isPermaLink="true">http://www.codingthearchitecture.com/2008/10/17/becoming_more_architecturally_aware_part_1.html</guid>
    <pubDate>Fri, 17 Oct 2008 09:06:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Mind the gap</title>
    <link>http://www.codingthearchitecture.com/2008/05/02/mind_the_gap.html</link>
    
      
        <description>
          &lt;p&gt;
Our industry has a love/hate relationship with the software architect role, with many organisations dismissing it because of
their negative experiences of architects that dictate from &#034;ivory towers&#034; and aren&#039;t engaged
with the actual task of building working software. This reputation is damaging the IT
industry and inhibiting project success. Things need to change.
This essay looks at the gap between software developers and software architects, offering
some suggestions on how to reduce this gap and ensure projects are driven to a successful conclusion.
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&#034;http://www.codingthearchitecture.com/pages/book/mind-the-gap.html&#034;&gt;Read the full essay&lt;/a&gt; in &lt;a href=&#034;http://www.codingthearchitecture.com/pages/book/index.html&#034;&gt;our book&lt;/a&gt;.
&lt;/p&gt;
        </description>
      
      
    
    
    
    <category>What is the the role of a software architect?</category>
    
    <comments>http://www.codingthearchitecture.com/2008/05/02/mind_the_gap.html#comments</comments>
    <guid isPermaLink="true">http://www.codingthearchitecture.com/2008/05/02/mind_the_gap.html</guid>
    <pubDate>Fri, 02 May 2008 10:58:03 GMT</pubDate>
  </item>
  
  <item>
    <title>Question of the week</title>
    <link>http://www.codingthearchitecture.com/2008/04/11/question_of_the_week.html</link>
    
      
        <description>
          &lt;p&gt;
This week&#039;s question is a common one that I get...
&lt;/p&gt;

&lt;blockquote&gt;
I&#039;m an aspiring software architect and I&#039;m working on a project as a developer. I&#039;m not going to get an architect role without having some experience, but we already have an architect on my project. What should I do and how do I start down the architect path?
&lt;/blockquote&gt;

&lt;p&gt;
First of all, just because you&#039;ve not got the word &#034;architect&#034; in your current job title that doesn&#039;t mean that you&#039;re not involved in the architecture. Consider the skills you&#039;ve demonstrated as a developer - how would you rate yourself on the &lt;a href=&#034;http://www.codingthearchitecture.com/2007/07/31/role_profile_for_software_architects.html&#034;&gt;role profile&lt;/a&gt;? At review, or interview, if you can highlight the &#034;architectural&#034; nature of your experience you might find you can break free of this paradox.
&lt;/p&gt;

&lt;p&gt;
As for building your experience, my recommendation is to take some time to study the architecture of the system that you are currently working on. What is the architecture? How does it work? Why has it been designed that way? These are all questions that you can use to understand the decisions that the architect(s) made. Better still, though, try to spend some time with the architect(s). Tell them about your aspirations and ask them if they can spend some time to walk you through what they are doing and understand the decisions they are making. If the architect is open to having their own work reviewed then this is another opportunity to become more involved. Finally, why not ask to be involved in some of the smaller architecturally significant decisions and work; such as proofs of concept, prototypes and product selection.
&lt;/p&gt;

&lt;p&gt;
Just don&#039;t expect some epiphany where you suddenly feel like an architect! As this 
&lt;a href=&#034;http://www.softwarearchitectures.com/blog/2007/12/advice-for-apprentice-software.html&#034;&gt;advice for apprentice architects&lt;/a&gt; implies, there are various skills and experiences that you need and will continue to develop. At some point you&#039;ve got to step outside your comfort zone and experience to develop these skills. Good luck!
&lt;/p&gt;
        </description>
      
      
    
    
    
    <category>What is the the role of a software architect?</category>
    
    <comments>http://www.codingthearchitecture.com/2008/04/11/question_of_the_week.html#comments</comments>
    <guid isPermaLink="true">http://www.codingthearchitecture.com/2008/04/11/question_of_the_week.html</guid>
    <pubDate>Fri, 11 Apr 2008 18:50:17 GMT</pubDate>
  </item>
  
  </channel>
</rss>

