<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>Shimon Krokhmal's blog</title>
  <link rel="alternate" type="text/html" href="http://www.krokhmal.com/" />
  <link rel="self" href="http://www.krokhmal.com/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2008-07-01T07:02:36.7699007-07:00</updated>
  <author>
    <name>Shimon Krokhmal</name>
  </author>
  <subtitle> A place where security and high performance coding meet</subtitle>
  <id>http://www.krokhmal.com/</id>
  <generator uri="http://www.dasblog.net" version="2.0.7180.0">DasBlog</generator>
  <entry>
    <title>Contineus Integration - Find out how deep the rabbit hole goes.</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2008/07/01/ContineusIntegrationFindOutHowDeepTheRabbitHoleGoes.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,a3972569-2fd2-4989-8f1b-5a5831512e45.aspx</id>
    <published>2008-07-01T06:16:38.7603555-07:00</published>
    <updated>2008-07-01T07:02:36.7699007-07:00</updated>
    <category term="Development process" label="Development process" scheme="http://www.krokhmal.com/CategoryView,category,Development%2Bprocess.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I have finally started to build a CI server for our project.<br />
during the process, i've examined several build tools and CI servers, such as: CruiseControl\CroiseControl.Net,
Ant\nAnt and MSBuild.<br />
these tools have proven themselves enough (just google it..), but one thing similar
to all of them was the huge amount of XML configurations that needed to be done in
order to get you started.<br />
after a short chat with <a href="http://blogs.microsoft.co.il/blogs/ndobkin/">Nati
Dobkin</a> on the subject, he suggested the TeamCity application, this is really
a smooth start for the CI, a very modular &amp; user freindly system that allows you
to do what you need in the shortest way.
</p>
        <p>
What am i talking about you ask ?<br />
how does the rabit hole got to do with all of this ?
</p>
        <p>
after setting up the environmet, i've started to try get this work with our project.<br />
at first glance, this task should be easy : get the source from TFS, compile, create
deployment files, deploy the files.
</p>
        <p>
          <strong>Q:</strong> what do you think will happen if you take your solution to an
isolated environment and try to compile it?
</p>
        <p>
          <strong>A: </strong>if project was conducted badly, you'll probably get missing reference
errors.<br />
it even get more intresting if those missing Dll's reside in a different workspace(in
the TFS), and the only thing that links this project to the other dll's is the physical
path <strong>ON YOUR HARD DRIVE</strong>.<br />
not exactly the right way to go.
</p>
        <p>
Possible solutions:
</p>
        <ul>
          <li>
preserve the physical link and hold your breath that nothing bad ever happen</li>
          <li>
make some order in the TFS server</li>
          <li>
create a different solution for each Application\server in the system.</li>
        </ul>
        <p>
what do you think is the best way to go?<br />
leave a comment.
</p>
        <img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=a3972569-2fd2-4989-8f1b-5a5831512e45" />
        <br />
        <hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
  <entry>
    <title>BDD : Defining the language - deep dive</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2008/06/20/BDDDefiningTheLanguageDeepDive.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,2dde0c54-d00e-49b2-9fd5-721fa715454c.aspx</id>
    <published>2008-06-20T05:50:18.5669481-07:00</published>
    <updated>2008-06-20T05:58:57.8541153-07:00</updated>
    <category term="BDD" label="BDD" scheme="http://www.krokhmal.com/CategoryView,category,BDD.aspx" />
    <category term="Development process" label="Development process" scheme="http://www.krokhmal.com/CategoryView,category,Development%2Bprocess.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
as we described, The narrative should include a role, a feature and a benefit
</p>
        <p>
“As a [role] 
<br />
I want [feature] 
<br />
so that [benefit]” 
</p>
        <p>
This template has a number of advantages.<br />
By specifying the role within the narrative, you know who to talk to about the feature. 
<br />
By specifying the benefit, you cause the story writer to consider why they want a
feature.<br />
It gets interesting if you find the feature won’t actually deliver the benefit attributed
to it. 
<br />
This usually means you have a missing story. 
<br />
if there is one story with the current feature, which delivers a different benefit
(and is therefore still useful), then there is a hidden story whereby you will
need a different feature to deliver the benefit described.
</p>
        <p>
          <br />
          <strong>The scenario title should say what’s different- </strong>You should be able
to line up the scenarios side by side, and describe how they differ using only the
title. It should be obvious from the title whether this is the scenario you care about,
compared to the others.
</p>
        <p>
The scenario should be described in terms of <strong>Givens</strong>, <strong>Events</strong> and <strong>Outcomes</strong><br />
This is the single most powerful behavioral shift in the adopting BDD process. 
<br />
Simply by getting the business users, the analysts, the testers and the developers
to adopt this vocabulary of “given/when/then”, <strong>they discover that a world
of ambiguity falls away.</strong><br />
Not all scenarios are this simple. 
<br />
Some are best represented as a sequence of events, described as: 
</p>
        <p>
given [some context]<br />
 when [I do something] 
<br />
then [this happens] 
<br />
when [I do another thing] 
<br />
then [this new thing happens] 
</p>
        <p>
And so on. 
</p>
        <p>
An example is a wizard-style website, where you step through a sequence of screens
to build up a complex data model. 
<br />
It is perfectly appropriate to intermingle sequences of events and outcomes, as long
as you get into the habit of thinking in these terms.<br />
One interesting emergent behavior is that the quality of the conversation changes. 
<br />
You will quickly discover that you have missed out an assumed given, or forgotten
to verify an outcome.<br />
By introducing the given/when/then vocabulary, we can <strong>dramatically improve
the quality of the group interaction. </strong></p>
        <p>
          <strong>The givens should define all of, and no more than, the required context:<br /></strong>Any additional givens are distracting, which makes it hard for someone looking
at the story for the first time – whether from the technical or business side – to
understand what they need to know. 
<br />
Similarly any missing givens are really assumptions. If you can get a different outcome
from the givens provided, then there must be something missing.
</p>
        <p>
          <strong>The event should describe the feature :<br /></strong>The event itself should be very simple, typically only a single call into
the production code. As discussed above, some scenarios are more complicated than
this, but mostly the scenarios for a story will revolve around a single event. They
will differ only in the context (the givens) and the corresponding expected outcomes.
</p>
        <p>
          <strong>The story should be small enough to fit in an iteration :<br /></strong>There are no hard and fast rules about how you do this, as long as you break
it down into demonstrable chunks. 
<br />
In general if there are more than about five or six scenarios, a story can probably
be broken down by grouping similar scenarios together.<br />
 <br /><br />
When we need to understand what a computer system is supposed to do so that it can
best serve some business need, questions like:<br />
• What is the most important thing the system should do?<br />
• What is the next most important thing the system doesn't yet do? 
<br />
• If we were to switch off the system, where and what would be the biggest impact? 
</p>
        <p>
These Powerful questions can be tough to answer. 
<br />
But following these will guide us to insights that we hadn't though of.<br /></p>
        <img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=2dde0c54-d00e-49b2-9fd5-721fa715454c" />
        <br />
        <hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
  <entry>
    <title>BDD: The Story part 3 - Acceptance Criteria</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2008/06/14/BDDTheStoryPart3AcceptanceCriteria.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,c6bd6c57-dc8b-4bb9-86bf-e548de1c8d87.aspx</id>
    <published>2008-06-14T02:29:49.634-07:00</published>
    <updated>2008-06-12T04:59:54.9769856-07:00</updated>
    <category term="BDD" label="BDD" scheme="http://www.krokhmal.com/CategoryView,category,BDD.aspx" />
    <category term="Development process" label="Development process" scheme="http://www.krokhmal.com/CategoryView,category,Development%2Bprocess.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
the Acceptance Criteria consist of a collection of Scenario allow us to determine
when we are done, The most important aspect of a story is the language in which it
is written. 
<br />
The golden rule is that the Story should be written in the language of the Role, that
is to say the beneficiary of the feature. 
<br />
If the Story represents a business feature, it should be written in business terms
with the aid of a business analyst.<br />
If the story describes a technical requirement, such as resilience or scalability
(sometimes called “non-functional” requirements), it should be presented in the appropriate
technical language.<br />
Acceptance Criteria specify, as a collection of Scenario, what needs to be achieved
if the Behavior of the Feature is to be considered finished.
</p>
        <p>
          <strong>A Scenario:<br /></strong>Some Behavior that can be automatically verified once the Story (or some
part of it) is delivered. 
<br />
The Scenario sets up the world in a known state (or in a way that will behave deterministically)
and executes a sequence of one or more Events resulting in one or more verifiable
Outcomes. 
<br />
We commonly implement these scenarios, as FIT fixtures, Selenium tests or programmatically
as code, but the technology is less important than the concept here, the aim of these
verifiable scenarios is to define what a successful outcome looks like. 
</p>
        <p>
This use of Scenarios gives us two immediate returns. 
</p>
        <ul>
          <li>
They form the basis for our estimates, leading to more consistent estimates than story-level
estimations. 
</li>
          <li>
They show when a story is trying to do “too much”. 
<br />
If there are more than a handful of scenarios (five or six), it suggests that the
story should be split into several smaller stories, each providing independent benefit,
and each consisting of a subset of the scenarios. 
<br />
Boundary or exception cases are good examples of this: sets of boundary scenarios
might clump together to describe common business cases, and some of these clusters
will be deemed more important than others. Smaller stories means finer-grained control
over prioritization, finer grained visibility of progress and reduced exposure to
technical risk.</li>
        </ul>
        <p>
Scenario structure:
</p>
        <p>
          <strong>Scenario 1: </strong>Title<br />
Given [context]<br />
And [some more context]…<br />
When  [event]<br />
Then  [outcome]<br />
And [another outcome]…
</p>
        <img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=c6bd6c57-dc8b-4bb9-86bf-e548de1c8d87" />
        <br />
        <hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
  <entry>
    <title>BDD: The Story part 2 - Narrative</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2008/06/13/BDDTheStoryPart2Narrative.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,46c701d5-249b-44f4-bac2-c10dc901af7f.aspx</id>
    <published>2008-06-13T02:04:50.631-07:00</published>
    <updated>2008-06-12T16:04:45.7629162-07:00</updated>
    <category term="BDD" label="BDD" scheme="http://www.krokhmal.com/CategoryView,category,BDD.aspx" />
    <category term="Development process" label="Development process" scheme="http://www.krokhmal.com/CategoryView,category,Development%2Bprocess.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
the nerrative Gives us a brief description of what to deliver, 
<br />
and why we should deliver it (in the form of Features and Benefits). 
</p>
        <p>
we shall define few terms:
</p>
        <p>
          <strong>A Role:<br /></strong>Is an aspect that describes the person, or thing, that will benefit from
the Feature.<br />
It is essentially the same as an Actor in a UseCase.
</p>
        <p>
          <strong>A Feature:<br /></strong>It describes something that the system should do (the behavior, as it were).<br />
An important aspect of a Feature is that it is described solely in business terms
and not in terms of technology or technologists, 
<br />
unless of course the business is technology or technologists!!
</p>
        <p>
          <strong>A Benefit:<br /></strong>This is the reason we are delivering a particular Feature– it describes the
business value accrued from this Feature. 
<br />
Initially the Benefit is usually qualitative, 
<br />
but we usually expect to see some quantitative business value assigned to the Story
before it is chosen for development. 
<br />
This is to help keep us honest and to ensure that we are focusing our development
efforts on Features that have real business value.
</p>
        <p>
To ensure that we don't forget any of these critical components we often use a template
for the narrative like this: 
</p>
        <p>
          <strong>As a &lt;Role&gt; 
<br />
I want &lt;Feature&gt; 
<br />
So that &lt;Benefit&gt; </strong>
        </p>
        <p>
A concrete example may be something like: 
</p>
        <p>
          <strong>As a</strong> Developer 
<br /><strong>I want</strong> to be able to rename classes 
<br /><strong>So that</strong> I don’t spend too much time worrying about getting the name
right first time 
</p>
        <p>
          <br />
The reason for this degree of formality is that it helps us avoid some common analysis
anti-patterns. 
</p>
        <p>
Two in particular are worth mentioning: 
</p>
        <ul>
          <li>
            <strong>Feature = Benefit</strong>. 
<br />
This is where the “benefit” is simply a restatement of the feature, this is a common
failing in technical or semi-technical customers, 
<br />
who wish to promote a particular technical solution. 
<br />
These requirements can often be (diplomatically) eliminated, reducing complexity,
risk and the associated cost. 
</li>
          <li>
            <strong>Feature ≠&gt; Benefit. (“Feature does not imply benefit”) 
<br /></strong>The feature described will not deliver the benefit described. 
<br />
When this occurs it often reveals hidden requirements. 
<br />
It may be that the Feature delivers a completely different benefit which we hadn't
identified. 
<br />
Conversely, we may need to introduce some new Feature to actually achieve the specified
Benefit, 
<br />
a previously hidden, and thus unplanned, feature. 
</li>
        </ul>
        <p>
 
</p>
        <p>
 
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=46c701d5-249b-44f4-bac2-c10dc901af7f" />
        <br />
        <hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
  <entry>
    <title>BDD: The Story part1 - Title</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2008/06/12/BDDTheStoryPart1Title.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,7e759fc8-e933-4957-8ec9-eeae489a0a6c.aspx</id>
    <published>2008-06-12T01:55:05.189-07:00</published>
    <updated>2008-06-12T02:04:15.1481042-07:00</updated>
    <category term="BDD" label="BDD" scheme="http://www.krokhmal.com/CategoryView,category,BDD.aspx" />
    <category term="Development process" label="Development process" scheme="http://www.krokhmal.com/CategoryView,category,Development%2Bprocess.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
if you haven't read the introduction yet, please read the <a href="http://www.krokhmal.com/2007/10/26/BDDTDDIntroduction.aspx">introduction
to BDD</a></p>
        <p>
          <strong>What is this story all about ?<br /></strong>The idea is that the words you use influence the way you think about something.<br />
To smooth its path through the development process, We say that it must fulfill certain
additional criteria. 
</p>
        <p>
A story should have a Title, a Narrative and AcceptanceCriteria:
</p>
        <p>
          <strong>Title:</strong>
        </p>
        <p>
Gives us a label to describe this piece of function throughout the life of the project.<br />
It is important to choose good titles to describe the story, 
<br />
Since the story is an atom of development and as such is referred to in all sorts
of conversations throughout the life of the project. 
</p>
        <p>
Poor titles for stories are things like: <br />
   • Implement Performance Enhancements <br />
   • Move Data <br />
   • Create Persistence Layer 
<br /></p>
        <p>
Titles should describe the story in <strong>business terms</strong>, and should make
sense when, 
<br />
For example, considered as a unit of value for the system. 
</p>
        <p>
Some examples of better titles may be: <br />
   • Accept Credit Card Payment <br />
   • Confirm Exchange Rate <br />
   • Accept Product Updates<br /></p>
        <img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=7e759fc8-e933-4957-8ec9-eeae489a0a6c" />
        <br />
        <hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
  <entry>
    <title>Image is in the eye of the beholder</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2008/05/20/ImageIsInTheEyeOfTheBeholder.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,32dcab2b-9190-4787-bbbf-04af99cffac9.aspx</id>
    <published>2008-05-20T04:47:32.6168221-07:00</published>
    <updated>2008-05-20T05:14:12.0861117-07:00</updated>
    <category term="Performance" label="Performance" scheme="http://www.krokhmal.com/CategoryView,category,Performance.aspx" />
    <category term="Web" label="Web" scheme="http://www.krokhmal.com/CategoryView,category,Web.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
As a part of our performance enhancements in our system, we disovered that we have
43 requests to the server when the page is loaded.<br />
This is huge delay in page loading.<br /><br />
what he decided to do is recreate the images on the site into 1 big image &amp; "pick"
from it using CSS Sprite.
</p>
        <p>
For those who does not femilier with the "sprite way", it is a concept that we take
all our images and merge them into one combined image.<br />
hence eliminating the need of requesting each image individualy.<br />
using CSS classes we define the original images from the big image (sort of cutting
it from the big image).
</p>
        <p>
Doing this, it reduces the requests dramaticly and improves loading time of the page.<br />
same outcome, better performance.
</p>
        <img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=32dcab2b-9190-4787-bbbf-04af99cffac9" />
        <br />
        <hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
  <entry>
    <title>making some order in the hardware mess!</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2007/12/29/makingSomeOrderInTheHardwareMess.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,a89b015c-44d9-4433-a606-d55ca1703b04.aspx</id>
    <published>2007-12-29T03:35:20.4843607-07:00</published>
    <updated>2007-12-29T03:50:26.1232221-07:00</updated>
    <category term="@ff Topic" label="@ff Topic" scheme="http://www.krokhmal.com/CategoryView,category,%40ff%2BTopic.aspx" />
    <category term="Life" label="Life" scheme="http://www.krokhmal.com/CategoryView,category,Life.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
it's going to be an off topic post, 
<br />
so if you are seeking for some cool code topics &amp; examples, this is not the post
fo you...
</p>
        <p>
lately i found myself surrounded with overdozed hardware and rigs,<br />
i currentlly own :
</p>
        <p>
1 workstation<br />
1 HTPC<br />
1 downloads server<br />
1 laptop<br />
1 Huge CRT<br />
1 Huge LCD.<br />
1 KVM switch<br />
1 Router<br />
6564536 Wires (Help ?)
</p>
        <p>
Ok, this is alot of hardware, do i really need all of this ?<br />
so, what am i planning to do ?
</p>
        <p>
1. get rid of the HTPC rig, and the CRT screen (a new computer for my mom...)<br />
2. convert the workstation to an HTPC (this includes some minor hardware changes)<br />
3. work mainly from <a href="http://global.msi.com.tw/index.php?func=proddesc&amp;prod_no=1208&amp;maincat_no=135">my
cool new laptop</a><br />
4. work wireless as possible to get rid of these nasty wires.<br />
5. install all the rigs with proper hardware
</p>
        <p>
this is lots of work to be done.....
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=a89b015c-44d9-4433-a606-d55ca1703b04" />
        <br />
        <hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
  <entry>
    <title>Israelli Bloggers group in facebook.</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2007/11/29/IsraelliBloggersGroupInFacebook.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,bee1774a-5c66-4197-8257-f7ac5b3d8cc1.aspx</id>
    <published>2007-11-29T13:20:02.4263915-07:00</published>
    <updated>2007-11-29T13:32:52.2866099-07:00</updated>
    <category term="@ff Topic" label="@ff Topic" scheme="http://www.krokhmal.com/CategoryView,category,%40ff%2BTopic.aspx" />
    <category term="Blog related" label="Blog related" scheme="http://www.krokhmal.com/CategoryView,category,Blog%2Brelated.aspx" />
    <category term="Facebook" label="Facebook" scheme="http://www.krokhmal.com/CategoryView,category,Facebook.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">I've created an <a href="http://www.facebook.com/group.php?gid=7776851206">israelli
bloggers group </a>on facebook.<br />
if you have a blog and you are from israel, send me a request to join the group :)<br /><br /><p></p><img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=bee1774a-5c66-4197-8257-f7ac5b3d8cc1" /><br /><hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
  <entry>
    <title>What am i doing to become a better developer ?</title>
    <link rel="alternate" type="text/html" href="http://www.krokhmal.com/2007/11/22/WhatAmIDoingToBecomeABetterDeveloper.aspx" />
    <id>http://www.krokhmal.com/PermaLink,guid,1c574054-973b-48cc-80cc-e61c8faecc81.aspx</id>
    <published>2007-11-22T06:41:53.4257291-07:00</published>
    <updated>2007-11-22T09:32:21.7337821-07:00</updated>
    <category term="Life" label="Life" scheme="http://www.krokhmal.com/CategoryView,category,Life.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Months after <a href="http://www.human-debugger.net">shani</a> tagged me for this
issue, it's time to pick up the glove, and write a post about it.
</p>
        <p>
a little note on that matter,<br />
i think that if a developer whats to become better, he should aknowelange it mentally
to always strive for self improvement.
</p>
        <p>
          <strong>Things I should do.</strong>
          <br />
to answer that question, i must ask myself what are my goals, where do i see myself
in 3-5 years ?<br />
well, as far as i remmember myself, my goal was always to become a solution Architect,
the dude that can design "dreams" to reality.<br />
to achive that, you must work your way from the buttom, get femilier with all the
bits and bites, design practices, practice software development and after few years
in the field, emerge your own opinion about software development process, devolopment
methodoligies, and create new consepts.<br />
once you have done all that, you can start becoming an architect.<br />
after defining that, lets ask this question again :<br />
What things should i do?
</p>
        <ul>
          <li>
read <strong>alot </strong>about development methodologies, and when/where to apply
them (Scrum like development is not always suitable for every organization)</li>
          <li>
upgrade my skills to current technologies (.Net 3.5)</li>
          <li>
Apply new learnt stuff to daily tasks</li>
        </ul>
        <p>
          <strong>Things I want to do</strong>
        </p>
        <ul>
          <li>
Write a book on software development (it won't be published in the next year)</li>
          <li>
create a perfect development process (is it possible ?)</li>
          <li>
enter the <a href="http://www.krokhmal.com/2007/10/26/BDDTDDIntroduction.aspx">BDD</a> world.<br /></li>
        </ul>
        <p>
          <strong>Things I won't do</strong>
          <br />
as much as it is tempting to leave <a href="http://www.krokhmal.com/2007/09/29/ANewHome888com.aspx">what
i am doing now</a>, and persue my dream becoming a solution architect,<br />
the next few years seems as a good time to gain more expirience at the development
section before advancing to the next level.
</p>
        <p>
          <strong>Tagging this dude :<br />
 </strong>
          <a href="http://www.miky-schreiber.com/Blog/">
            <strong>Micky Shriber</strong>
          </a>
        </p>
        <img width="0" height="0" src="http://www.krokhmal.com/aggbug.ashx?id=1c574054-973b-48cc-80cc-e61c8faecc81" />
        <br />
        <hr />
Shimon krokhmal, a part of the Krokhmal family
</div>
    </content>
  </entry>
</feed>