<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" version="2.0">
  <channel>
    <title>Interoperability Happens - Python</title>
    <link>http://blogs.tedneward.com/</link>
    <description>Ted's takes on the enterprise Java, .NET and Web services communities and technologies</description>
    <copyright>Ted Neward</copyright>
    <lastBuildDate>Sat, 27 Apr 2013 00:59:12 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 1.9.7067.0</generator>
    <managingEditor>tneward@tedneward.com</managingEditor>
    <webMaster>tneward@tedneward.com</webMaster>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=1a5622b2-d891-43ad-af4b-785ba018e862</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,1a5622b2-d891-43ad-af4b-785ba018e862.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,1a5622b2-d891-43ad-af4b-785ba018e862.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=1a5622b2-d891-43ad-af4b-785ba018e862</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Recently, having been teaching C# for a bit at Bellevue College, I’ve been thinking
more and more about the way in which we approach building object-oriented programs,
and particularly the debates around types and type systems. I think, not surprisingly,
that the way in which the vast majority of the O-O developers in the world approach
types and when/how they use them is flat wrong—both in terms of the times when they
create classes when they shouldn’t (or shouldn’t have to, anyway, though obviously
this is partly a measure of their language), and the times when they should create
classes and don’t.
</p>
        <p>
The latter point is the one I feel like exploring here; the former one is certainly
interesting on its own, but I’ll save that for a later date. For now, I want to think
about (and write about) how we often don’t create types in an O-O program, and should,
because doing so can often create clearer, more expressive programs.
</p>
        <h3>A Person
</h3>
        <p>
Common object-oriented parlance suggests that when we have a taxonomical entity that
we want to represent in code (i.e., a concept of some form), we use a class to do
so; for example, if we want to model a “person” in the world by capturing some of
their critical attributes, we do so using a class (in this case, C#):
</p>
        <p>
          <font face="Consolas">class Person 
<br />
{ 
<br />
    public string FirstName { get; set; } 
<br />
    public string LastName { get; set; } 
<br />
    public int Age { get; set; } 
<br />
    public bool Gender { get; set; } 
<br />
}</font>
        </p>
        <p>
Granted, this is a pretty simplified case; O-O enthusiasts will find lots of things
wrong with this code, most of which have to do with dealing with the complexities
that can arise.
</p>
        <p>
From here, there’s a lot of ways in which this conversation can get a lot more complicated—how,
where and when should inheritance factor into the discussion, for example, and how
exactly do we represent the relationship between parents and children (after all,
some children will be adopted, some will be natural birth, some will be disowned)
and the relationship between various members who wish to engage in some form of marital
status (putting aside the political hot-button of same-sex marriage, we find that
some states respect “civil unions” even where no formal ceremony has taken place,
many cultures still recognize polygamy—one man, many wives—as Utah did up until the
mid-1800s, and a growing movement around polyamory—one or more men, one or more women—looks
like it may be the next political hot-button around marriage) definitely depends on
the business issues in question…
</p>
        <p>
… but that’s the whole point of encapsulation, right? That if the business needs change,
we can adapt as necessary to the changed requirements without having to go back and
rewrite everything.
</p>
        <h4>Genders
</h4>
        <p>
Consider, for example, the rather horrible decision to represent “gender” as a boolean:
while, yes, at birth, there are essentially two genders at the biological level, there
are some interesting birth defects/disorders/conditions in which a person’s gender
is, for lack of a better term, screwed up—men born with female plumbing and vice versa.
The system might need to track that. Or, there are those who consider themselves to
have been born into the wrong gender, and choose to live a lifestyle that is markedly
different from what societal norms suggest (the transgender crowd). Or, in some cases,
the gender may not have even been determined yet: fetuses don’t develop gender until
about halfway through the pregnancy.
</p>
        <p>
Which suggests, offhand, that the use of a boolean here is clearly a Bad Idea. But
what suggests as its replacement? Certainly we could maintain an internal state string
or something similar, using the get/set properties to verify that the strings being
set are correct and valid, but the .NET type system has a better answer: Given that
there is a finite number of choices to gender—whether that’s two or four or a dozen—it
seems that an enumeration is a good replacement:
</p>
        <p>
          <font face="Consolas">enum Gender 
<br />
{ 
<br />
    Male, Female, 
<br />
    Indeterminate, 
<br />
    Transgender 
<br />
}</font>
        </p>
        <p>
          <font face="Consolas">class Person 
<br />
{ 
<br />
    public string FirstName { get; set; } 
<br />
    public string LastName { get; set; } 
<br />
    public int Age { get; set; } 
<br />
    public Gender Gender { get; set; } 
<br />
}</font>
        </p>
        <p>
Don’t let the fact that the property and the type have the same name be too confusing—not
only does it compile cleanly, but it actually provides some clear description of what’s
being stored. (Although, I’ll admit, it’s confusing the first time you look at it.)
More importantly, there’s no additional code that needs to be written to enforce only
the four acceptable values—or, extend it as necessary when that becomes necessary.
</p>
        <h3>
        </h3>
        <h4>Ages
</h4>
        <p>
Similarly, the age of a person is not an integer value—people cannot be negative age,
nor do they usually age beyond a hundred or so. Again, we could put code around the
get/set blocks of the Age property to ensure the proper values, but it would again
be easier to let the type system do all the work:
</p>
        <p>
          <font face="Consolas">struct Age 
<br />
{ 
<br />
    int data; 
<br />
    public Age(int d) 
<br />
    { 
<br />
        Validate(d); 
<br />
        data = d; 
<br />
    }</font>
        </p>
        <p>
          <font face="Consolas">    public static void Validate(int d) 
<br />
    { 
<br />
        if (d &lt; 0) 
<br />
            throw new ArgumentException("Age
cannot be negative"); 
<br />
        if (d &gt; 120) 
<br />
            throw new ArgumentException("Age
cannot be over 120"); 
<br />
    }</font>
        </p>
        <p>
          <font face="Consolas">    // explicit int to Age conversion operator 
<br />
    public static implicit operator Age(int a) 
<br />
    { return new Age(a); }</font>
        </p>
        <p>
          <font face="Consolas">    // explicit Age to int conversion operator 
<br />
    public static implicit operator int(Age a) 
<br />
    { return a.data; } 
<br />
}</font>
        </p>
        <p>
          <font face="Consolas">class Person 
<br />
{ 
<br />
    public string FirstName { get; set; } 
<br />
    public string LastName { get; set; } 
<br />
    public Age Age { get; set; } 
<br />
    public Gender Gender { get; set; } 
<br />
}</font>
        </p>
        <p>
Notice that we’re still having to write the same code, but now the code is embodied
in a type, which is itself intrinsically reusable—we can reuse the Age type in other
classes, which is more than we can say if that code lives in the Person.Age property
getter/setter. Again, too, now the Person class really has nothing to do in terms
of ensuring that age is maintained properly (and by that, I mean greater than zero
and less than 120). (The “implicit” in the conversion operators means that the code
doesn’t need to explicitly cast the int to an Age or vice versa.)
</p>
        <p>
Technically, what I’ve done with Age is create a restriction around the integer (System.Int32
in .NET terms) type; were this XSD Schema types, I could do a derivation-by-restriction
to restrict an xsd:int to the values I care about (0 – 120, inclusive). Unfortunately,
no O-O language I know of permits derivation-by-restriction, so it requires work to
create a type that “wraps” another, in this case, an Int32.
</p>
        <h4>
        </h4>
        <h4>
        </h4>
        <h4>Names
</h4>
        <p>
Names are another point of problem, in that there’s all kinds of crazy cases that
(as much as we’d like to pretend otherwise) turn out to be far more common than we’d
like—not only do most people have middle names, but sometimes women will take their
husband’s last name and hyphenate it with their own, making it sort of a middle name
but not really, or sometimes people will give their children to multiple middle names,
Japanese names put family names first, sometimes people choose to take a single name,
and so on. This is again a case where we can either choose to bake that logic into
property getters/setters, or bake it into a single type (a “Name” type) that has the
necessary code and properties to provide all the functionality that a person’s name
represents.
</p>
        <p>
So, without getting into the actual implementation, then, if we want to represent
names in the system, then we should have a full-fledged “Name” class that captures
the various permutations that arise:
</p>
        <p>
          <font face="Consolas">class Name 
<br />
{   
<br />
    public Title Honorific { get { ... } } 
<br />
    public string Individual { get { ... } } 
<br />
    public string Nickname { get { ... } } 
<br />
    public string Family { get { ... } } 
<br />
    public string Full { get { ... } } 
<br />
    public static Name Parse(string incoming) { ... }  
<br />
}</font>
        </p>
        <p>
          <font face="Consolas">
          </font>
        </p>
        <p>
See, ultimately, everything will have to boil back to the core primitives within the
language, but we need to build stronger primitives for the system—Name, Title, Age,
and don’t even get me started on relationships.
</p>
        <h4>
        </h4>
        <h4>
        </h4>
        <h4>Relationships
</h4>
        <p>
Parent-child relationships are also a case where things are vastly more complicated
than just the one-to-many or one-to-one (or two-to-one) that direct object references
encourage; in the case of families, given how complex the modern American family can
get (and frankly, it’s not any easier if we go back and look at medieval families,
either—go have a look at any royal European genealogical line and think about how
you’d model that, particularly Henry VIII), it becomes pretty quickly apparent that
modeling the relationships themselves often presents itself as the only reasonable
solution.
</p>
        <p>
I won’t even begin to get into that example, by the way, simply because this blog
post is too long as it is. I might try it for a later blog post to explore the idea
further, but I think the point is made at this point.
</p>
        <h3>
        </h3>
        <h3>Summary
</h3>
        <p>
The object-oriented paradigm often finds itself wading in tens of thousands of types,
so it seems counterintuitive to suggest that we need more of them to make programs
more clear. I agree, many O-O programs are too type-heavy, but part of the problem
there is that we’re spending too much time creating classes that we shouldn’t need
to create (DTOs and the like) and not enough time thinking about the actual entities
in the system.
</p>
        <p>
I’ll be the first to admit, too, that not all systems will need to treat names the
way that I’ve done—sometimes an age is just an integer, and we’re OK with that. Truthfully,
though, it seems more often than not that we’re later adding the necessary code to
ensure that ages can never be negative, have to fall within a certain range, and so
on.
</p>
        <p>
As a suggestion, then, I throw out this idea: <strong><em>Ensure that all of your
domain classes never expose primitive types to the user of the system.</em></strong> In
other words, Name never exposes an “int” for Age, but only an “Age” type. C# makes
this easy via “using” declarations, like so:
</p>
        <p>
          <font face="Consolas">using FirstName = System.String; 
<br />
using LastName = System.String;</font>
        </p>
        <p>
which can then, if you’re thorough and disciplined about using the FirstName and LastName
types instead of “string”, evolve into fully-formed types later in their own right
if they need to. C++ provides “typedef” for this purpose—unfortunately, Java lacks
any such facility, making this a much harder prospect. (This is something I’d stick
at the top of my TODO list were I nominated to take Brian Goetz’s place at the head
of Java9 development.)
</p>
        <p>
In essence, encapsulate the primitive types away so that when they don’t need to be
primitives, or when they need to be more complex than just simple holders of data,
they don’t have to be, and clients will never know the difference. That, folks, is
what encapsulation is trying to be about.
</p>
        <img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=1a5622b2-d891-43ad-af4b-785ba018e862" />
        <br />
        <hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>On Types</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,1a5622b2-d891-43ad-af4b-785ba018e862.aspx</guid>
      <link>http://blogs.tedneward.com/2013/04/27/On+Types.aspx</link>
      <pubDate>Sat, 27 Apr 2013 00:59:12 GMT</pubDate>
      <description>&lt;p&gt;
Recently, having been teaching C# for a bit at Bellevue College, I’ve been thinking
more and more about the way in which we approach building object-oriented programs,
and particularly the debates around types and type systems. I think, not surprisingly,
that the way in which the vast majority of the O-O developers in the world approach
types and when/how they use them is flat wrong—both in terms of the times when they
create classes when they shouldn’t (or shouldn’t have to, anyway, though obviously
this is partly a measure of their language), and the times when they should create
classes and don’t.
&lt;/p&gt;
&lt;p&gt;
The latter point is the one I feel like exploring here; the former one is certainly
interesting on its own, but I’ll save that for a later date. For now, I want to think
about (and write about) how we often don’t create types in an O-O program, and should,
because doing so can often create clearer, more expressive programs.
&lt;/p&gt;
&lt;h3&gt;A Person
&lt;/h3&gt;
&lt;p&gt;
Common object-oriented parlance suggests that when we have a taxonomical entity that
we want to represent in code (i.e., a concept of some form), we use a class to do
so; for example, if we want to model a “person” in the world by capturing some of
their critical attributes, we do so using a class (in this case, C#):
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;class Person 
&lt;br /&gt;
{ 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string FirstName { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string LastName { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public int Age { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public bool Gender { get; set; } 
&lt;br /&gt;
}&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
Granted, this is a pretty simplified case; O-O enthusiasts will find lots of things
wrong with this code, most of which have to do with dealing with the complexities
that can arise.
&lt;/p&gt;
&lt;p&gt;
From here, there’s a lot of ways in which this conversation can get a lot more complicated—how,
where and when should inheritance factor into the discussion, for example, and how
exactly do we represent the relationship between parents and children (after all,
some children will be adopted, some will be natural birth, some will be disowned)
and the relationship between various members who wish to engage in some form of marital
status (putting aside the political hot-button of same-sex marriage, we find that
some states respect “civil unions” even where no formal ceremony has taken place,
many cultures still recognize polygamy—one man, many wives—as Utah did up until the
mid-1800s, and a growing movement around polyamory—one or more men, one or more women—looks
like it may be the next political hot-button around marriage) definitely depends on
the business issues in question…
&lt;/p&gt;
&lt;p&gt;
… but that’s the whole point of encapsulation, right? That if the business needs change,
we can adapt as necessary to the changed requirements without having to go back and
rewrite everything.
&lt;/p&gt;
&lt;h4&gt;Genders
&lt;/h4&gt;
&lt;p&gt;
Consider, for example, the rather horrible decision to represent “gender” as a boolean:
while, yes, at birth, there are essentially two genders at the biological level, there
are some interesting birth defects/disorders/conditions in which a person’s gender
is, for lack of a better term, screwed up—men born with female plumbing and vice versa.
The system might need to track that. Or, there are those who consider themselves to
have been born into the wrong gender, and choose to live a lifestyle that is markedly
different from what societal norms suggest (the transgender crowd). Or, in some cases,
the gender may not have even been determined yet: fetuses don’t develop gender until
about halfway through the pregnancy.
&lt;/p&gt;
&lt;p&gt;
Which suggests, offhand, that the use of a boolean here is clearly a Bad Idea. But
what suggests as its replacement? Certainly we could maintain an internal state string
or something similar, using the get/set properties to verify that the strings being
set are correct and valid, but the .NET type system has a better answer: Given that
there is a finite number of choices to gender—whether that’s two or four or a dozen—it
seems that an enumeration is a good replacement:
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;enum Gender 
&lt;br /&gt;
{ 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Male, Female, 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Indeterminate, 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Transgender 
&lt;br /&gt;
}&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;class Person 
&lt;br /&gt;
{ 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string FirstName { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string LastName { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public int Age { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public Gender Gender { get; set; } 
&lt;br /&gt;
}&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
Don’t let the fact that the property and the type have the same name be too confusing—not
only does it compile cleanly, but it actually provides some clear description of what’s
being stored. (Although, I’ll admit, it’s confusing the first time you look at it.)
More importantly, there’s no additional code that needs to be written to enforce only
the four acceptable values—or, extend it as necessary when that becomes necessary.
&lt;/p&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;h4&gt;Ages
&lt;/h4&gt;
&lt;p&gt;
Similarly, the age of a person is not an integer value—people cannot be negative age,
nor do they usually age beyond a hundred or so. Again, we could put code around the
get/set blocks of the Age property to ensure the proper values, but it would again
be easier to let the type system do all the work:
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;struct Age 
&lt;br /&gt;
{ 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; int data; 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public Age(int d) 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; { 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Validate(d); 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; data = d; 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; }&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;&amp;#160;&amp;#160;&amp;#160; public static void Validate(int d) 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; { 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; if (d &amp;lt; 0) 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; throw new ArgumentException(&amp;quot;Age
cannot be negative&amp;quot;); 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; if (d &amp;gt; 120) 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; throw new ArgumentException(&amp;quot;Age
cannot be over 120&amp;quot;); 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; }&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;&amp;#160;&amp;#160;&amp;#160; // explicit int to Age conversion operator 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public static implicit operator Age(int a) 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; { return new Age(a); }&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;&amp;#160;&amp;#160;&amp;#160; // explicit Age to int conversion operator 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public static implicit operator int(Age a) 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; { return a.data; } 
&lt;br /&gt;
}&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;class Person 
&lt;br /&gt;
{ 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string FirstName { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string LastName { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public Age Age { get; set; } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public Gender Gender { get; set; } 
&lt;br /&gt;
}&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
Notice that we’re still having to write the same code, but now the code is embodied
in a type, which is itself intrinsically reusable—we can reuse the Age type in other
classes, which is more than we can say if that code lives in the Person.Age property
getter/setter. Again, too, now the Person class really has nothing to do in terms
of ensuring that age is maintained properly (and by that, I mean greater than zero
and less than 120). (The “implicit” in the conversion operators means that the code
doesn’t need to explicitly cast the int to an Age or vice versa.)
&lt;/p&gt;
&lt;p&gt;
Technically, what I’ve done with Age is create a restriction around the integer (System.Int32
in .NET terms) type; were this XSD Schema types, I could do a derivation-by-restriction
to restrict an xsd:int to the values I care about (0 – 120, inclusive). Unfortunately,
no O-O language I know of permits derivation-by-restriction, so it requires work to
create a type that “wraps” another, in this case, an Int32.
&lt;/p&gt;
&lt;h4&gt;
&lt;/h4&gt;
&lt;h4&gt;
&lt;/h4&gt;
&lt;h4&gt;Names
&lt;/h4&gt;
&lt;p&gt;
Names are another point of problem, in that there’s all kinds of crazy cases that
(as much as we’d like to pretend otherwise) turn out to be far more common than we’d
like—not only do most people have middle names, but sometimes women will take their
husband’s last name and hyphenate it with their own, making it sort of a middle name
but not really, or sometimes people will give their children to multiple middle names,
Japanese names put family names first, sometimes people choose to take a single name,
and so on. This is again a case where we can either choose to bake that logic into
property getters/setters, or bake it into a single type (a “Name” type) that has the
necessary code and properties to provide all the functionality that a person’s name
represents.
&lt;/p&gt;
&lt;p&gt;
So, without getting into the actual implementation, then, if we want to represent
names in the system, then we should have a full-fledged “Name” class that captures
the various permutations that arise:
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;class Name 
&lt;br /&gt;
{&amp;#160;&amp;#160; 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public Title Honorific { get { ... } } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string Individual { get { ... } } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string Nickname { get { ... } } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string Family { get { ... } } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public string Full { get { ... } } 
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public static Name Parse(string incoming) { ... }&amp;#160; 
&lt;br /&gt;
}&lt;/font&gt;&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
See, ultimately, everything will have to boil back to the core primitives within the
language, but we need to build stronger primitives for the system—Name, Title, Age,
and don’t even get me started on relationships.
&lt;/p&gt;
&lt;h4&gt;
&lt;/h4&gt;
&lt;h4&gt;
&lt;/h4&gt;
&lt;h4&gt;Relationships
&lt;/h4&gt;
&lt;p&gt;
Parent-child relationships are also a case where things are vastly more complicated
than just the one-to-many or one-to-one (or two-to-one) that direct object references
encourage; in the case of families, given how complex the modern American family can
get (and frankly, it’s not any easier if we go back and look at medieval families,
either—go have a look at any royal European genealogical line and think about how
you’d model that, particularly Henry VIII), it becomes pretty quickly apparent that
modeling the relationships themselves often presents itself as the only reasonable
solution.
&lt;/p&gt;
&lt;p&gt;
I won’t even begin to get into that example, by the way, simply because this blog
post is too long as it is. I might try it for a later blog post to explore the idea
further, but I think the point is made at this point.
&lt;/p&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;h3&gt;Summary
&lt;/h3&gt;
&lt;p&gt;
The object-oriented paradigm often finds itself wading in tens of thousands of types,
so it seems counterintuitive to suggest that we need more of them to make programs
more clear. I agree, many O-O programs are too type-heavy, but part of the problem
there is that we’re spending too much time creating classes that we shouldn’t need
to create (DTOs and the like) and not enough time thinking about the actual entities
in the system.
&lt;/p&gt;
&lt;p&gt;
I’ll be the first to admit, too, that not all systems will need to treat names the
way that I’ve done—sometimes an age is just an integer, and we’re OK with that. Truthfully,
though, it seems more often than not that we’re later adding the necessary code to
ensure that ages can never be negative, have to fall within a certain range, and so
on.
&lt;/p&gt;
&lt;p&gt;
As a suggestion, then, I throw out this idea: &lt;strong&gt;&lt;em&gt;Ensure that all of your
domain classes never expose primitive types to the user of the system.&lt;/em&gt;&lt;/strong&gt; In
other words, Name never exposes an “int” for Age, but only an “Age” type. C# makes
this easy via “using” declarations, like so:
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Consolas"&gt;using FirstName = System.String; 
&lt;br /&gt;
using LastName = System.String;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
which can then, if you’re thorough and disciplined about using the FirstName and LastName
types instead of “string”, evolve into fully-formed types later in their own right
if they need to. C++ provides “typedef” for this purpose—unfortunately, Java lacks
any such facility, making this a much harder prospect. (This is something I’d stick
at the top of my TODO list were I nominated to take Brian Goetz’s place at the head
of Java9 development.)
&lt;/p&gt;
&lt;p&gt;
In essence, encapsulate the primitive types away so that when they don’t need to be
primitives, or when they need to be more complex than just simple holders of data,
they don’t have to be, and clients will never know the difference. That, folks, is
what encapsulation is trying to be about.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=1a5622b2-d891-43ad-af4b-785ba018e862" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,1a5622b2-d891-43ad-af4b-785ba018e862.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>C#</category>
      <category>C++</category>
      <category>F#</category>
      <category>Industry</category>
      <category>Java/J2EE</category>
      <category>Languages</category>
      <category>LLVM</category>
      <category>Objective-C</category>
      <category>Parrot</category>
      <category>Python</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Visual Basic</category>
      <category>XML Services</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=0da7cc17-b113-465d-a8bb-3ab0ec47bfa1</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,0da7cc17-b113-465d-a8bb-3ab0ec47bfa1.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,0da7cc17-b113-465d-a8bb-3ab0ec47bfa1.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=0da7cc17-b113-465d-a8bb-3ab0ec47bfa1</wfw:commentRss>
      <slash:comments>5</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Oh, boy. Diving into this whole <a href="http://venturebeat.com/2013/03/20/playhaven-developer-fired-for-making-sexual-jokes-after-sendgrids-developer-evangelist-outs-him-on-twitter/" target="_blank">Adria
Richards/people-getting-fired thing</a> is probably a mistake, but it’s reached levels
at which I’m just too annoyed by everyone and everything in this to not say something.
You have one of three choices: read the summary below and conclude I’m a misogynist
without reading the rest; read the summary below and conclude I’m spot-on without
reading the rest; or read the rest and draw your own conclusions after hearing the
arguments.
</p>
        <p>
          <strong>TL;DR</strong> Adria Richards was right to be fired; the developer/s from
PlayHaven shouldn’t have been fired; the developer/s from PlayHaven could very well
be a pair of immature assholes; the rape and death threats against Adria Richards
undermine the positions of those who support the developer/s formerly from PlayHaven;
the content of the jokes don’t constitute sexism nor should conferences overreact
this way; half the Internet will label me a misogynist for these views; and none of
this ends well.
</p>
        <h3>The Facts, as I understand them
</h3>
        <p>
Three people are sitting in a keynote at a software conference. A presenter makes
a comment on stage that leads two people sitting in the audience to start making jokes
with all the emotional maturity of Beavis and Butthead. (Said developers are claiming
that any and all sexual innuendo was inferred by the third, but frankly, let’s assume
worst case here and assume they were, in fact, making cheap tawdry sex jokes out of
“dongle” and “forking”.) A third person, after listening to it for a while, turns
around, smiles, snaps a photo of the two of them, and Tweets them out as assholes.
Conference staff approach third person, ask her to identify the two perpetrators, <strike>escort
the developers out of the conference based on nothing but her word and (so far as
I can tell) zero supporting evidence</strike>. Firestorm erupts over the Internet,
and now all three (?) are jobless.
</p>
        <p>
(<strong>UPDATE:</strong> Roberto Guerra mentioned, in private email, that <a href="http://pycon.blogspot.com/2013/03/pycon-response-to-inappropriate.html" target="_blank">PyCon
has published their version of the events</a>, which does not mention the developers
being asked to leave; Roberto also tells me that the above link, which states that,
apparently got it wrong, and that the original source they used was mistaken. Apologies
to PyCon if this is the case.)
</p>
        <h3>
        </h3>
        <h3>My Interpretations
</h3>
        <p>
Note that with typical software developer hubris, I feel eminently qualified to comment
on all of this. (Which is my way of saying, take all of this with a grain of salt—I
have some experience with this, being on the “accused” end of sexual harassment, and
what I’m saying stems from my enforced “sit through the class” time from a decade
or more ago, but I’m no lawyer, and like everybody else, I’m at the mercy of the reports
since I wasn’t there.)
</p>
        <p>
          <strong>Developers who make “dongle” jokes and “forking” jokes are not only being
stupid, those jokes have already been made. So they’re stupid twice over.</strong> C’mon,
guys. New material. Seriously.
</p>
        <p>
          <strong>Making jokes in public that others might find offensive is taking a risk.</strong> Do
it on stage, you run the risk of earning the wrath of the crowd. (Of course, nobody
on <em>this</em> blog would, say, drop “the f-bomb” something like 23 times on stage
in a keynote, right?) Do it in a crowd, you run the risk of pissing somebody off around
you and looking/acting like douche. Might be in your best interests to keep your voice
down or just chuckle to yourself and have that conversation later.
</p>
        <p>
          <strong>Photos taken in public are considered public, if rude.</strong> If I walk
out into the street and start filming you, I have perfect right to do so, according
to US law: what happens in public is considered public domain. Paparazzi depend on
this for their “right” to follow and photograph moviestars, atheletes, and other “public”
figures. Adria was entirely within her rights to photograph those two and Tweet it.
But if I snap a pic of a cute girl and Tweet it with “Wow, want to guess whether her
code is hot too?”, it’s a douche move because I’m using her likeness without her permission.
If I do that for profit, now I’m actually open to lawsuit. So photos in public are
in still something of a grey area, legally. Basic rule of thumb: if you want to be
safe, ask before you put a photo of somebody else, taken in public or not, someplace
other than on your own private device.
</p>
        <p>
          <strong>Third parties who overhear conversations could arguably be violating privacy.</strong> There’s
a fine line here, but eavesdropping is rude. Now, I don’t know how loud they were
making the jokes—shouting it out across the room is a very different scenario than
whispering it to your seatmate and co-worker—but frankly, it’s usually pretty easy
to tell when a joke is meant for general distribution in a room like that, and when
it’s not. If it’s not meant for you, how about you just not hear it and concentrate
on something else? Chalk up the commentary as “idiots being idiots”, and if there’s
no implied threat to anybody going on, leave it be.
</p>
        <p>
          <strong>If you’re offended, you have an obligation to tell the parties in question
and give them a choice to make good.</strong> Imagine this scenario: a guy sits down
next to a girl on a bus. His leg brushes up against hers. She immediately stands up
and shouts out “THIS MAN IS MAKING UNWANTED SEXUAL ADVANCES AT ME!” at the top of
her lungs. Who’s the societally maladjusted person here? If, instead, she says, “Oh,
please don’t make physical contact with me”, and he says, “But that’s my right as
a human male”, and refuses to move his leg from pressing up against hers, then who’s
the societally maladjusted one? Slice this one as finely as you like, but if you’re
offended at something I do, it’s your responsibility to tell me so that I can make
it right, by apologizing and/or ceasing the behavior in question, or telling you that
I have Tourette’s, or by telling you you’re an uptight party-pooper, or however else
this story can play out. If the party in question continues the behavior, then you’ve
got grounds—moral and legal—to go to the authorities.
</p>
        <p>
          <strong>Just because you call it harassment doesn’t make it such.</strong> Legally,
from what I remember, harassment is defined as “repeated acts of unwanted sexual attention”;
in this case, I don’t see a history of repetition, nor do I see there being actual
“attention” to Adria in this case—this was a conversation being held between two individuals
that didn’t include her.
</p>
        <p>
          <strong>Just because it involves sex doesn’t make it sexist.</strong> Two guys were
making jokes about male genitalia. It may have been inappropriate, but honestly, unless
somebody widened the definition of sexism (“making disparaging comments about someone
based on their gender or sexual preferences”) when I wasn’t looking, this ain’t it.
And for Adria to claim sexism in public is bad when she Tweeted just a few days prior
about stuffing a sock down your shorts during a TSA patdown seems a little…. *shrug*
You pick the world.
</p>
        <p>
          <strong>The conference needs to follow basic due process.</strong> You know—innocent
until proven guilty, measured and proportional response, warnings, and so on. I don’t
care what it says on the conference’s website by way of disclaimer—you have to figure
out if what was said to happen actually happened before you respond to it. Nowhere
in the facts above do I hear the conference taking any steps to protect the accused—a
woman said a couple of guys said sexual things, so we must act quickly! This has “bad”
written all over it for the next five conferences.
</p>
        <p>
(<strong>UPDATE</strong>: Again, PyCon apparently didn’t escort the developer/s out
of the conference, but instead according to their site, “Both parties were met with,
in private. The comments that were made were in poor taste, and individuals involved
agreed, apologized and no further actions were taken by the staff of PyCon 2013. No
individuals were removed from the conference, no sanctions were levied.” It sounds
like, contrary to what I first heard, PyCon handled it in a classy manner, so I apologize
for perpetrating the image that they didn’t. Having said that, though, I find it curious
that this storm blew up this way—did no one think to push those apologies to Twitter
so everyone else knew that things had blown over, or did they in fact do that and
we’re all too busy gawking and screaming “fight! fight! fight” on the playground to
notice?)
</p>
        <p>
          <strong>The material shouldn’t matter.</strong> I know we’re all being all sexually
politically correct these days about women in IT, but this is a Pandora’s Box of a
precedent that will eventually get way out of hand, if it isn’t already (and I think
it is). Imagine how this story goes for the conference if a man Tweets out a picture
of a woman and says, “This woman was talking to another woman and insulted my religion,
and the conversation made me uncomfortable.” Is the conference now on the hook to
escort those two women out of the building? How about programming language choice?
How about race? How about sports teams? Where do we draw this line?
</p>
        <p>
          <strong>Adria was right to be fired.</strong> It’s harsh, but as any celebrity endorsement
negotiator will tell you, when you represent a brand, you represent the brand even
when the cameras aren’t rolling. (Just ask Tiger Woods about this.) Her actions brought
a ton of unwanted negative attention (and a DDOS attack, apparently) to the company;
that’s in direct contrast to the reasons they were paying her, and seeing as how her
actions were something she did (as opposed to had done to her), her termination is
entirely justified. You might see it as a bit harsh, but the company is well within
boundaries here.
</p>
        <p>
          <strong>The PlayHaven developers weren’t right to be fired.</strong> Again, nowhere
do we see them getting the opportunity to confront their accuser, or make restitution
(apology). Now, you can argue that they, too, were representing their firm, but unless
their job is to act as an evangelist and brand recognition activities are part of
their job description, you can’t terminate them for gross negligence in this. Of course,
most employment is “at-will”, meaning a company can fire you for any reason it likes,
but this is sort of akin to getting fired for getting drunk and making lewd comments
to the wait staff at Denny’s while wearing a company T-shirt.
</p>
        <p>
          <strong>Sexism in IT is bad.</strong> Duh. I don’t think I’ve met anyone who said
otherwise. But this wasn’t sexism. Inappropriate, perhaps, but not sexism. By the
way, racism in IT is bad, and so is age-ism, role-ism (discounting somebody’s opinions
just because they’re in Marketing or Sales), and technacism (discounting a technology
based on no factual knowledge).
</p>
        <p>
          <strong>It’s politically correct to jump to attention when “women in IT” come up.</strong> This
subject is gathering a lot of momentum, and most of it I think is of the bad variety.
Hate speech should not be tolerated—the rape and death threats against Adria cannot,
should not, and are not acceptable in any way shape or form. Nor should similar kinds
of direct comments against gays, lesbians, transsexuals, blacks, Asians, Jews, or
any of the other “other” groups out there. But there is a far cry between this and
the discrimination and hate speech that people go through: I have a friend who is
lesbian and a school teacher, and she is receiving death threats for teaching at that
school. She has dogs at the house, shotgun loaded, and she is waiting for the Mormons
and news reporters to vacate her lawn so she can try to resume some kind of normal
life. Putting up with a few lewd jokes in a crowd at a conference, I would guess,
sounds pretty heavenly to her right now. 
</p>
        <p>
I think we have time for a patronizing plea, by the way: Ladies, I know you’ve had
something of a rough time in the IT industry, but it’s pretty obvious that it’s getting
better, and frankly, you run a big risk of ostracizing yourself and making it harder
if every time a woman doesn’t get selected for something (a conference speaking slot,
a tech lead role, or a particular job) the whole “women in IT” banner gets unfurled
and raised. Don’t get me wrong—I don’t think there’s many of you that are doing that.
There are some, though, who do claim special privilege just for being female, and
there’s enough of a correlation between these two things that I think before too long
it’s going to lose its impact and the real good that could be done will be lost. Don’t
demand that you get special privilege—earn it. Believe me, there’s plenty of opportunities
for you to do so, so if you get blocked on something, look for a way around it. Demand
equality, not artificially-imposed advantage. 
</p>
        <p>
(As trends go, quite honestly, given the declining rates of men graduating college
and actually making a life for themselves, before too long the shoe will be on the
other foot anyway, just give it time.)
</p>
        <p>
          <strong>There is no happy ending here.</strong> Nobody can fix this; three lives have
been forever affected, negatively, by all of this. The ones I feel truly sorry for?
SendGrid and PlayHaven—they had nothing to do with it, and now their names are going
to be associated with this whole crappy mess.
</p>
        <p>
Call me a misogynist for not whole-heartedly backing the woman in this case, if you
will, but frankly, it was a disaster from the moment she chose to snap the photo and
Tweet to the world instead of saying, “Excuse me, can you not make those jokes here?
I don’t think they’re particularly appropriate.” I could theorize why she chose the
one route over the other, but that’s an essay for another day.
</p>
        <p>
Let the flaming begin.
</p>
        <p>
          <b>UPDATE</b>: This post <a href="http://amandablumwords.wordpress.com/2013/03/21/3/">puts
more context</a> around Adria, and I think is the best-written commentary I've seen
on this so far, particularly since it's a woman's point of view on the whole thing
(assuming, of course, that "Amanda" is in this case applied to a human of
the female persuasion).
</p>
        <img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=0da7cc17-b113-465d-a8bb-3ab0ec47bfa1" />
        <br />
        <hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>On Sexism, Harassment, and Termination</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,0da7cc17-b113-465d-a8bb-3ab0ec47bfa1.aspx</guid>
      <link>http://blogs.tedneward.com/2013/03/21/On+Sexism+Harassment+And+Termination.aspx</link>
      <pubDate>Thu, 21 Mar 2013 23:09:20 GMT</pubDate>
      <description>&lt;p&gt;
Oh, boy. Diving into this whole &lt;a href="http://venturebeat.com/2013/03/20/playhaven-developer-fired-for-making-sexual-jokes-after-sendgrids-developer-evangelist-outs-him-on-twitter/" target="_blank"&gt;Adria
Richards/people-getting-fired thing&lt;/a&gt; is probably a mistake, but it’s reached levels
at which I’m just too annoyed by everyone and everything in this to not say something.
You have one of three choices: read the summary below and conclude I’m a misogynist
without reading the rest; read the summary below and conclude I’m spot-on without
reading the rest; or read the rest and draw your own conclusions after hearing the
arguments.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;TL;DR&lt;/strong&gt; Adria Richards was right to be fired; the developer/s from
PlayHaven shouldn’t have been fired; the developer/s from PlayHaven could very well
be a pair of immature assholes; the rape and death threats against Adria Richards
undermine the positions of those who support the developer/s formerly from PlayHaven;
the content of the jokes don’t constitute sexism nor should conferences overreact
this way; half the Internet will label me a misogynist for these views; and none of
this ends well.
&lt;/p&gt;
&lt;h3&gt;The Facts, as I understand them
&lt;/h3&gt;
&lt;p&gt;
Three people are sitting in a keynote at a software conference. A presenter makes
a comment on stage that leads two people sitting in the audience to start making jokes
with all the emotional maturity of Beavis and Butthead. (Said developers are claiming
that any and all sexual innuendo was inferred by the third, but frankly, let’s assume
worst case here and assume they were, in fact, making cheap tawdry sex jokes out of
“dongle” and “forking”.) A third person, after listening to it for a while, turns
around, smiles, snaps a photo of the two of them, and Tweets them out as assholes.
Conference staff approach third person, ask her to identify the two perpetrators, &lt;strike&gt;escort
the developers out of the conference based on nothing but her word and (so far as
I can tell) zero supporting evidence&lt;/strike&gt;. Firestorm erupts over the Internet,
and now all three (?) are jobless.
&lt;/p&gt;
&lt;p&gt;
(&lt;strong&gt;UPDATE:&lt;/strong&gt; Roberto Guerra mentioned, in private email, that &lt;a href="http://pycon.blogspot.com/2013/03/pycon-response-to-inappropriate.html" target="_blank"&gt;PyCon
has published their version of the events&lt;/a&gt;, which does not mention the developers
being asked to leave; Roberto also tells me that the above link, which states that,
apparently got it wrong, and that the original source they used was mistaken. Apologies
to PyCon if this is the case.)
&lt;/p&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;h3&gt;My Interpretations
&lt;/h3&gt;
&lt;p&gt;
Note that with typical software developer hubris, I feel eminently qualified to comment
on all of this. (Which is my way of saying, take all of this with a grain of salt—I
have some experience with this, being on the “accused” end of sexual harassment, and
what I’m saying stems from my enforced “sit through the class” time from a decade
or more ago, but I’m no lawyer, and like everybody else, I’m at the mercy of the reports
since I wasn’t there.)
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Developers who make “dongle” jokes and “forking” jokes are not only being
stupid, those jokes have already been made. So they’re stupid twice over.&lt;/strong&gt; C’mon,
guys. New material. Seriously.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Making jokes in public that others might find offensive is taking a risk.&lt;/strong&gt; Do
it on stage, you run the risk of earning the wrath of the crowd. (Of course, nobody
on &lt;em&gt;this&lt;/em&gt; blog would, say, drop “the f-bomb” something like 23 times on stage
in a keynote, right?) Do it in a crowd, you run the risk of pissing somebody off around
you and looking/acting like douche. Might be in your best interests to keep your voice
down or just chuckle to yourself and have that conversation later.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Photos taken in public are considered public, if rude.&lt;/strong&gt; If I walk
out into the street and start filming you, I have perfect right to do so, according
to US law: what happens in public is considered public domain. Paparazzi depend on
this for their “right” to follow and photograph moviestars, atheletes, and other “public”
figures. Adria was entirely within her rights to photograph those two and Tweet it.
But if I snap a pic of a cute girl and Tweet it with “Wow, want to guess whether her
code is hot too?”, it’s a douche move because I’m using her likeness without her permission.
If I do that for profit, now I’m actually open to lawsuit. So photos in public are
in still something of a grey area, legally. Basic rule of thumb: if you want to be
safe, ask before you put a photo of somebody else, taken in public or not, someplace
other than on your own private device.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Third parties who overhear conversations could arguably be violating privacy.&lt;/strong&gt; There’s
a fine line here, but eavesdropping is rude. Now, I don’t know how loud they were
making the jokes—shouting it out across the room is a very different scenario than
whispering it to your seatmate and co-worker—but frankly, it’s usually pretty easy
to tell when a joke is meant for general distribution in a room like that, and when
it’s not. If it’s not meant for you, how about you just not hear it and concentrate
on something else? Chalk up the commentary as “idiots being idiots”, and if there’s
no implied threat to anybody going on, leave it be.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;If you’re offended, you have an obligation to tell the parties in question
and give them a choice to make good.&lt;/strong&gt; Imagine this scenario: a guy sits down
next to a girl on a bus. His leg brushes up against hers. She immediately stands up
and shouts out “THIS MAN IS MAKING UNWANTED SEXUAL ADVANCES AT ME!” at the top of
her lungs. Who’s the societally maladjusted person here? If, instead, she says, “Oh,
please don’t make physical contact with me”, and he says, “But that’s my right as
a human male”, and refuses to move his leg from pressing up against hers, then who’s
the societally maladjusted one? Slice this one as finely as you like, but if you’re
offended at something I do, it’s your responsibility to tell me so that I can make
it right, by apologizing and/or ceasing the behavior in question, or telling you that
I have Tourette’s, or by telling you you’re an uptight party-pooper, or however else
this story can play out. If the party in question continues the behavior, then you’ve
got grounds—moral and legal—to go to the authorities.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Just because you call it harassment doesn’t make it such.&lt;/strong&gt; Legally,
from what I remember, harassment is defined as “repeated acts of unwanted sexual attention”;
in this case, I don’t see a history of repetition, nor do I see there being actual
“attention” to Adria in this case—this was a conversation being held between two individuals
that didn’t include her.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Just because it involves sex doesn’t make it sexist.&lt;/strong&gt; Two guys were
making jokes about male genitalia. It may have been inappropriate, but honestly, unless
somebody widened the definition of sexism (“making disparaging comments about someone
based on their gender or sexual preferences”) when I wasn’t looking, this ain’t it.
And for Adria to claim sexism in public is bad when she Tweeted just a few days prior
about stuffing a sock down your shorts during a TSA patdown seems a little…. *shrug*
You pick the world.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;The conference needs to follow basic due process.&lt;/strong&gt; You know—innocent
until proven guilty, measured and proportional response, warnings, and so on. I don’t
care what it says on the conference’s website by way of disclaimer—you have to figure
out if what was said to happen actually happened before you respond to it. Nowhere
in the facts above do I hear the conference taking any steps to protect the accused—a
woman said a couple of guys said sexual things, so we must act quickly! This has “bad”
written all over it for the next five conferences.
&lt;/p&gt;
&lt;p&gt;
(&lt;strong&gt;UPDATE&lt;/strong&gt;: Again, PyCon apparently didn’t escort the developer/s out
of the conference, but instead according to their site, “Both parties were met with,
in private. The comments that were made were in poor taste, and individuals involved
agreed, apologized and no further actions were taken by the staff of PyCon 2013. No
individuals were removed from the conference, no sanctions were levied.” It sounds
like, contrary to what I first heard, PyCon handled it in a classy manner, so I apologize
for perpetrating the image that they didn’t. Having said that, though, I find it curious
that this storm blew up this way—did no one think to push those apologies to Twitter
so everyone else knew that things had blown over, or did they in fact do that and
we’re all too busy gawking and screaming “fight! fight! fight” on the playground to
notice?)
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;The material shouldn’t matter.&lt;/strong&gt; I know we’re all being all sexually
politically correct these days about women in IT, but this is a Pandora’s Box of a
precedent that will eventually get way out of hand, if it isn’t already (and I think
it is). Imagine how this story goes for the conference if a man Tweets out a picture
of a woman and says, “This woman was talking to another woman and insulted my religion,
and the conversation made me uncomfortable.” Is the conference now on the hook to
escort those two women out of the building? How about programming language choice?
How about race? How about sports teams? Where do we draw this line?
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Adria was right to be fired.&lt;/strong&gt; It’s harsh, but as any celebrity endorsement
negotiator will tell you, when you represent a brand, you represent the brand even
when the cameras aren’t rolling. (Just ask Tiger Woods about this.) Her actions brought
a ton of unwanted negative attention (and a DDOS attack, apparently) to the company;
that’s in direct contrast to the reasons they were paying her, and seeing as how her
actions were something she did (as opposed to had done to her), her termination is
entirely justified. You might see it as a bit harsh, but the company is well within
boundaries here.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;The PlayHaven developers weren’t right to be fired.&lt;/strong&gt; Again, nowhere
do we see them getting the opportunity to confront their accuser, or make restitution
(apology). Now, you can argue that they, too, were representing their firm, but unless
their job is to act as an evangelist and brand recognition activities are part of
their job description, you can’t terminate them for gross negligence in this. Of course,
most employment is “at-will”, meaning a company can fire you for any reason it likes,
but this is sort of akin to getting fired for getting drunk and making lewd comments
to the wait staff at Denny’s while wearing a company T-shirt.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Sexism in IT is bad.&lt;/strong&gt; Duh. I don’t think I’ve met anyone who said
otherwise. But this wasn’t sexism. Inappropriate, perhaps, but not sexism. By the
way, racism in IT is bad, and so is age-ism, role-ism (discounting somebody’s opinions
just because they’re in Marketing or Sales), and technacism (discounting a technology
based on no factual knowledge).
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;It’s politically correct to jump to attention when “women in IT” come up.&lt;/strong&gt; This
subject is gathering a lot of momentum, and most of it I think is of the bad variety.
Hate speech should not be tolerated—the rape and death threats against Adria cannot,
should not, and are not acceptable in any way shape or form. Nor should similar kinds
of direct comments against gays, lesbians, transsexuals, blacks, Asians, Jews, or
any of the other “other” groups out there. But there is a far cry between this and
the discrimination and hate speech that people go through: I have a friend who is
lesbian and a school teacher, and she is receiving death threats for teaching at that
school. She has dogs at the house, shotgun loaded, and she is waiting for the Mormons
and news reporters to vacate her lawn so she can try to resume some kind of normal
life. Putting up with a few lewd jokes in a crowd at a conference, I would guess,
sounds pretty heavenly to her right now. 
&lt;/p&gt;
&lt;p&gt;
I think we have time for a patronizing plea, by the way: Ladies, I know you’ve had
something of a rough time in the IT industry, but it’s pretty obvious that it’s getting
better, and frankly, you run a big risk of ostracizing yourself and making it harder
if every time a woman doesn’t get selected for something (a conference speaking slot,
a tech lead role, or a particular job) the whole “women in IT” banner gets unfurled
and raised. Don’t get me wrong—I don’t think there’s many of you that are doing that.
There are some, though, who do claim special privilege just for being female, and
there’s enough of a correlation between these two things that I think before too long
it’s going to lose its impact and the real good that could be done will be lost. Don’t
demand that you get special privilege—earn it. Believe me, there’s plenty of opportunities
for you to do so, so if you get blocked on something, look for a way around it. Demand
equality, not artificially-imposed advantage. 
&lt;/p&gt;
&lt;p&gt;
(As trends go, quite honestly, given the declining rates of men graduating college
and actually making a life for themselves, before too long the shoe will be on the
other foot anyway, just give it time.)
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;There is no happy ending here.&lt;/strong&gt; Nobody can fix this; three lives have
been forever affected, negatively, by all of this. The ones I feel truly sorry for?
SendGrid and PlayHaven—they had nothing to do with it, and now their names are going
to be associated with this whole crappy mess.
&lt;/p&gt;
&lt;p&gt;
Call me a misogynist for not whole-heartedly backing the woman in this case, if you
will, but frankly, it was a disaster from the moment she chose to snap the photo and
Tweet to the world instead of saying, “Excuse me, can you not make those jokes here?
I don’t think they’re particularly appropriate.” I could theorize why she chose the
one route over the other, but that’s an essay for another day.
&lt;/p&gt;
&lt;p&gt;
Let the flaming begin.
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;UPDATE&lt;/b&gt;: This post &lt;a href="http://amandablumwords.wordpress.com/2013/03/21/3/"&gt;puts
more context&lt;/a&gt; around Adria, and I think is the best-written commentary I've seen
on this so far, particularly since it's a woman's point of view on the whole thing
(assuming, of course, that &amp;quot;Amanda&amp;quot; is in this case applied to a human of
the female persuasion).
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=0da7cc17-b113-465d-a8bb-3ab0ec47bfa1" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,0da7cc17-b113-465d-a8bb-3ab0ec47bfa1.aspx</comments>
      <category>Conferences</category>
      <category>Industry</category>
      <category>Personal</category>
      <category>Python</category>
      <category>Reading</category>
      <category>Social</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=efc92ce3-60c6-4512-ac78-b6962235f435</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,efc92ce3-60c6-4512-ac78-b6962235f435.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,efc92ce3-60c6-4512-ac78-b6962235f435.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=efc92ce3-60c6-4512-ac78-b6962235f435</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
As is pretty typical for that site, Lambda the Ultimate has <a href="http://lambda-the-ultimate.org/node/4698">a
great discussion</a> on some insights that the creators of Mozart and Oz have come
to, regarding the design of programming languages; I repeat the post here for convenience: 
</p>
        <blockquote> Now that we are close to releasing Mozart 2 (a complete redesign
of the Mozart system), I have been thinking about how best to summarize the lessons
we learned about programming paradigms in CTM. Here are five "laws" that summarize
these lessons: 
<ol><li>
A well-designed program uses the right concepts, and the paradigm follows from the
concepts that are used. [Paradigms are epiphenomena]</li><li>
A paradigm with more concepts than another is not better or worse, just different.
[Paradigm paradox]</li><li>
Each problem has a best paradigm in which to program it; a paradigm with less concepts
makes the program more complicated and a paradigm with more concepts makes reasoning
more complicated. [Best paradigm principle]</li><li>
If a program is complicated for reasons unrelated to the problem being solved, then
a new concept should be added to the paradigm. [Creative extension principle]</li><li>
A program's interface should depend only on its externally visible functionality,
not on the paradigm used to implement it. [Model independence principle]</li></ol>
Here a "paradigm" is defined as a formal system that defines how computations are
done and that leads to a set of techniques for programming and reasoning about programs.
Some commonly used paradigms are called functional programming, object-oriented programming,
and logic programming. The term "best paradigm" can have different meanings depending
on the ultimate goal of the programming project; it usually refers to a paradigm that
maximizes some combination of good properties such as clarity, provability, maintainability,
efficiency, and extensibility. I am curious to see what the LtU community thinks of
these laws and their formulation. </blockquote> This just so neatly calls out to me,
based on my own very brief and very informal investigation into multi-paradigm programming
(based on James Coplien's work from C++ from a decade-plus ago). I think they really
have something interesting here. 
<img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=efc92ce3-60c6-4512-ac78-b6962235f435" /><br /><hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>Programming language "laws"</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,efc92ce3-60c6-4512-ac78-b6962235f435.aspx</guid>
      <link>http://blogs.tedneward.com/2013/03/20/Programming+Language+Laws.aspx</link>
      <pubDate>Wed, 20 Mar 2013 01:32:43 GMT</pubDate>
      <description>&lt;p&gt;
As is pretty typical for that site, Lambda the Ultimate has &lt;a href="http://lambda-the-ultimate.org/node/4698"&gt;a
great discussion&lt;/a&gt; on some insights that the creators of Mozart and Oz have come
to, regarding the design of programming languages; I repeat the post here for convenience: &lt;blockquote&gt; Now
that we are close to releasing Mozart 2 (a complete redesign of the Mozart system),
I have been thinking about how best to summarize the lessons we learned about programming
paradigms in CTM. Here are five "laws" that summarize these lessons: 
&lt;ol&gt;
&lt;li&gt;
A well-designed program uses the right concepts, and the paradigm follows from the
concepts that are used. [Paradigms are epiphenomena]&lt;/li&gt;
&lt;li&gt;
A paradigm with more concepts than another is not better or worse, just different.
[Paradigm paradox]&lt;/li&gt;
&lt;li&gt;
Each problem has a best paradigm in which to program it; a paradigm with less concepts
makes the program more complicated and a paradigm with more concepts makes reasoning
more complicated. [Best paradigm principle]&lt;/li&gt;
&lt;li&gt;
If a program is complicated for reasons unrelated to the problem being solved, then
a new concept should be added to the paradigm. [Creative extension principle]&lt;/li&gt;
&lt;li&gt;
A program's interface should depend only on its externally visible functionality,
not on the paradigm used to implement it. [Model independence principle]&lt;/li&gt;
&lt;/ol&gt;
Here a "paradigm" is defined as a formal system that defines how computations are
done and that leads to a set of techniques for programming and reasoning about programs.
Some commonly used paradigms are called functional programming, object-oriented programming,
and logic programming. The term "best paradigm" can have different meanings depending
on the ultimate goal of the programming project; it usually refers to a paradigm that
maximizes some combination of good properties such as clarity, provability, maintainability,
efficiency, and extensibility. I am curious to see what the LtU community thinks of
these laws and their formulation. &lt;/blockquote&gt; This just so neatly calls out to me,
based on my own very brief and very informal investigation into multi-paradigm programming
(based on James Coplien's work from C++ from a decade-plus ago). I think they really
have something interesting here. &gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=efc92ce3-60c6-4512-ac78-b6962235f435" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,efc92ce3-60c6-4512-ac78-b6962235f435.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>C#</category>
      <category>C++</category>
      <category>Conferences</category>
      <category>Development Processes</category>
      <category>F#</category>
      <category>Industry</category>
      <category>Java/J2EE</category>
      <category>Languages</category>
      <category>LLVM</category>
      <category>Objective-C</category>
      <category>Parrot</category>
      <category>Personal</category>
      <category>Python</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Visual Basic</category>
      <category>WCF</category>
      <category>Windows</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=d45aa93c-e207-4523-aca2-1f4331fc068b</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,d45aa93c-e207-4523-aca2-1f4331fc068b.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,d45aa93c-e207-4523-aca2-1f4331fc068b.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=d45aa93c-e207-4523-aca2-1f4331fc068b</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
There are times when the industry in which I find myself does things that I just don't
understand.
</p>
        <p>
Consider, for a moment, <a href="http://jeffhandley.com/archive/2013/02/25/The-We-accept-pull-requests-Addiction.aspx">this
blog</a> by Jeff Handley, in which he essentially says that the phrase "We accept
pull requests" is "cringe-inducing": 
</p>
        <blockquote> Why do the words “we accept pull requests” have such a stigma? Why
were they cringe-inducing when I spoke them? Because too many OSS projects use these
words as an easy way to shut people up. We (the collective of OSS project owners)
can too easily jump to this phrase when we don’t want to do something ourselves. If
we don’t see the value in a feature, but the requester persists, we can simply utter,
“We accept pull requests,” and drop it until the end of days or when a pull request
is submitted, whichever comes first. The phrase now basically means, “Buzz off!” </blockquote> OK,
I admit that I'm somewhat removed from the OSS community--I don't have any particular
dogs in that race, as the old saying goes--and the idea that "We accept pull requests"
is a "Buzz off!" phrase is news to me. But I understand what Jeff is saying: a phrase
has taken on a meaning of its own, and as is often the case, it's a meaning that's
contrary to its stated one: <blockquote> At Microsoft, having open source projects
that actually accept pull requests is a fairly new concept. I work on NuGet, which
is an Outercurve project that accepts contributions from Microsoft and many others.
I was the dev lead for Razor and Web Pages at the time it went open source through
Microsoft Open Tech. I collaborate with teams that work on EntityFramework, SignalR,
MVC, and several other open source projects. I spend virtually all my time thinking
about projects that are open source. Just a few years ago, this was unimaginable at
Microsoft. Sometimes I feel like it still hasn’t sunk in how awesome it is that we
have gotten to where we are, and I think I’ve been trigger happy and I’ve said “We
accept pull requests” too often I typically use the phrase in jest, but I admit that
I have said it when I was really thinking “Buzz off!” </blockquote> Honestly, I've
heard the same kind of thing from the mouths of Microsoft developers during Software
Development Reviews (SDRs), in the form of the phrase "Thank you for your feedback"--it's
usually at the end of a fervent discussion when one of the reviewers is commenting
on a feature being done (or not being done) and the team is in some kind of disagreement
about the feature's relative importance or the implementation used. It's usually uttered
in a manner that gives the crowd a very clear intent: "You can stop talking now, because
I've stopped listening." <blockquote> The weekend after the MVP summit, I was still
regretting having said what I said. I wished all week I could take the words back.
And then I saw someone else fall victim. On a highly controversial NuGet issue, the
infamous Phil Haack used a similar phrase as part of a response stating that the core
team probably wouldn’t be taking action on the proposed changes, but that there was
nothing stopping those affected from issuing a pull request. With my mistake still
fresh in my mind, I read Phil’s words just as I’m sure everyone in the room at the
MVP summit heard my own. It sounded flippant and it had the opposite effect from what
Phil intended or what I would want people thinking of the NuGet core team. From there,
the thread started turning nasty. We were stuck arguing opinions and we were no longer
discussing the actual issue and how it could be solved. </blockquote> As Jeff goes
on to mention, I got involved in that Twitter conversation, along with a number of
others, and as he says, the conversation moved on to JabbR, but without me--I bailed
on it for a couple of reasons. Phil proposed a resolution to the problem, though,
that seemed to satisfy at least a few folks: <blockquote> With that many mentions
on the tweets, we ran out of characters and eventually moved into JabbR. By the end
of the conversation, we all agreed that the words “we accept pull requests” should
never be used again. Phil proposed a great phrase to use instead: “Want to take a
crack at it? We’ll help.” </blockquote> But frankly, I don't care for this phraseology.
Yes, I understand the intent--the owners of open-source projects shouldn't brush off
people's suggestions about things to do with the project in the future and shouldn't
reach for a handy phrase that will essentially serve the purpose of saying "Buzz off".
And keeping an open ear to your community is a good thing, yes.
<p>
What I don't like about the new phrase is twofold. First, if people use the phrase
casually enough, eventually it too will be overused and interpreted to mean "Buzz
off!", just as "Thank you for your feedback" became. But secondly, where in the world
did it somehow become a law that open source projects MUST implement every feature
that their users suggest? This is part of the strange economics of open source--in
a commercial product, if the developers stray too far away from what customers need
or want, declining sales will serve as a corrective force to bring them back around
(or, if they don't, bankruptcy of either the product or the company will eventually
follow). But in an open-source project, there's no real visible marker to serve as
that accountability and feedback--and so the project owners, those who want to try
and stay in tune with their users anyway, feel a deeper responsibility to respond
to user requests. And on its own, that's a good thing.
</p><p>
The part that bothers me, though, is that this new phraseology essentially implies
that any open-source project has a responsibility to implement the features that its
users ask for, and frankly, that's not sustainable. Open-source projects are, for
the most part, maintained by volunteers, but even those that are backed by commercial
firms (like Microsoft or GitHub) have finite resources--they simply cannot commit
resources, even just "help", to every feature request that any user makes of them.
This is why the "We accept pull requests" was always, to my mind, an acceptable response:
loosely translated, to me at least, it meant, "Look, that's an interesting idea, but
it either isn't on our immediate roadmap, or it takes the project in a different direction
than we'd intended, or we're not even entirely sure that it's feasible or doable or
easily managed or what-have-you. Why don't you take a stab at implementing it in your
own fork of the code, and if you can get it to some point of implementation that you
can show us, send us a copy of the code in the form of a pull request so we can take
a look and see if it fits with how we see the project going." This is not an unreasonable
response: if you care passionately about this feature, either because you think it
should be there or because your company needs that feature to get its work done, then
you have the time, energy and motivation to at least take a first pass at it and prove
the concept (or, sometimes, prove to yourself that it's not such an easy request as
you thought). Cultivating a sense of entitlement in your users is not a good practice--it's
a step towards a completely unsustainable model that could, if not curbed, eventually
lead to the death of the project as the maintainers essentially give up when faced
with feature request after feature request.
</p><p>
I applaud the efforts on the part of project maintainers, particularly those at large
commercial corporations involved in open source, to avoid "Buzz off" phrases. But
it's not OK for project maintainers to feel like they are under a responsibility to
implement any particular feature or idea suggested by a user. Some ideas are going
to be good ones, some are going to be just "off the radar" of the project's core committers,
and some are going to be just plain bad. You think your idea is one of those? Take
a stab at it. Write the code. And if you've got it to a point where it seems to be
working, then submit a pull request.
</p><p>
But please, let's not blow this out of proportion. Users need to cut the people who
give them software for free some slack.
</p><p>
(<b>EDIT:</b> I accidentally referred to Jeff as "Anthony" in one place and "Andrew"
in another. Not really sure how or why, but... Edited.)
</p><img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=d45aa93c-e207-4523-aca2-1f4331fc068b" /><br /><hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>"We Accept Pull Requests"</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,d45aa93c-e207-4523-aca2-1f4331fc068b.aspx</guid>
      <link>http://blogs.tedneward.com/2013/02/26/We+Accept+Pull+Requests.aspx</link>
      <pubDate>Tue, 26 Feb 2013 09:52:45 GMT</pubDate>
      <description>&lt;p&gt;
There are times when the industry in which I find myself does things that I just don't
understand.
&lt;/p&gt;
&lt;p&gt;
Consider, for a moment, &lt;a href="http://jeffhandley.com/archive/2013/02/25/The-We-accept-pull-requests-Addiction.aspx"&gt;this
blog&lt;/a&gt; by Jeff Handley, in which he essentially says that the phrase "We accept
pull requests" is "cringe-inducing": &lt;blockquote&gt; Why do the words “we accept pull
requests” have such a stigma? Why were they cringe-inducing when I spoke them? Because
too many OSS projects use these words as an easy way to shut people up. We (the collective
of OSS project owners) can too easily jump to this phrase when we don’t want to do
something ourselves. If we don’t see the value in a feature, but the requester persists,
we can simply utter, “We accept pull requests,” and drop it until the end of days
or when a pull request is submitted, whichever comes first. The phrase now basically
means, “Buzz off!” &lt;/blockquote&gt; OK, I admit that I'm somewhat removed from the OSS
community--I don't have any particular dogs in that race, as the old saying goes--and
the idea that "We accept pull requests" is a "Buzz off!" phrase is news to me. But
I understand what Jeff is saying: a phrase has taken on a meaning of its own, and
as is often the case, it's a meaning that's contrary to its stated one: &lt;blockquote&gt; At
Microsoft, having open source projects that actually accept pull requests is a fairly
new concept. I work on NuGet, which is an Outercurve project that accepts contributions
from Microsoft and many others. I was the dev lead for Razor and Web Pages at the
time it went open source through Microsoft Open Tech. I collaborate with teams that
work on EntityFramework, SignalR, MVC, and several other open source projects. I spend
virtually all my time thinking about projects that are open source. Just a few years
ago, this was unimaginable at Microsoft. Sometimes I feel like it still hasn’t sunk
in how awesome it is that we have gotten to where we are, and I think I’ve been trigger
happy and I’ve said “We accept pull requests” too often I typically use the phrase
in jest, but I admit that I have said it when I was really thinking “Buzz off!” &lt;/blockquote&gt; Honestly,
I've heard the same kind of thing from the mouths of Microsoft developers during Software
Development Reviews (SDRs), in the form of the phrase "Thank you for your feedback"--it's
usually at the end of a fervent discussion when one of the reviewers is commenting
on a feature being done (or not being done) and the team is in some kind of disagreement
about the feature's relative importance or the implementation used. It's usually uttered
in a manner that gives the crowd a very clear intent: "You can stop talking now, because
I've stopped listening." &lt;blockquote&gt; The weekend after the MVP summit, I was still
regretting having said what I said. I wished all week I could take the words back.
And then I saw someone else fall victim. On a highly controversial NuGet issue, the
infamous Phil Haack used a similar phrase as part of a response stating that the core
team probably wouldn’t be taking action on the proposed changes, but that there was
nothing stopping those affected from issuing a pull request. With my mistake still
fresh in my mind, I read Phil’s words just as I’m sure everyone in the room at the
MVP summit heard my own. It sounded flippant and it had the opposite effect from what
Phil intended or what I would want people thinking of the NuGet core team. From there,
the thread started turning nasty. We were stuck arguing opinions and we were no longer
discussing the actual issue and how it could be solved. &lt;/blockquote&gt; As Jeff goes
on to mention, I got involved in that Twitter conversation, along with a number of
others, and as he says, the conversation moved on to JabbR, but without me--I bailed
on it for a couple of reasons. Phil proposed a resolution to the problem, though,
that seemed to satisfy at least a few folks: &lt;blockquote&gt; With that many mentions
on the tweets, we ran out of characters and eventually moved into JabbR. By the end
of the conversation, we all agreed that the words “we accept pull requests” should
never be used again. Phil proposed a great phrase to use instead: “Want to take a
crack at it? We’ll help.” &lt;/blockquote&gt; But frankly, I don't care for this phraseology.
Yes, I understand the intent--the owners of open-source projects shouldn't brush off
people's suggestions about things to do with the project in the future and shouldn't
reach for a handy phrase that will essentially serve the purpose of saying "Buzz off".
And keeping an open ear to your community is a good thing, yes.&gt;
&lt;p&gt;
What I don't like about the new phrase is twofold. First, if people use the phrase
casually enough, eventually it too will be overused and interpreted to mean "Buzz
off!", just as "Thank you for your feedback" became. But secondly, where in the world
did it somehow become a law that open source projects MUST implement every feature
that their users suggest? This is part of the strange economics of open source--in
a commercial product, if the developers stray too far away from what customers need
or want, declining sales will serve as a corrective force to bring them back around
(or, if they don't, bankruptcy of either the product or the company will eventually
follow). But in an open-source project, there's no real visible marker to serve as
that accountability and feedback--and so the project owners, those who want to try
and stay in tune with their users anyway, feel a deeper responsibility to respond
to user requests. And on its own, that's a good thing.
&lt;/p&gt;
&lt;p&gt;
The part that bothers me, though, is that this new phraseology essentially implies
that any open-source project has a responsibility to implement the features that its
users ask for, and frankly, that's not sustainable. Open-source projects are, for
the most part, maintained by volunteers, but even those that are backed by commercial
firms (like Microsoft or GitHub) have finite resources--they simply cannot commit
resources, even just "help", to every feature request that any user makes of them.
This is why the "We accept pull requests" was always, to my mind, an acceptable response:
loosely translated, to me at least, it meant, "Look, that's an interesting idea, but
it either isn't on our immediate roadmap, or it takes the project in a different direction
than we'd intended, or we're not even entirely sure that it's feasible or doable or
easily managed or what-have-you. Why don't you take a stab at implementing it in your
own fork of the code, and if you can get it to some point of implementation that you
can show us, send us a copy of the code in the form of a pull request so we can take
a look and see if it fits with how we see the project going." This is not an unreasonable
response: if you care passionately about this feature, either because you think it
should be there or because your company needs that feature to get its work done, then
you have the time, energy and motivation to at least take a first pass at it and prove
the concept (or, sometimes, prove to yourself that it's not such an easy request as
you thought). Cultivating a sense of entitlement in your users is not a good practice--it's
a step towards a completely unsustainable model that could, if not curbed, eventually
lead to the death of the project as the maintainers essentially give up when faced
with feature request after feature request.
&lt;/p&gt;
&lt;p&gt;
I applaud the efforts on the part of project maintainers, particularly those at large
commercial corporations involved in open source, to avoid "Buzz off" phrases. But
it's not OK for project maintainers to feel like they are under a responsibility to
implement any particular feature or idea suggested by a user. Some ideas are going
to be good ones, some are going to be just "off the radar" of the project's core committers,
and some are going to be just plain bad. You think your idea is one of those? Take
a stab at it. Write the code. And if you've got it to a point where it seems to be
working, then submit a pull request.
&lt;/p&gt;
&lt;p&gt;
But please, let's not blow this out of proportion. Users need to cut the people who
give them software for free some slack.
&lt;/p&gt;
&lt;p&gt;
(&lt;b&gt;EDIT:&lt;/b&gt; I accidentally referred to Jeff as "Anthony" in one place and "Andrew"
in another. Not really sure how or why, but... Edited.)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=d45aa93c-e207-4523-aca2-1f4331fc068b" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,d45aa93c-e207-4523-aca2-1f4331fc068b.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>Azure</category>
      <category>C#</category>
      <category>C++</category>
      <category>Conferences</category>
      <category>Development Processes</category>
      <category>F#</category>
      <category>Industry</category>
      <category>iPhone</category>
      <category>Java/J2EE</category>
      <category>Languages</category>
      <category>LLVM</category>
      <category>Mac OS</category>
      <category>Objective-C</category>
      <category>Python</category>
      <category>Reading</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Security</category>
      <category>Solaris</category>
      <category>Visual Basic</category>
      <category>VMWare</category>
      <category>XML Services</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=9fc99f7c-088b-45e9-b52a-3ccd9976c28d</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,9fc99f7c-088b-45e9-b52a-3ccd9976c28d.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,9fc99f7c-088b-45e9-b52a-3ccd9976c28d.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=9fc99f7c-088b-45e9-b52a-3ccd9976c28d</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
While cruising through the Internet a few minute ago, I wandered across <a href="http://meteor.com">Meteor</a>,
which looks like a really cool tool/system/platform/whatever for building modern web
applications. JavaScript on the front, JavaScript on the back, Mongo backing, it's
definitely something worth looking into, IMHO.
</p>
        <p>
Thus emboldened, I decide to look at how to start playing with it, and lo and behold
I discover that the instructions for installation are: 
</p>
        <pre>
curl https://install.meteor.com | sh
</pre>
Um.... Wat?
<p>
Now, I'm sure the Meteor folks are all nice people, and they're making sure (via the
use of the https URL) that whatever is piped into my shell is, in fact, coming from
their servers, but I don't know these people from Adam or Eve, and that's taking an
awfully big risk on my part, just letting them pipe whatever-the-hell-they-want into
a shell Terminal. Hell, you don't even need root access to fill my hard drive with
whatever random bits of goo you wanted.
</p><p>
I looked at the shell script, and it's all OK, mind you--the Meteor people definitely
look trustworthy, I want to reassure anyone of that. But I'm really, really hoping
that this is NOT their preferred mechanism for delivery... nor is it anyone's preferred
mechanism for delivery... because that's got a gaping security hole in it about twelve
miles wide. It's just begging for some random evil hacker to post a website saying,
"Hey, all, I've got his really cool framework y'all should try..." and bury the malware
inside the code somewhere.
</p><p>
Which leads to today's Random Thought Experiment of the Day: How long would it take
the open source community to discover malware buried inside of an open-source package,
particularly one that's in widespread use, a la Apache or Tomcat or JBoss? (Assume
all the core committers were in on it--how many people, aside from the core committers,
actually look at the source of the packages we download and install, sometimes under
root permissions?)
</p><p>
Not saying we should abandon open source; just saying we should be responsible citizens
about who we let in our front door.
</p><p><b>UPDATE</b>: Having done the install, I realize that it's a two-step download...
the shell script just figures out which OS you're on, which tool (curl or wget) to
use, and asks you for root access to download and install the actual distribution.
Which, honestly, I didn't look at. So, here's hoping the Meteor folks are as good
as I'm assuming them to be....
</p><p>
Still highlights that this is a huge security risk.
</p><img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=9fc99f7c-088b-45e9-b52a-3ccd9976c28d" /><br /><hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>Um... Security risk much?</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,9fc99f7c-088b-45e9-b52a-3ccd9976c28d.aspx</guid>
      <link>http://blogs.tedneward.com/2013/02/15/Um+Security+Risk+Much.aspx</link>
      <pubDate>Fri, 15 Feb 2013 04:25:38 GMT</pubDate>
      <description>&lt;p&gt;
While cruising through the Internet a few minute ago, I wandered across &lt;a href="http://meteor.com"&gt;Meteor&lt;/a&gt;,
which looks like a really cool tool/system/platform/whatever for building modern web
applications. JavaScript on the front, JavaScript on the back, Mongo backing, it's
definitely something worth looking into, IMHO.
&lt;/p&gt;
&lt;p&gt;
Thus emboldened, I decide to look at how to start playing with it, and lo and behold
I discover that the instructions for installation are: &lt;pre&gt;
curl https://install.meteor.com | sh
&lt;/pre&gt;
Um.... Wat?&gt;
&lt;p&gt;
Now, I'm sure the Meteor folks are all nice people, and they're making sure (via the
use of the https URL) that whatever is piped into my shell is, in fact, coming from
their servers, but I don't know these people from Adam or Eve, and that's taking an
awfully big risk on my part, just letting them pipe whatever-the-hell-they-want into
a shell Terminal. Hell, you don't even need root access to fill my hard drive with
whatever random bits of goo you wanted.
&lt;/p&gt;
&lt;p&gt;
I looked at the shell script, and it's all OK, mind you--the Meteor people definitely
look trustworthy, I want to reassure anyone of that. But I'm really, really hoping
that this is NOT their preferred mechanism for delivery... nor is it anyone's preferred
mechanism for delivery... because that's got a gaping security hole in it about twelve
miles wide. It's just begging for some random evil hacker to post a website saying,
"Hey, all, I've got his really cool framework y'all should try..." and bury the malware
inside the code somewhere.
&lt;/p&gt;
&lt;p&gt;
Which leads to today's Random Thought Experiment of the Day: How long would it take
the open source community to discover malware buried inside of an open-source package,
particularly one that's in widespread use, a la Apache or Tomcat or JBoss? (Assume
all the core committers were in on it--how many people, aside from the core committers,
actually look at the source of the packages we download and install, sometimes under
root permissions?)
&lt;/p&gt;
&lt;p&gt;
Not saying we should abandon open source; just saying we should be responsible citizens
about who we let in our front door.
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;UPDATE&lt;/b&gt;: Having done the install, I realize that it's a two-step download...
the shell script just figures out which OS you're on, which tool (curl or wget) to
use, and asks you for root access to download and install the actual distribution.
Which, honestly, I didn't look at. So, here's hoping the Meteor folks are as good
as I'm assuming them to be....
&lt;/p&gt;
&lt;p&gt;
Still highlights that this is a huge security risk.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=9fc99f7c-088b-45e9-b52a-3ccd9976c28d" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,9fc99f7c-088b-45e9-b52a-3ccd9976c28d.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>Azure</category>
      <category>C#</category>
      <category>C++</category>
      <category>Development Processes</category>
      <category>F#</category>
      <category>Flash</category>
      <category>Industry</category>
      <category>iPhone</category>
      <category>Java/J2EE</category>
      <category>Languages</category>
      <category>LLVM</category>
      <category>Mac OS</category>
      <category>Objective-C</category>
      <category>Parrot</category>
      <category>Personal</category>
      <category>Python</category>
      <category>Reading</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Security</category>
      <category>Social</category>
      <category>Solaris</category>
      <category>Visual Basic</category>
      <category>VMWare</category>
      <category>WCF</category>
      <category>Windows</category>
      <category>XML Services</category>
      <category>XNA</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=345c85f3-4b46-4757-b204-eb2f63d59eb7</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,345c85f3-4b46-4757-b204-eb2f63d59eb7.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,345c85f3-4b46-4757-b204-eb2f63d59eb7.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=345c85f3-4b46-4757-b204-eb2f63d59eb7</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Once again, it's time for my annual prognostication and <a href="http://blogs.tedneward.com/2012/01/02/Tech+Predictions+2012+Edition.aspx">review
of last year's efforts</a>. For those of you who've been long-time readers, you know
what this means, but for those two or three of you who haven't seen this before, let's
set the rules: if I got a prediction right from last year, you take a drink, and if
I didn't, you take a drink. (Best. Drinking game. EVAR!)
</p>
        <p>
Let's begin....
</p>
        <h3 id="recap-2012-predictions">Recap: 2012 Predictions
</h3>
        <p>
          <strong>THEN</strong>: <em>Lisps will be the languages to watch.</em></p>
        <blockquote>
          <p>
With Clojure leading the way, Lisps (that is, languages that are more or less loosely
based on Common Lisp or one of its variants) are slowly clawing their way back into
the limelight. Lisps are both functional languages as well as dynamic languages, which
gives them a significant reason for interest. Clojure runs on top of the JVM, which
makes it highly interoperable with other JVM languages/systems, and Clojure/CLR is
the version of Clojure for the CLR platform, though there seems to be less interest
in it in the .NET world (which is a mistake, if you ask me).
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: Clojure is definitely cementing itself as a "critic's darling"
of a language among the digital cognoscenti, but I don't see its uptake increasing--or
decreasing. It seems that, like so many critic's darlings, those who like it are using
it, and those who aren't have either never heard of it (the far more likely scenario)
or don't care for it. Datomic, a NoSQL written by the creator of Clojure (Rich Hickey),
is interesting, but I've not heard of many folks taking it up, either. And Clojure/CLR
is all but dead, it seems. I score myself a "0" on this one.
</p>
        <p>
          <strong>THEN</strong>: <em>Functional languages will....</em></p>
        <blockquote>
          <p>
I have no idea. As I said above, I'm kind of stymied on the whole functional-language
thing and their future. I keep thinking they will either "take off" or "drop off",
and they keep tacking to the middle, doing neither, just sort of hanging in there
as a concept for programmers to take and run with. Mind you, I like functional languages,
and I want to see them become mainstream, or at least more so, but I keep wondering
if the mainstream programming public is ready to accept the ideas and concepts hiding
therein. So this year, let's try something different: I predict that they will remain
exactly where they are, neither "done" nor "accepted", but continue next year to sort
of hang out in the middle.
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: Functional concepts are slowly making their way into the mainstream
of programming topics, but in some cases, programmers seem to be picking-and-choosing
which of the functional concepts they believe in. I've heard developers argue vehemently
about "lazy values" but go "meh" about lack-of-side-effects, or vice versa. Moreover,
it seems that developers are still taking an "object-first, functional-when-I-need-it"
kind of approach, which seems a little object-heavy, if you ask me. So, since the
concepts seem to be taking some sort of shallow root, I don't know that I get the
point for this one, but at the same time, it's not like I was wildly off. So, let's
say "0" again.
</p>
        <p>
          <strong>THEN</strong>: <em>F#'s type providers will show up in C# v.Next.</em></p>
        <blockquote>
          <p>
This one is actually a "gimme", if you look across the history of F# and C#: for almost
every version of F# v."N", features from that version show up in C# v."N+1". More
importantly, F# 3.0's type provider feature is an amazing idea, and one that I think
will open up language research in some very interesting ways. (Not sure what F#'s
type providers are or what they'll do for you? Check out Don Syme's talk on it at
BUILD last year.)
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: C# v.Next hasn't been announced yet, so I can't say that this
one has come true. We should start hearing some vague rumors out of Redmond soon,
though, so maybe 2013 will be the year that C# gets type providers (or some scaled-back
version thereof). Again, a "0".
</p>
        <p>
          <strong>THEN</strong>: <em>Windows8 will generate a lot of chatter.</em></p>
        <blockquote>
          <p>
As 2012 progresses, Microsoft will try to force a lot of buzz around it by keeping
things under wraps until various points in the year that feel strategic (TechEd, BUILD,
etc). In doing so, though, they will annoy a number of people by not talking about
them more openly or transparently.
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: Oh, my, did they. Windows8 was announced with a bang, but Microsoft
(and Sinofsky, who ran the OS division up until recently) decided that they could
go it alone and leave critical partners (like Dropbox!) out of the loop entirely.
As a result, the Windows8 Store didn't have a lot of apps in it that people (including
myself) really expected would be there. And THEN, there was Surface... which took
everybody by surprise, as near as I can tell. Totally under wraps. I'm scoring myself
"+2" for that one.
</p>
        <p>
          <strong>THEN</strong>: <em>Windows8 ("Metro")-style apps won't impress at first.</em></p>
        <blockquote>
          <p>
The more I think about it, the more I'm becoming convinced that Metro-style apps on
a desktop machine are going to collectively underwhelm. The UI simply isn't designed
for keyboard-and-mouse kinds of interaction, and that's going to be the hardware setup
that most people first experience Windows8 on--contrary to what (I think) Microsoft
thinks, people do not just have tablets laying around waiting for Windows 8 to be
installed on it, nor are they going to buy a Windows8 tablet just to try it out, at
least not until it's gathered some mojo behind it. Microsoft is going to have to finesse
the messaging here very, very finely, and that's not something they've shown themselves
to be particularly good at over the last half-decade.
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: I find myself somewhat at a loss how to score this one--on the
one hand, the "used-to-be-called-Metro"-style applications aren't terrible, and I
haven't really heard anyone complain about them tremendously, but at the same time,
I haven't heard anyone really go wild and ga-ga over them, either. Part of that, I
think, is because there just aren't a lot of apps out there for it yet, aside from
a rather skimpy selection of games (compared to the iOS App Store and Android Play
Store). Again, I think Microsoft really screwed themselves with this one--keeping
it all under wraps helped them make a big "Oh, WOW" kind of event buzz within the
conference hall when they announced Surface, for example, but that buzz sort of left
the room (figuratively) when people started looking for their favorite apps so they
could start using that device. (Which, by the way, isn't a bad piece of hardware,
I'm finding.) I'll give myself a "+1" for this.
</p>
        <p>
          <strong>THEN</strong>: <em>Scala will get bigger, thanks to Heroku.</em></p>
        <blockquote>
          <p>
With the adoption of Scala and Play for their Java apps, Heroku is going to make Scala
look attractive as a development platform, and the adoption of Play by Typesafe (the
same people who brought you Akka) means that these four--Heroku, Scala, Play and Akka--will
combine into a very compelling and interesting platform. I'm looking forward to seeing
what comes of that.
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: We're going to get to cloud in a second, but on the whole, Heroku
is now starting to make Scala/Play attractive, arguably as attractive as Ruby/Rails
is. Play 2.0 unfortunately is not backwards-compatible with Play 1.x modules, which
hurts it, but hopefully the Play community brings that back up to speed fairly quickly.
"+1"
</p>
        <p>
          <strong>THEN</strong>: <em>Cloud will continue to whip up a lot of air.</em></p>
        <blockquote>
          <p>
For all the hype and money spent on it, it doesn't really seem like cloud is gathering
commensurate amounts of traction, across all the various cloud providers with the
possible exception of Amazon's cloud system. But, as the different cloud platforms
start to diversify their platform technology (Microsoft seems to be leading the way
here, ironically, with the introduction of Java, Hadoop and some limited NoSQL bits
into their Azure offerings), and as we start to get more experience with the pricing
and costs of cloud, 2012 might be the year that we start to see mainstream cloud adoption,
beyond "just" the usage patterns we've seen so far (as a backing server for mobile
apps and as an easy way to spin up startups).
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: It's been whipping up air, all right, but it's starting to look
like tornadoes and hurricanes--the talk of 2012 seems to have been more around notable
cloud outages instead of notable cloud successes, capped off by a nationwide Netflix
outage on Christmas Eve that seemed to dominate my Facebook feed that night. Later
analysis suggested that the outage was with Amazon's AWS cloud, on which Netflix resides,
and boy, did that make a few heads spin. I suspect we haven't yet (as of this writing)
seen the last of that discussion. Overall, it seems like lots of startups and other
greenfield apps are being deployed to the cloud, but it seems like corporations are
hesitating to pull the trigger on an "all-in" kind of cloud adoption, because of some
of the fears surrounding cloud security and now (of all things) robustness. "+1"
</p>
        <p>
          <strong>THEN</strong>: <em>Android tablets will start to gain momentum.</em></p>
        <blockquote>
          <p>
Amazon's Kindle Fire has hit the market strong, definitely better than any other Android-based
tablet before it. The Nooq (the Kindle's principal competitor, at least in the e-reader
world) is also an Android tablet, which means that right now, consumers can get into
the Android tablet world for far, far less than what an iPad costs. Apple rumors suggest
that they may have a 7" form factor tablet that will price competitively (in the $200/$300
range), but that's just rumor right now, and Apple has never shown an interest in
that form factor, which means the 7" world will remain exclusively Android's (at least
for now), and that's a nice form factor for a lot of things. This translates well
into more sales of Android tablets in general, I think.
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: Google's Nexus 7 came to dominate the discussion of the 7" tablet,
until...
</p>
        <p>
          <strong>THEN</strong>: <em>Apple will release an iPad 3, and it will be "more of the
same".</em></p>
        <blockquote>
          <p>
Trying to predict Apple is generally a lost cause, particularly when it comes to their
vaunted iOS lines, but somewhere around the middle of the year would be ripe for a
new iPad, at the very least. (With the iPhone 4S out a few months ago, it's hard to
imagine they'd cannibalize those sales by releasing a new iPhone, until the end of
the year at the earliest.) Frankly, though, I don't expect the iPad 3 to be all that
big of a boost, just a faster processor, more storage, and probably about the same
size. Probably the only thing I'd want added to the iPad would be a USB port, but
that conflicts with the Apple desire to present the iPad as a "device", rather than
as a "computer". (USB ports smack of "computers", not self-contained "devices".)
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: ... the iPad Mini. Which, I'd like to point out, is just an
iPad in a 7" form factor. (Actually, I think it's a little bit bigger than most 7"
tablets--it looks to be a smidge wider than the other 7" tablets I have.) And the
"new iPad" (not the iPad 3, which I call a massive FAIL on the part of Apple marketing)
is exactly that: same iPad, just faster. And still no USB port on either the iPad
or iPad Mini. So between this one and the previous one, I score myself at "+3" across
both.
</p>
        <p>
          <strong>THEN</strong>: <em>Apple will get hauled in front of the US government for...
something.</em></p>
        <blockquote>
          <p>
Apple's recent foray in the legal world, effectively informing Samsung that they can't
make square phones and offering advice as to what will avoid future litigation, smacks
of such hubris and arrogance, it makes Microsoft look like a Pollyanna Pushover by
comparison. It is pretty much a given, it seems to me, that a confrontation in the
legal halls is not far removed, either with the US or with the EU, over anti-cometitive
behavior. (And if this kind of behavior continues, and there is no legal action, it'll
be pretty apparent that Apple has a pretty good set of US Congressmen and Senators
in their pocket, something they probably learned from watching Microsoft and IBM slug
it out rather than just buy them off.)
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: Congress has started to take a serious look at the patent system
and how it's being used by patent trolls (of which, folks, I include Apple these days)
to stifle innovation and create this Byzantine system of cross-patent licensing that
only benefits the big players, which was exactly what the patent system was designed
to avoid. (Patents were supposed to be a way to allow inventors, who are often independents,
to avoid getting crushed by bigger, established, well-monetized firms.) Apple hasn't
been put squarely in the crosshairs, but the Economist's article on Apple, Google,
Microsoft and Amazon in the Dec 11th issue definitely points out that all four are
squarely in the sights of governments on both sides of the Atlantic. Still, no points
for me.
</p>
        <p>
          <strong>THEN</strong>: <em>IBM will be entirely irrelevant again.</em></p>
        <blockquote>
          <p>
Look, IBM's main contribution to the Java world is/was Eclipse, and to a much lesser
degree, Harmony. With Eclipse more or less "done" (aside from all the work on plugins
being done by third parties), and with IBM abandoning Harmony in favor of OpenJDK,
IBM more or less removes themselves from the game, as far as developers are concerned.
Which shouldn't really be surprising--they've been more or less irrelevant pretty
much ever since the mid-2000s or so.
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: IBM who? Wait, didn't they used to make a really kick-ass laptop,
back when we liked using laptops? "+1"
</p>
        <p>
          <strong>THEN</strong>: <em>Oracle will "screw it up" at least once.</em></p>
        <blockquote>
          <p>
Right now, the Java community is poised, like a starving vulture, waiting for Oracle
to do something else that demonstrates and befits their Evil Emperor status. The community
has already been quick (far too quick, if you ask me) to highlight Oracle's supposed
missteps, such as the JVM-crashing bug (which has already been fixed in the _u1 release
of Java7, which garnered no attention from the various Java news sites) and the debacle
around Hudson/Jenkins/whatever-the-heck-we-need-to-call-it-this-week. I'll grant you,
the Hudson/Jenkins debacle was deserving of ire, but Oracle is hardly the Evil Emperor
the community makes them out to be--at least, so far. (I'll admit it, though, I'm
a touch biased, both because Brian Goetz is a friend of mine and because Oracle TechNet
has asked me to write a column for them next year. Still, in the spirit of "innocent
until proven guilty"....)
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: It is with great pleasure that I score myself a "0" here. Oracle's
been pretty good about things, sticking with the OpenJDK approach to developing software
and talking very openly about what they're trying to do with Java8. They're not entirely
innocent, mind you--the fact that a Java install tries to monkey with my browser bar
by installing some plugin or other and so on is not something I really appreciate--but
they're not acting like Ming the Merciless, either. Matter of fact, they even seem
to be going out of their way to be community-inclusive, in some circles. I give myself
a "-1" here, and I'm happy to claim it. Good job, guys.
</p>
        <p>
          <strong>THEN</strong>: <em>VMWare/SpringSource will start pushing their cloud solution
in a major way.</em></p>
        <blockquote>
          <p>
Companies like Microsoft and Google are pushing cloud solutions because Software-as-a-Service
is a reoccurring revenue model, generating revenue even in years when the product
hasn't incremented. VMWare, being a product company, is in the same boat--the only
time they make money is when they sell a new copy of their product, unless they can
start pushing their virtualization story onto hardware on behalf of clients--a.k.a.
"the cloud". With SpringSource as the software stack, VMWare has a more-or-less complete
cloud play, so it's surprising that they didn't push it harder in 2011; I suspect
they'll start cramming it down everybody's throats in 2012. Expect to see Rod Johnson
talking a lot about the cloud as a result.
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: Again, I give myself a "-1" here, and frankly, I'm shocked to
be doing it. I really thought this one was a no-brainer. CloudFoundry seemed like
a pretty straightforward play, and VMWare already owned a significant share of the
virtualization story, so.... And yet, I really haven't seen much by way of significant
marketing, advertising, or developer outreach around their cloud story. It's much
the same as what it was in 2011; it almost feels like the parent corporation (EMC)
either doesn't "get" why they should push a cloud play, doesn't see it as worth the
cost, or else doesn't care. Count me confused. "0"
</p>
        <p>
          <strong>THEN</strong>: <em>JavaScript hype will continue to grow, and by years' end
will be at near-backlash levels.</em></p>
        <blockquote>
          <p>
JavaScript (more properly known as ECMAScript, not that anyone seems to care but me)
is gaining all kinds of steam as a mainstream development language (as opposed to
just-a-browser language), particularly with the release of NodeJS. That hype will
continue to escalate, and by the end of the year we may start to see a backlash against
it. (Speaking personally, NodeJS is an interesting solution, but suggesting that it
will replace your Tomcat or IIS server is a bit far-fetched; event-driven I/O is something
both of those servers have been doing for years, and the rest of it is "just" a language
discussion. We could pretty easily use JavaScript as the development language inside
both servers, as Sun demonstrated years ago with their "Phobos" project--not that
anybody really cared back then.)
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: JavaScript frameworks are exploding everywhere like fireworks
at a Disney theme park. Douglas Crockford is getting more invites to conference keynote
opportunities than James Gosling ever did. You can get a job if you know how to spell
"NodeJS". And yet, I'm starting to hear the same kinds of rumblings about "how in
the hell do we manage a 200K LOC codebase written in JavaScript" that I heard people
gripe about Ruby/Rails a few years ago. If the backlash hasn't started, then it's
right on the cusp. "+1"
</p>
        <p>
          <strong>THEN</strong>: <em>NoSQL buzz will continue to grow, and by years' end will
start to generate a backlash.</em></p>
        <blockquote>
          <p>
More and more companies are jumping into NoSQL-based solutions, and this trend will
continue to accelerate, until some extremely public failure will start to generate
a backlash against it. (This seems to be a pattern that shows up with a lot of technologies,
so it seems entirely realistic that it'll happen here, too.) Mind you, I don't mean
to suggest that the backlash will be factual or correct--usually these sorts of things
come from misuing the tool, not from any intrinsic failure in it--but it'll generate
some bad press.
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: Recently, I heard that NBC was thinking about starting up a
new comedy series called "Everybody Hates Mongo", with Chris Rock narrating. And I
think that's just the beginning--lots of companies, particularly startups, decided
to run with a NoSQL solution before seriously contemplating how they were going to
make up for the things that a NoSQL doesn't provide (like a schema, for a lot of these),
and suddenly find themselves wishing they had spent a little more time thinking about
that back in the early days. Again, if the backlash isn't already started, it's about
to. "+1"
</p>
        <p>
          <strong>THEN</strong>: <em>Ted will thoroughly rock the house during his CodeMash
keynote.</em></p>
        <blockquote>
          <p>
Yeah, OK, that's more of a fervent wish than a prediction, but hey, keep a positive
attitude and all that, right?
</p>
        </blockquote>
        <p>
          <strong>NOW</strong>: Welllll..... Looking back at it with almost a years' worth of
distance, I can freely admit I dropped a few too many "F"-bombs (a buddy of mine counted
18), but aside from a (very) vocal minority, my takeaway is that a lot of people enjoyed
it. Still, I do wish I'd throttled it back some--InfoQ recorded it, and the fact that
it hasn't yet seen public posting on the website implies (to me) that they found it
too much work to "bleep" out all the naughty words. Which I call "my bad" on, because
I think they were really hoping to use that as part of their promotional activities
(not that they needed it, selling out again in minutes). To all those who found it
distasteful, I apologize, and to those who chafe at the fact that I'm apologizing,
I apologize. I take a "-1" here.
</p>
        <h3 id="predictions">2013 Predictions:
</h3>
        <p>
Having thus scored myself at a "9" (out of 17) for last year, let's take a stab at
a few for next year:
</p>
        <ul>
          <li>
            <strong>"Big data" and "data analytics" will dominate the enterprise landscape.</strong> I'm
actually pretty late to the ballgame to talk about this one, in fact--it was starting
its rapid climb up the hype wave already this year. And, part and parcel with going
up this end of the hype wave this quickly, it also stands to reason that companies
will start marketing the hell out of the term "big data" without being entirely too
precise about what they mean when they say "big data".... By the end of the year,
people will start building services and/or products on top of Hadoop, which appears
primed to be the "Big Data" platform of choice, thus far.</li>
          <li>
            <strong>NoSQL buzz will start to diversify.</strong> The various "NoSQL" vendors are
going to start wanting to differentiate themselves from each other, and will start
using "NoSQL" in their marketing and advertising talking points less and less. Some
of this will be because Pandora's Box on data storage has already been opened--nobody's
just assuming a relational database all the time, every time, anymore--but some of
this will be because the different NoSQL vendors, who are at different stages in the
adoption curve, will want to differentiate themselves from the vendors that are taking
on the backlash. I predict Mongo, who seems to be leading the way of the NoSQL vendors,
will be the sacrificial scapegoat for a lot of the NoSQL backlash that's coming down
the pike.</li>
          <li>
            <strong>Desktops increasingly become niche products.</strong> Look, does anyone buy
a desktop machine anymore? I have three sitting next to me in my office, and none
of the three has been turned on in probably two years--I'm exclusively laptop-bound
these days. Between tablets as consumption devices (slowly obsoleting the laptop),
and cloud offerings becoming more and more varied (slowly obsoleting the server),
there's just no room for companies that sell desktops--or the various Mom-and-Pop
shops that put them together for you. In fact, I'm starting to wonder if all those
parts I used to buy at Fry's Electronics and swap meets will start to disappear, too.
Gamers keep desktops alive, and I don't know if there's enough money in that world
to keep lots of those vendors alive. (I hope so, but I don't know for sure.)</li>
          <li>
            <strong>Home servers will start to grow in interest.</strong> This may seem paradoxical
to the previous point, but I think techno-geek leader-types are going to start looking
into "servers-in-a-box" that they can set up at home and have all their devices sync
to and store to. Sure, all the media will come through there, and the key here will
be "turnkey", since most folks are getting used to machines that "just work". Lots
of friends, for example, seem to be using Mac Minis for exactly this purpose, and
there's a vendor here in Redmond that sells a <a href="http://www.usmicro.com/hot-offers.php">ridiculously-powered
server in a box</a> for a couple thousand. (This is on my birthday list, right after
I get my maxed-out 13" MacBook Air and iPad 3.) This is also going to be fueled by...</li>
          <li>
            <strong>Private cloud is going to start getting hot.</strong> The great advantage
of cloud is that you don't have to have an IT department; the great disadvantage of
cloud is that when things go bad, you don't have an IT department. Too many well-publicized
cloud failures are going to drive corporations to try and find a solution that is
the best-of-both-worlds: the flexibility and resiliency of cloud provisioning, but
staffed by IT resources they can whip and threaten and cajole when things fail. (And,
by the way, I fully understand that most cloud providers have better uptimes than
most private IT organizations--this is about perception and control and the feelings
of powerlessness and helplessness when things go south, not reality.)</li>
          <li>
            <strong>Oracle will release Java8, and while several Java pundits will decry "it's
not the Java I love!", most will actually come to like it.</strong> Let's be blunt,
Java has long since moved past being the flower of fancy and a critic's darling, and
it's moved squarely into the battleship-gray of slogging out code and getting line-of-business
apps done. Java8 adopting function literals (aka "closures") and retrofitting the
Collection library to use them will be a subtle, but powerful, extension to the lifetime
of the Java language, but it's never going to be sexy again. Fortunately, it doesn't
need to be.</li>
          <li>
            <strong>Microsoft will start courting the .NET developers again.</strong> Windows8
left a bad impression in the minds of many .NET developers, with the emphasis on HTML/JavaScript
apps and C++ apps, leaving many .NET developers to wonder if they were somehow rendered
obsolete by the new platform. Despite numerous attempts in numerous ways to tell them
no, developers still seem to have that opinion--and Microsoft needs to go on the offensive
to show them that .NET and Windows8 (and WinRT) do, in fact, go very well together.
Microsoft can't afford for their loyal developer community to feel left out or abandoned.
They know that, and they'll start working on it.</li>
          <li>
            <strong>Samsung will start pushing themselves further and further into the consumer
market.</strong> They already have started gathering more and more of a consumer name
for themselves, they just need to solidify their tablet offerings and get closer in
line with either Google (for Android tablets) or even Microsoft (for Windows8 tablets
and/or Surface competitors) to compete with Apple. They may even start looking into
writing their own tablet OS, which would be something of a mistake, but an understandable
one.</li>
          <li>
            <strong>Apple's next release cycle will, again, be "more of the same".</strong> iPhone
6, iPad 4, iPad Mini 2, MacBooks, MacBook Airs, none of them are going to get much
in the way of innovation or new features. Apple is going to run squarely into the
Innovator's Dilemma soon, and their products are going to be "more of the same" for
a while. Incremental improvements along a couple of lines, perhaps, but nothing Earth-shattering.
(Hey, Apple, how about opening up Siri to us to program against, for example, so we
can hook into her command structure and hook our own apps up? I can do that with Android
today, why not her?)</li>
          <li>
            <strong>Visual Studio 2014 features will start being discussed at the end of the year.</strong> If
Microsoft is going to hit their every-two-year-cycle with Visual Studio, then they'll
start talking/whispering/rumoring some of the v.Next features towards the middle to
end of 2013. I fully expect C# 6 will get some form of type providers, Visual Basic
will be a close carbon copy of C# again, and F# 4 will have something completely revolutionary
that anyone who sees it will be like, "Oh, cool! Now, when can I get that in C#?"</li>
          <li>
            <strong>Scala interest wanes.</strong> As much as I don't want it to happen, I think
interest in Scala is going to slow down, and possibly regress. This will be the year
that Typesafe needs to make a major splash if they want to show the world that they're
serious, and I don't know that the JVM world is really all that interested in seeing
a new player. Instead, I think Scala will be seen as what "the 1%" of the Java community
uses, and the rest will take some ideas from there and apply them (poorly, perhaps)
to Java.</li>
          <li>
            <strong>Interest in native languages will rise.</strong> Just for kicks, developers
will start experimenting with some of the new compile-to-native-code languages (Go,
Rust, Slate, Haskell, whatever) and start finding some of the joys (and heartaches)
that come with running "on the metal". More importantly, they'll start looking at
ways to use these languages with platforms where running "on the metal" is more important,
like mobile devices and tablets.</li>
        </ul>
        <p>
As always, folks, thanks for reading. See you next year.
</p>
        <b>UPDATE:</b> Two things happened this week (7 Jan 2013) that made me want to add
to this list: 
<ul><li><strong>Hardware is the new platform.</strong> A buddy of mine (Scott Davis) pointed
out on a mailing list we share that "hardware is the new platform", and with Microsoft's
Surface out now, there's three major players (Apple, Google, Microsoft) in this game.
It's becoming apparent that more and more companies are starting to see opportunities
in going the Apple route of owning not just the OS and the store, but the hardware
underneath it. More and more companies are going to start playing this game, too,
I think, and we're going to see Amazon take some shots here, and probably a few others.
Of course, already announced is the Ubuntu Phone, and a new Android-like player, <a href="http://www.tizen.org">Tizen</a>,
but I'm not thinking about new players--there's always new players--but about some
of the big standouts. And look for companies like Dell and HP to start looking for
ways to play in this game, too, either through partnerships or acquisitions. (Hello,
Oracle, I'm looking at you.... And Adobe, too.)</li><li><strong>APIs for lots of things are going to come out.</strong> Ford <a href="http://techcrunch.com/2013/01/07/ford-launches-open-developer-program-to-let-mobile-apps-interface-with-its-cars/">just</a> did <a href="http://developer.ford.com">this</a>.
This is not going away--this is going to proliferate. And the startup community is
going to lap it up like kittens attacking a bowl of cream. If you're looking for a
play in the startup world, pursue this.</li></ul><img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=345c85f3-4b46-4757-b204-eb2f63d59eb7" /><br /><hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>Tech Predictions, 2013</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,345c85f3-4b46-4757-b204-eb2f63d59eb7.aspx</guid>
      <link>http://blogs.tedneward.com/2013/01/01/Tech+Predictions+2013.aspx</link>
      <pubDate>Tue, 01 Jan 2013 09:22:30 GMT</pubDate>
      <description>&lt;p&gt;
Once again, it's time for my annual prognostication and &lt;a href="http://blogs.tedneward.com/2012/01/02/Tech+Predictions+2012+Edition.aspx"&gt;review
of last year's efforts&lt;/a&gt;. For those of you who've been long-time readers, you know
what this means, but for those two or three of you who haven't seen this before, let's
set the rules: if I got a prediction right from last year, you take a drink, and if
I didn't, you take a drink. (Best. Drinking game. EVAR!)
&lt;/p&gt;
&lt;p&gt;
Let's begin....
&lt;/p&gt;
&lt;h3 id="recap-2012-predictions"&gt;Recap: 2012 Predictions
&lt;/h3&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Lisps will be the languages to watch.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
With Clojure leading the way, Lisps (that is, languages that are more or less loosely
based on Common Lisp or one of its variants) are slowly clawing their way back into
the limelight. Lisps are both functional languages as well as dynamic languages, which
gives them a significant reason for interest. Clojure runs on top of the JVM, which
makes it highly interoperable with other JVM languages/systems, and Clojure/CLR is
the version of Clojure for the CLR platform, though there seems to be less interest
in it in the .NET world (which is a mistake, if you ask me).
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: Clojure is definitely cementing itself as a "critic's darling"
of a language among the digital cognoscenti, but I don't see its uptake increasing--or
decreasing. It seems that, like so many critic's darlings, those who like it are using
it, and those who aren't have either never heard of it (the far more likely scenario)
or don't care for it. Datomic, a NoSQL written by the creator of Clojure (Rich Hickey),
is interesting, but I've not heard of many folks taking it up, either. And Clojure/CLR
is all but dead, it seems. I score myself a "0" on this one.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Functional languages will....&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
I have no idea. As I said above, I'm kind of stymied on the whole functional-language
thing and their future. I keep thinking they will either "take off" or "drop off",
and they keep tacking to the middle, doing neither, just sort of hanging in there
as a concept for programmers to take and run with. Mind you, I like functional languages,
and I want to see them become mainstream, or at least more so, but I keep wondering
if the mainstream programming public is ready to accept the ideas and concepts hiding
therein. So this year, let's try something different: I predict that they will remain
exactly where they are, neither "done" nor "accepted", but continue next year to sort
of hang out in the middle.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: Functional concepts are slowly making their way into the mainstream
of programming topics, but in some cases, programmers seem to be picking-and-choosing
which of the functional concepts they believe in. I've heard developers argue vehemently
about "lazy values" but go "meh" about lack-of-side-effects, or vice versa. Moreover,
it seems that developers are still taking an "object-first, functional-when-I-need-it"
kind of approach, which seems a little object-heavy, if you ask me. So, since the
concepts seem to be taking some sort of shallow root, I don't know that I get the
point for this one, but at the same time, it's not like I was wildly off. So, let's
say "0" again.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;F#'s type providers will show up in C# v.Next.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
This one is actually a "gimme", if you look across the history of F# and C#: for almost
every version of F# v."N", features from that version show up in C# v."N+1". More
importantly, F# 3.0's type provider feature is an amazing idea, and one that I think
will open up language research in some very interesting ways. (Not sure what F#'s
type providers are or what they'll do for you? Check out Don Syme's talk on it at
BUILD last year.)
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: C# v.Next hasn't been announced yet, so I can't say that this
one has come true. We should start hearing some vague rumors out of Redmond soon,
though, so maybe 2013 will be the year that C# gets type providers (or some scaled-back
version thereof). Again, a "0".
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Windows8 will generate a lot of chatter.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
As 2012 progresses, Microsoft will try to force a lot of buzz around it by keeping
things under wraps until various points in the year that feel strategic (TechEd, BUILD,
etc). In doing so, though, they will annoy a number of people by not talking about
them more openly or transparently.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: Oh, my, did they. Windows8 was announced with a bang, but Microsoft
(and Sinofsky, who ran the OS division up until recently) decided that they could
go it alone and leave critical partners (like Dropbox!) out of the loop entirely.
As a result, the Windows8 Store didn't have a lot of apps in it that people (including
myself) really expected would be there. And THEN, there was Surface... which took
everybody by surprise, as near as I can tell. Totally under wraps. I'm scoring myself
"+2" for that one.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Windows8 ("Metro")-style apps won't impress at first.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
The more I think about it, the more I'm becoming convinced that Metro-style apps on
a desktop machine are going to collectively underwhelm. The UI simply isn't designed
for keyboard-and-mouse kinds of interaction, and that's going to be the hardware setup
that most people first experience Windows8 on--contrary to what (I think) Microsoft
thinks, people do not just have tablets laying around waiting for Windows 8 to be
installed on it, nor are they going to buy a Windows8 tablet just to try it out, at
least not until it's gathered some mojo behind it. Microsoft is going to have to finesse
the messaging here very, very finely, and that's not something they've shown themselves
to be particularly good at over the last half-decade.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: I find myself somewhat at a loss how to score this one--on the
one hand, the "used-to-be-called-Metro"-style applications aren't terrible, and I
haven't really heard anyone complain about them tremendously, but at the same time,
I haven't heard anyone really go wild and ga-ga over them, either. Part of that, I
think, is because there just aren't a lot of apps out there for it yet, aside from
a rather skimpy selection of games (compared to the iOS App Store and Android Play
Store). Again, I think Microsoft really screwed themselves with this one--keeping
it all under wraps helped them make a big "Oh, WOW" kind of event buzz within the
conference hall when they announced Surface, for example, but that buzz sort of left
the room (figuratively) when people started looking for their favorite apps so they
could start using that device. (Which, by the way, isn't a bad piece of hardware,
I'm finding.) I'll give myself a "+1" for this.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Scala will get bigger, thanks to Heroku.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
With the adoption of Scala and Play for their Java apps, Heroku is going to make Scala
look attractive as a development platform, and the adoption of Play by Typesafe (the
same people who brought you Akka) means that these four--Heroku, Scala, Play and Akka--will
combine into a very compelling and interesting platform. I'm looking forward to seeing
what comes of that.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: We're going to get to cloud in a second, but on the whole, Heroku
is now starting to make Scala/Play attractive, arguably as attractive as Ruby/Rails
is. Play 2.0 unfortunately is not backwards-compatible with Play 1.x modules, which
hurts it, but hopefully the Play community brings that back up to speed fairly quickly.
"+1"
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Cloud will continue to whip up a lot of air.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
For all the hype and money spent on it, it doesn't really seem like cloud is gathering
commensurate amounts of traction, across all the various cloud providers with the
possible exception of Amazon's cloud system. But, as the different cloud platforms
start to diversify their platform technology (Microsoft seems to be leading the way
here, ironically, with the introduction of Java, Hadoop and some limited NoSQL bits
into their Azure offerings), and as we start to get more experience with the pricing
and costs of cloud, 2012 might be the year that we start to see mainstream cloud adoption,
beyond "just" the usage patterns we've seen so far (as a backing server for mobile
apps and as an easy way to spin up startups).
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: It's been whipping up air, all right, but it's starting to look
like tornadoes and hurricanes--the talk of 2012 seems to have been more around notable
cloud outages instead of notable cloud successes, capped off by a nationwide Netflix
outage on Christmas Eve that seemed to dominate my Facebook feed that night. Later
analysis suggested that the outage was with Amazon's AWS cloud, on which Netflix resides,
and boy, did that make a few heads spin. I suspect we haven't yet (as of this writing)
seen the last of that discussion. Overall, it seems like lots of startups and other
greenfield apps are being deployed to the cloud, but it seems like corporations are
hesitating to pull the trigger on an "all-in" kind of cloud adoption, because of some
of the fears surrounding cloud security and now (of all things) robustness. "+1"
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Android tablets will start to gain momentum.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Amazon's Kindle Fire has hit the market strong, definitely better than any other Android-based
tablet before it. The Nooq (the Kindle's principal competitor, at least in the e-reader
world) is also an Android tablet, which means that right now, consumers can get into
the Android tablet world for far, far less than what an iPad costs. Apple rumors suggest
that they may have a 7" form factor tablet that will price competitively (in the $200/$300
range), but that's just rumor right now, and Apple has never shown an interest in
that form factor, which means the 7" world will remain exclusively Android's (at least
for now), and that's a nice form factor for a lot of things. This translates well
into more sales of Android tablets in general, I think.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: Google's Nexus 7 came to dominate the discussion of the 7" tablet,
until...
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Apple will release an iPad 3, and it will be "more of the
same".&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Trying to predict Apple is generally a lost cause, particularly when it comes to their
vaunted iOS lines, but somewhere around the middle of the year would be ripe for a
new iPad, at the very least. (With the iPhone 4S out a few months ago, it's hard to
imagine they'd cannibalize those sales by releasing a new iPhone, until the end of
the year at the earliest.) Frankly, though, I don't expect the iPad 3 to be all that
big of a boost, just a faster processor, more storage, and probably about the same
size. Probably the only thing I'd want added to the iPad would be a USB port, but
that conflicts with the Apple desire to present the iPad as a "device", rather than
as a "computer". (USB ports smack of "computers", not self-contained "devices".)
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: ... the iPad Mini. Which, I'd like to point out, is just an
iPad in a 7" form factor. (Actually, I think it's a little bit bigger than most 7"
tablets--it looks to be a smidge wider than the other 7" tablets I have.) And the
"new iPad" (not the iPad 3, which I call a massive FAIL on the part of Apple marketing)
is exactly that: same iPad, just faster. And still no USB port on either the iPad
or iPad Mini. So between this one and the previous one, I score myself at "+3" across
both.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Apple will get hauled in front of the US government for...
something.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Apple's recent foray in the legal world, effectively informing Samsung that they can't
make square phones and offering advice as to what will avoid future litigation, smacks
of such hubris and arrogance, it makes Microsoft look like a Pollyanna Pushover by
comparison. It is pretty much a given, it seems to me, that a confrontation in the
legal halls is not far removed, either with the US or with the EU, over anti-cometitive
behavior. (And if this kind of behavior continues, and there is no legal action, it'll
be pretty apparent that Apple has a pretty good set of US Congressmen and Senators
in their pocket, something they probably learned from watching Microsoft and IBM slug
it out rather than just buy them off.)
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: Congress has started to take a serious look at the patent system
and how it's being used by patent trolls (of which, folks, I include Apple these days)
to stifle innovation and create this Byzantine system of cross-patent licensing that
only benefits the big players, which was exactly what the patent system was designed
to avoid. (Patents were supposed to be a way to allow inventors, who are often independents,
to avoid getting crushed by bigger, established, well-monetized firms.) Apple hasn't
been put squarely in the crosshairs, but the Economist's article on Apple, Google,
Microsoft and Amazon in the Dec 11th issue definitely points out that all four are
squarely in the sights of governments on both sides of the Atlantic. Still, no points
for me.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;IBM will be entirely irrelevant again.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Look, IBM's main contribution to the Java world is/was Eclipse, and to a much lesser
degree, Harmony. With Eclipse more or less "done" (aside from all the work on plugins
being done by third parties), and with IBM abandoning Harmony in favor of OpenJDK,
IBM more or less removes themselves from the game, as far as developers are concerned.
Which shouldn't really be surprising--they've been more or less irrelevant pretty
much ever since the mid-2000s or so.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: IBM who? Wait, didn't they used to make a really kick-ass laptop,
back when we liked using laptops? "+1"
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Oracle will "screw it up" at least once.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Right now, the Java community is poised, like a starving vulture, waiting for Oracle
to do something else that demonstrates and befits their Evil Emperor status. The community
has already been quick (far too quick, if you ask me) to highlight Oracle's supposed
missteps, such as the JVM-crashing bug (which has already been fixed in the _u1 release
of Java7, which garnered no attention from the various Java news sites) and the debacle
around Hudson/Jenkins/whatever-the-heck-we-need-to-call-it-this-week. I'll grant you,
the Hudson/Jenkins debacle was deserving of ire, but Oracle is hardly the Evil Emperor
the community makes them out to be--at least, so far. (I'll admit it, though, I'm
a touch biased, both because Brian Goetz is a friend of mine and because Oracle TechNet
has asked me to write a column for them next year. Still, in the spirit of "innocent
until proven guilty"....)
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: It is with great pleasure that I score myself a "0" here. Oracle's
been pretty good about things, sticking with the OpenJDK approach to developing software
and talking very openly about what they're trying to do with Java8. They're not entirely
innocent, mind you--the fact that a Java install tries to monkey with my browser bar
by installing some plugin or other and so on is not something I really appreciate--but
they're not acting like Ming the Merciless, either. Matter of fact, they even seem
to be going out of their way to be community-inclusive, in some circles. I give myself
a "-1" here, and I'm happy to claim it. Good job, guys.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;VMWare/SpringSource will start pushing their cloud solution
in a major way.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Companies like Microsoft and Google are pushing cloud solutions because Software-as-a-Service
is a reoccurring revenue model, generating revenue even in years when the product
hasn't incremented. VMWare, being a product company, is in the same boat--the only
time they make money is when they sell a new copy of their product, unless they can
start pushing their virtualization story onto hardware on behalf of clients--a.k.a.
"the cloud". With SpringSource as the software stack, VMWare has a more-or-less complete
cloud play, so it's surprising that they didn't push it harder in 2011; I suspect
they'll start cramming it down everybody's throats in 2012. Expect to see Rod Johnson
talking a lot about the cloud as a result.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: Again, I give myself a "-1" here, and frankly, I'm shocked to
be doing it. I really thought this one was a no-brainer. CloudFoundry seemed like
a pretty straightforward play, and VMWare already owned a significant share of the
virtualization story, so.... And yet, I really haven't seen much by way of significant
marketing, advertising, or developer outreach around their cloud story. It's much
the same as what it was in 2011; it almost feels like the parent corporation (EMC)
either doesn't "get" why they should push a cloud play, doesn't see it as worth the
cost, or else doesn't care. Count me confused. "0"
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;JavaScript hype will continue to grow, and by years' end
will be at near-backlash levels.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
JavaScript (more properly known as ECMAScript, not that anyone seems to care but me)
is gaining all kinds of steam as a mainstream development language (as opposed to
just-a-browser language), particularly with the release of NodeJS. That hype will
continue to escalate, and by the end of the year we may start to see a backlash against
it. (Speaking personally, NodeJS is an interesting solution, but suggesting that it
will replace your Tomcat or IIS server is a bit far-fetched; event-driven I/O is something
both of those servers have been doing for years, and the rest of it is "just" a language
discussion. We could pretty easily use JavaScript as the development language inside
both servers, as Sun demonstrated years ago with their "Phobos" project--not that
anybody really cared back then.)
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: JavaScript frameworks are exploding everywhere like fireworks
at a Disney theme park. Douglas Crockford is getting more invites to conference keynote
opportunities than James Gosling ever did. You can get a job if you know how to spell
"NodeJS". And yet, I'm starting to hear the same kinds of rumblings about "how in
the hell do we manage a 200K LOC codebase written in JavaScript" that I heard people
gripe about Ruby/Rails a few years ago. If the backlash hasn't started, then it's
right on the cusp. "+1"
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;NoSQL buzz will continue to grow, and by years' end will
start to generate a backlash.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
More and more companies are jumping into NoSQL-based solutions, and this trend will
continue to accelerate, until some extremely public failure will start to generate
a backlash against it. (This seems to be a pattern that shows up with a lot of technologies,
so it seems entirely realistic that it'll happen here, too.) Mind you, I don't mean
to suggest that the backlash will be factual or correct--usually these sorts of things
come from misuing the tool, not from any intrinsic failure in it--but it'll generate
some bad press.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: Recently, I heard that NBC was thinking about starting up a
new comedy series called "Everybody Hates Mongo", with Chris Rock narrating. And I
think that's just the beginning--lots of companies, particularly startups, decided
to run with a NoSQL solution before seriously contemplating how they were going to
make up for the things that a NoSQL doesn't provide (like a schema, for a lot of these),
and suddenly find themselves wishing they had spent a little more time thinking about
that back in the early days. Again, if the backlash isn't already started, it's about
to. "+1"
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;THEN&lt;/strong&gt;: &lt;em&gt;Ted will thoroughly rock the house during his CodeMash
keynote.&lt;/em&gt;
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Yeah, OK, that's more of a fervent wish than a prediction, but hey, keep a positive
attitude and all that, right?
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
&lt;strong&gt;NOW&lt;/strong&gt;: Welllll..... Looking back at it with almost a years' worth of
distance, I can freely admit I dropped a few too many "F"-bombs (a buddy of mine counted
18), but aside from a (very) vocal minority, my takeaway is that a lot of people enjoyed
it. Still, I do wish I'd throttled it back some--InfoQ recorded it, and the fact that
it hasn't yet seen public posting on the website implies (to me) that they found it
too much work to "bleep" out all the naughty words. Which I call "my bad" on, because
I think they were really hoping to use that as part of their promotional activities
(not that they needed it, selling out again in minutes). To all those who found it
distasteful, I apologize, and to those who chafe at the fact that I'm apologizing,
I apologize. I take a "-1" here.
&lt;/p&gt;
&lt;h3 id="predictions"&gt;2013 Predictions:
&lt;/h3&gt;
&lt;p&gt;
Having thus scored myself at a "9" (out of 17) for last year, let's take a stab at
a few for next year:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;"Big data" and "data analytics" will dominate the enterprise landscape.&lt;/strong&gt; I'm
actually pretty late to the ballgame to talk about this one, in fact--it was starting
its rapid climb up the hype wave already this year. And, part and parcel with going
up this end of the hype wave this quickly, it also stands to reason that companies
will start marketing the hell out of the term "big data" without being entirely too
precise about what they mean when they say "big data".... By the end of the year,
people will start building services and/or products on top of Hadoop, which appears
primed to be the "Big Data" platform of choice, thus far.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NoSQL buzz will start to diversify.&lt;/strong&gt; The various "NoSQL" vendors are
going to start wanting to differentiate themselves from each other, and will start
using "NoSQL" in their marketing and advertising talking points less and less. Some
of this will be because Pandora's Box on data storage has already been opened--nobody's
just assuming a relational database all the time, every time, anymore--but some of
this will be because the different NoSQL vendors, who are at different stages in the
adoption curve, will want to differentiate themselves from the vendors that are taking
on the backlash. I predict Mongo, who seems to be leading the way of the NoSQL vendors,
will be the sacrificial scapegoat for a lot of the NoSQL backlash that's coming down
the pike.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Desktops increasingly become niche products.&lt;/strong&gt; Look, does anyone buy
a desktop machine anymore? I have three sitting next to me in my office, and none
of the three has been turned on in probably two years--I'm exclusively laptop-bound
these days. Between tablets as consumption devices (slowly obsoleting the laptop),
and cloud offerings becoming more and more varied (slowly obsoleting the server),
there's just no room for companies that sell desktops--or the various Mom-and-Pop
shops that put them together for you. In fact, I'm starting to wonder if all those
parts I used to buy at Fry's Electronics and swap meets will start to disappear, too.
Gamers keep desktops alive, and I don't know if there's enough money in that world
to keep lots of those vendors alive. (I hope so, but I don't know for sure.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Home servers will start to grow in interest.&lt;/strong&gt; This may seem paradoxical
to the previous point, but I think techno-geek leader-types are going to start looking
into "servers-in-a-box" that they can set up at home and have all their devices sync
to and store to. Sure, all the media will come through there, and the key here will
be "turnkey", since most folks are getting used to machines that "just work". Lots
of friends, for example, seem to be using Mac Minis for exactly this purpose, and
there's a vendor here in Redmond that sells a &lt;a href="http://www.usmicro.com/hot-offers.php"&gt;ridiculously-powered
server in a box&lt;/a&gt; for a couple thousand. (This is on my birthday list, right after
I get my maxed-out 13" MacBook Air and iPad 3.) This is also going to be fueled by...&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Private cloud is going to start getting hot.&lt;/strong&gt; The great advantage
of cloud is that you don't have to have an IT department; the great disadvantage of
cloud is that when things go bad, you don't have an IT department. Too many well-publicized
cloud failures are going to drive corporations to try and find a solution that is
the best-of-both-worlds: the flexibility and resiliency of cloud provisioning, but
staffed by IT resources they can whip and threaten and cajole when things fail. (And,
by the way, I fully understand that most cloud providers have better uptimes than
most private IT organizations--this is about perception and control and the feelings
of powerlessness and helplessness when things go south, not reality.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Oracle will release Java8, and while several Java pundits will decry "it's
not the Java I love!", most will actually come to like it.&lt;/strong&gt; Let's be blunt,
Java has long since moved past being the flower of fancy and a critic's darling, and
it's moved squarely into the battleship-gray of slogging out code and getting line-of-business
apps done. Java8 adopting function literals (aka "closures") and retrofitting the
Collection library to use them will be a subtle, but powerful, extension to the lifetime
of the Java language, but it's never going to be sexy again. Fortunately, it doesn't
need to be.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Microsoft will start courting the .NET developers again.&lt;/strong&gt; Windows8
left a bad impression in the minds of many .NET developers, with the emphasis on HTML/JavaScript
apps and C++ apps, leaving many .NET developers to wonder if they were somehow rendered
obsolete by the new platform. Despite numerous attempts in numerous ways to tell them
no, developers still seem to have that opinion--and Microsoft needs to go on the offensive
to show them that .NET and Windows8 (and WinRT) do, in fact, go very well together.
Microsoft can't afford for their loyal developer community to feel left out or abandoned.
They know that, and they'll start working on it.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Samsung will start pushing themselves further and further into the consumer
market.&lt;/strong&gt; They already have started gathering more and more of a consumer name
for themselves, they just need to solidify their tablet offerings and get closer in
line with either Google (for Android tablets) or even Microsoft (for Windows8 tablets
and/or Surface competitors) to compete with Apple. They may even start looking into
writing their own tablet OS, which would be something of a mistake, but an understandable
one.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Apple's next release cycle will, again, be "more of the same".&lt;/strong&gt; iPhone
6, iPad 4, iPad Mini 2, MacBooks, MacBook Airs, none of them are going to get much
in the way of innovation or new features. Apple is going to run squarely into the
Innovator's Dilemma soon, and their products are going to be "more of the same" for
a while. Incremental improvements along a couple of lines, perhaps, but nothing Earth-shattering.
(Hey, Apple, how about opening up Siri to us to program against, for example, so we
can hook into her command structure and hook our own apps up? I can do that with Android
today, why not her?)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Visual Studio 2014 features will start being discussed at the end of the year.&lt;/strong&gt; If
Microsoft is going to hit their every-two-year-cycle with Visual Studio, then they'll
start talking/whispering/rumoring some of the v.Next features towards the middle to
end of 2013. I fully expect C# 6 will get some form of type providers, Visual Basic
will be a close carbon copy of C# again, and F# 4 will have something completely revolutionary
that anyone who sees it will be like, "Oh, cool! Now, when can I get that in C#?"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scala interest wanes.&lt;/strong&gt; As much as I don't want it to happen, I think
interest in Scala is going to slow down, and possibly regress. This will be the year
that Typesafe needs to make a major splash if they want to show the world that they're
serious, and I don't know that the JVM world is really all that interested in seeing
a new player. Instead, I think Scala will be seen as what "the 1%" of the Java community
uses, and the rest will take some ideas from there and apply them (poorly, perhaps)
to Java.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Interest in native languages will rise.&lt;/strong&gt; Just for kicks, developers
will start experimenting with some of the new compile-to-native-code languages (Go,
Rust, Slate, Haskell, whatever) and start finding some of the joys (and heartaches)
that come with running "on the metal". More importantly, they'll start looking at
ways to use these languages with platforms where running "on the metal" is more important,
like mobile devices and tablets.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
As always, folks, thanks for reading. See you next year.
&lt;/p&gt;
&lt;b&gt;UPDATE:&lt;/b&gt; Two things happened this week (7 Jan 2013) that made me want to add
to this list: 
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Hardware is the new platform.&lt;/strong&gt; A buddy of mine (Scott Davis) pointed
out on a mailing list we share that "hardware is the new platform", and with Microsoft's
Surface out now, there's three major players (Apple, Google, Microsoft) in this game.
It's becoming apparent that more and more companies are starting to see opportunities
in going the Apple route of owning not just the OS and the store, but the hardware
underneath it. More and more companies are going to start playing this game, too,
I think, and we're going to see Amazon take some shots here, and probably a few others.
Of course, already announced is the Ubuntu Phone, and a new Android-like player, &lt;a href="http://www.tizen.org"&gt;Tizen&lt;/a&gt;,
but I'm not thinking about new players--there's always new players--but about some
of the big standouts. And look for companies like Dell and HP to start looking for
ways to play in this game, too, either through partnerships or acquisitions. (Hello,
Oracle, I'm looking at you.... And Adobe, too.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;APIs for lots of things are going to come out.&lt;/strong&gt; Ford &lt;a href="http://techcrunch.com/2013/01/07/ford-launches-open-developer-program-to-let-mobile-apps-interface-with-its-cars/"&gt;just&lt;/a&gt; did &lt;a href="http://developer.ford.com"&gt;this&lt;/a&gt;.
This is not going away--this is going to proliferate. And the startup community is
going to lap it up like kittens attacking a bowl of cream. If you're looking for a
play in the startup world, pursue this.&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=345c85f3-4b46-4757-b204-eb2f63d59eb7" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,345c85f3-4b46-4757-b204-eb2f63d59eb7.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>Azure</category>
      <category>C#</category>
      <category>C++</category>
      <category>Conferences</category>
      <category>Development Processes</category>
      <category>F#</category>
      <category>Flash</category>
      <category>Industry</category>
      <category>iPhone</category>
      <category>Java/J2EE</category>
      <category>Languages</category>
      <category>LLVM</category>
      <category>Mac OS</category>
      <category>Objective-C</category>
      <category>Parrot</category>
      <category>Python</category>
      <category>Reading</category>
      <category>Review</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Security</category>
      <category>Solaris</category>
      <category>Visual Basic</category>
      <category>VMWare</category>
      <category>WCF</category>
      <category>Windows</category>
      <category>XML Services</category>
      <category>XNA</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=b5b18e2a-df88-41ef-bc8b-69b46307e908</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,b5b18e2a-df88-41ef-bc8b-69b46307e908.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,b5b18e2a-df88-41ef-bc8b-69b46307e908.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=b5b18e2a-df88-41ef-bc8b-69b46307e908</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
There's an interesting legal interpretation coming out of the Electronic Freedom Foundation
(EFF) around the <a href="https://www.eff.org/deeplinks/2012/10/governments-attack-cloud-computing">Megaupload
case</a>, and the EFF has said this: 
</p>
        <blockquote> "The government maintains that Mr. Goodwin lost his property rights
in his data by storing it on a cloud computing service. Specifically, the government
argues that both the contract between Megaupload and Mr. Goodwin (a standard cloud
computing contract) and the contract between Megaupload and the server host, Carpathia
(also a standard agreement), "likely limit any property interest he may have" in his
data. (Page 4). If the government is right, no provider can both protect itself against
sudden losses (like those due to a hurricane) and also promise its customers that
their property rights will be maintained when they use the service. Nor can they promise
that their property might not suddenly disappear, with no reasonable way to get it
back if the government comes in with a warrant. Apparently your property rights "become
severely limited" if you allow someone else to host your data under standard cloud
computing arrangements. This argument isn't limited in any way to Megaupload -- it
would apply if the third party host was Amazon's S3 or Google Apps or or Apple iCloud." </blockquote> Now,
one of the participants on the Seattle Tech Startup list, Jonathan Shapiro, wrote
this as an interpretation of the government's brief and the EFF filing: <blockquote><p>
What the government actually says is that the state of Mr. Goodwin's property rights
depends on his agreement with the cloud provider and their agreement with the infrastructure
provider. The question ultimately comes down to: if I upload data onto a machine that
you own, who owns the copy of the data that ends up on your machine? The answer to
that question depends on the agreements involved, which is what the government is
saying. Without reviewing the agreements, it isn't clear if the upload should be thought
of as a loan, a gift, a transfer, or something else.
</p><p>
Lacking any physical embodiment, it is not clear whether the bits comprising these
uploaded digital artifacts constitute property in the traditional sense at all. Even
if they do, the government is arguing that who owns the bits may have nothing to do
with who controls the use of the bits; that the two are separate matters. That's quite
standard: your decision to buy a book from the bookstore conveys ownership to you,
but does not give you the right to make further copies of the book. Once a copy of
the data leaves the possession of Mr. Goodwin, the constraints on its use are determined
by copyright law and license terms. The agreement between Goodwin and the cloud provider
clearly narrows the copyright-driven constraints, because the cloud provider has to
be able to make copies to provide their services, and has surely placed terms that
permit this in their user agreement. The consequences for ownership are unclear. In
particular: if the cloud provider (as opposed to Mr. Goodwin) makes an authorized
copy of Goodwin's data in the course of their operations, using only the resources
of the cloud provider, the ownership of that copy doesn't seem obvious at all. A license
may exist requiring that copy to be destroyed under certain circumstances (e.g. if
Mr. Goodwin terminates his contract), but that doesn't speak to ownership of the copy.
</p><p>
Because no sale has occurred, and there was clearly no intent to cede ownership, the
Government's challenge concerning ownership has the feel of violating common sense.
If you share that feeling, welcome to the world of intellectual property law. But
while everyone is looking at the negative side of this argument, it's worth considering
that there may be positive consequences of the Government's argument. In Germany,
for example, software is property. It is illegal (or at least unenforceable) to write
a software license in Germany that stops me from selling my copy of a piece of software
to my friend, so long as I remove it from my machine. A copy of a work of software
can be resold in the same way that a book can be resold because it is property. At
present, the provisions of UCITA in the U.S. have the effect that you do not own a
work of software that you buy. If the district court in Virginia determines that a
recipient has property rights in a copy of software that they receive, that could
have far-reaching consequences, possibly including a consequent right of resale in
the United States.
</p></blockquote><p>
Now, whether or not Jon's interpretation is correct, there are some huge legal implications
of this interpretation of the cloud, because data "ownership" is going to be the defining
legal issue of the next century.
</p><img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=b5b18e2a-df88-41ef-bc8b-69b46307e908" /><br /><hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>Cloud legal</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,b5b18e2a-df88-41ef-bc8b-69b46307e908.aspx</guid>
      <link>http://blogs.tedneward.com/2012/11/03/Cloud+Legal.aspx</link>
      <pubDate>Sat, 03 Nov 2012 07:14:40 GMT</pubDate>
      <description>&lt;p&gt;
There's an interesting legal interpretation coming out of the Electronic Freedom Foundation
(EFF) around the &lt;a href="https://www.eff.org/deeplinks/2012/10/governments-attack-cloud-computing"&gt;Megaupload
case&lt;/a&gt;, and the EFF has said this: &lt;blockquote&gt; "The government maintains that Mr.
Goodwin lost his property rights in his data by storing it on a cloud computing service.
Specifically, the government argues that both the contract between Megaupload and
Mr. Goodwin (a standard cloud computing contract) and the contract between Megaupload
and the server host, Carpathia (also a standard agreement), "likely limit any property
interest he may have" in his data. (Page 4). If the government is right, no provider
can both protect itself against sudden losses (like those due to a hurricane) and
also promise its customers that their property rights will be maintained when they
use the service. Nor can they promise that their property might not suddenly disappear,
with no reasonable way to get it back if the government comes in with a warrant. Apparently
your property rights "become severely limited" if you allow someone else to host your
data under standard cloud computing arrangements. This argument isn't limited in any
way to Megaupload -- it would apply if the third party host was Amazon's S3 or Google
Apps or or Apple iCloud." &lt;/blockquote&gt; Now, one of the participants on the Seattle
Tech Startup list, Jonathan Shapiro, wrote this as an interpretation of the government's
brief and the EFF filing: &lt;blockquote&gt; 
&lt;p&gt;
What the government actually says is that the state of Mr. Goodwin's property rights
depends on his agreement with the cloud provider and their agreement with the infrastructure
provider. The question ultimately comes down to: if I upload data onto a machine that
you own, who owns the copy of the data that ends up on your machine? The answer to
that question depends on the agreements involved, which is what the government is
saying. Without reviewing the agreements, it isn't clear if the upload should be thought
of as a loan, a gift, a transfer, or something else.
&lt;/p&gt;
&lt;p&gt;
Lacking any physical embodiment, it is not clear whether the bits comprising these
uploaded digital artifacts constitute property in the traditional sense at all. Even
if they do, the government is arguing that who owns the bits may have nothing to do
with who controls the use of the bits; that the two are separate matters. That's quite
standard: your decision to buy a book from the bookstore conveys ownership to you,
but does not give you the right to make further copies of the book. Once a copy of
the data leaves the possession of Mr. Goodwin, the constraints on its use are determined
by copyright law and license terms. The agreement between Goodwin and the cloud provider
clearly narrows the copyright-driven constraints, because the cloud provider has to
be able to make copies to provide their services, and has surely placed terms that
permit this in their user agreement. The consequences for ownership are unclear. In
particular: if the cloud provider (as opposed to Mr. Goodwin) makes an authorized
copy of Goodwin's data in the course of their operations, using only the resources
of the cloud provider, the ownership of that copy doesn't seem obvious at all. A license
may exist requiring that copy to be destroyed under certain circumstances (e.g. if
Mr. Goodwin terminates his contract), but that doesn't speak to ownership of the copy.
&lt;/p&gt;
&lt;p&gt;
Because no sale has occurred, and there was clearly no intent to cede ownership, the
Government's challenge concerning ownership has the feel of violating common sense.
If you share that feeling, welcome to the world of intellectual property law. But
while everyone is looking at the negative side of this argument, it's worth considering
that there may be positive consequences of the Government's argument. In Germany,
for example, software is property. It is illegal (or at least unenforceable) to write
a software license in Germany that stops me from selling my copy of a piece of software
to my friend, so long as I remove it from my machine. A copy of a work of software
can be resold in the same way that a book can be resold because it is property. At
present, the provisions of UCITA in the U.S. have the effect that you do not own a
work of software that you buy. If the district court in Virginia determines that a
recipient has property rights in a copy of software that they receive, that could
have far-reaching consequences, possibly including a consequent right of resale in
the United States.
&lt;/p&gt;
&lt;/blockquote&gt; &gt;
&lt;p&gt;
Now, whether or not Jon's interpretation is correct, there are some huge legal implications
of this interpretation of the cloud, because data "ownership" is going to be the defining
legal issue of the next century.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=b5b18e2a-df88-41ef-bc8b-69b46307e908" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,b5b18e2a-df88-41ef-bc8b-69b46307e908.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>Azure</category>
      <category>C#</category>
      <category>C++</category>
      <category>Conferences</category>
      <category>Development Processes</category>
      <category>F#</category>
      <category>Flash</category>
      <category>Industry</category>
      <category>iPhone</category>
      <category>Java/J2EE</category>
      <category>Languages</category>
      <category>LLVM</category>
      <category>Mac OS</category>
      <category>Objective-C</category>
      <category>Parrot</category>
      <category>Personal</category>
      <category>Python</category>
      <category>Reading</category>
      <category>Review</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Security</category>
      <category>Social</category>
      <category>Solaris</category>
      <category>Visual Basic</category>
      <category>VMWare</category>
      <category>WCF</category>
      <category>Windows</category>
      <category>XML Services</category>
      <category>XNA</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=f44464e7-e656-41ef-bfb5-2b3df43ffaff</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,f44464e7-e656-41ef-bfb5-2b3df43ffaff.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,f44464e7-e656-41ef-bfb5-2b3df43ffaff.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=f44464e7-e656-41ef-bfb5-2b3df43ffaff</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I received an email from Dimitar Teykiyski a few days ago, asking if he could translate
the "Vietnam of Computer Science" essay into Bulgarian, and no sooner had I replied
in the affirmative than he sent me <a href="http://openspacelands.com/vietnam-computer-science/">the
link to it</a>. If you're Bulgarian, enjoy. I'll try to make a few moments to put
the link to the translation directly on the original blog post itself, but it'll take
a little bit--I have a few other things higher up in the priority queue. (And somebody
please tell me how to say "Thank you" in Bulgarian, so I may do that right for Dimitar?)
</p>
        <img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=f44464e7-e656-41ef-bfb5-2b3df43ffaff" />
        <br />
        <hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>Vietnam... in Bulgarian</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,f44464e7-e656-41ef-bfb5-2b3df43ffaff.aspx</guid>
      <link>http://blogs.tedneward.com/2012/11/01/Vietnam+In+Bulgarian.aspx</link>
      <pubDate>Thu, 01 Nov 2012 23:17:58 GMT</pubDate>
      <description>&lt;p&gt;
I received an email from Dimitar Teykiyski a few days ago, asking if he could translate
the "Vietnam of Computer Science" essay into Bulgarian, and no sooner had I replied
in the affirmative than he sent me &lt;a href="http://openspacelands.com/vietnam-computer-science/"&gt;the
link to it&lt;/a&gt;. If you're Bulgarian, enjoy. I'll try to make a few moments to put
the link to the translation directly on the original blog post itself, but it'll take
a little bit--I have a few other things higher up in the priority queue. (And somebody
please tell me how to say "Thank you" in Bulgarian, so I may do that right for Dimitar?)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=f44464e7-e656-41ef-bfb5-2b3df43ffaff" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,f44464e7-e656-41ef-bfb5-2b3df43ffaff.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>C#</category>
      <category>Conferences</category>
      <category>Development Processes</category>
      <category>F#</category>
      <category>Industry</category>
      <category>Java/J2EE</category>
      <category>Languages</category>
      <category>Objective-C</category>
      <category>Python</category>
      <category>Reading</category>
      <category>Review</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Visual Basic</category>
      <category>WCF</category>
      <category>XML Services</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=72f35f2a-2a8c-4b0e-a6db-6c31c81fc2db</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,72f35f2a-2a8c-4b0e-a6db-6c31c81fc2db.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,72f35f2a-2a8c-4b0e-a6db-6c31c81fc2db.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=72f35f2a-2a8c-4b0e-a6db-6c31c81fc2db</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Two things conspire to bring you this blog post.
</p>
        <h2>
        </h2>
        <h2>Of Contracts and Contracts
</h2>
        <p>
First, a few months ago, I was asked to participate in an architectural review for
a project being done for one of the states here in the US. It was a project dealing
with some sensitive information (Child Welfare Services), and I was required to sign
a document basically promising not to do anything bad with the data. Not a problem
to sign, since I was going to be more focused on the architecture and code anyway,
and would stay away from the production servers and data as much as I possibly could.
But then the state agency asked for my social security number, and when I pushed back
asking why, they told me it was “mandatory” in order to work on the project. I suspect
it was for a background check—but when I asked how long they were going to hold on
to the number and what their privacy policy was regarding my data, they refused to
answer, and I never heard from them again. Which, quite frankly, was something of
a relief.
</p>
        <p>
Second, just tonight there was a thread on the Seattle Tech Startup mailing list about
SSNs again. This time, a contractor who participates on the list was being asked by
the contracting agency for his SSN, not for any tax document form, but… just because.
This sounded fishy. It turned out that the contract was going to be with AT&amp;T,
and that they commonly use a contractor’s SSN as a way of identifying the contractor
in their vendor database. It was also noted that many companies do this, and that
it was likely that many more would do so in the future. One poster pointed out that
when the state’s attorney general’s office was contacted about this practice, it isn’t
illegal.
</p>
        <p>
Folks, this practice has to stop. For both your sake, and the company’s.
</p>
        <h2>
        </h2>
        <h2>
        </h2>
        <h2>Of Data and Integrity
</h2>
        <p>
Using SSNs in your database is just a bad idea from top to bottom. For starters, it
makes your otherwise-unassuming enterprise application a ripe target for hackers,
who seek to gather legitimate SSNs as part of the digital fingerprinting of potential
victims for identity theft. What’s worse, any time I’ve ever seen any company store
the SSNs, they’re almost always stored in plaintext form (“These aren’t credit cards!”),
and they’re often used as a primary key to uniquely identify individuals.
</p>
        <p>
There’s so many things wrong with this idea from a data management perspective, it’s
shameful.
</p>
        <ul>
          <li>
            <strong>SSNs were never intended for identification purposes.</strong> Yeah, this
is a weak argument now, given all the <em>de facto</em> uses to which they are put
already, but when FDR passed the Social Security program back in the 30s, he promised
the country that they would never be used for identification purposes. This is, in
fact, why the card reads “This number not to be used for identification purposes”
across the bottom. Granted, every financial institution with whom I’ve ever done business
has ignored that promise for as long as I’ve been alive, but that doesn’t strike me
as a reason to continue doing so.</li>
          <li>
            <strong>SSNs are not unique.</strong> There’s rumors of two different people being
issued the same SSN, and while I can’t confirm or deny this based on personal experience,
it doesn’t take a rocket scientist to figure out that if there are 300 million people
living in the US, and the SSN is a nine-digit number, that means that there are 999,999,999
potential numbers in the best case (which isn’t possible, because the first three
digits are a stratification mechanism—for example, California-issued numbers are generally
in the 5xx range, while East Coast-issued numbers are in the 0xx range). What I can
say for certain is that SSNs are, in fact, recycled—so your new baby may (and very
likely will) end up with some recently-deceased individual’s SSN. As we start to see
databases extending to a second and possibly even third generation of individuals,
these kinds of conflicts are going to become even more common. As US population continues
to rise, and immigration brings even more people into the country to work, how soon
before we start seeing the US government sweat the problems associated with trying
to go to a 10- or 11-digit SSN? It’s going to make the IPv4 and IPv6 problems look
trivial by comparison. (Look for that to be the moment when the US government formally
adopts a hexadecimal system for SSNs.)</li>
          <li>
            <strong>SSNs are sensitive data.</strong> You knew this already. But what you may
not realize is that data not only has a tendency to escape the organization that gathered
it (databases are often sold, acquired, or stolen), but that said data frequently
lives far, far longer than it needs to. Look around in your own company—how many databases
are still online, in use, even though the data isn’t really relevant anymore, just
because “there’s no cost to keeping it”? More importantly, companies are increasingly
being held accountable for sensitive information breaches, and it’s just a matter
of time before a creative lawyer seeking to tap into the public’s sensitivities to
things they don’t understand leads him/her takes a company to court, suing them for
damages for such a breach. And there’s very likely more than a few sympathetic judges
in the country to the idea. Do you really want to be hauled up on the witness stand
to defend your use of the SSN in your database?</li>
        </ul>
        <p>
Given that SSNs aren’t unique, and therefore fail as their primary purpose in a data
management scheme, and that they represent a huge liability because of their sensitive
nature, why on earth would you want them in your database?
</p>
        <h2>A Call
</h2>
        <p>
But more importantly, companies aren’t going to stop using them for these kinds of
purposes until we <em>make</em> them stop. Any time a company asks you for your SSN,
challenge them. Ask them why they need it, if the transaction can be completed without
it, and if they insist on having it, a formal declaration of their sensitive information
policy and what kind of notification and compensation you can expect when they suffer
a sensitive data breach. It may take a while to find somebody within the company who
can answer your questions at the places that legitimately need the information, but
you’ll get there eventually. And for the rest of the companies that gather it “just
in case”, well, if it starts turning into a huge PITA to get them, they’ll find other
ways to figure out who you are.
</p>
        <p>
This is a call to arms, folks: Just say NO to handing over your SSN.
</p>
        <img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=72f35f2a-2a8c-4b0e-a6db-6c31c81fc2db" />
        <br />
        <hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>Just Say No to SSNs</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,72f35f2a-2a8c-4b0e-a6db-6c31c81fc2db.aspx</guid>
      <link>http://blogs.tedneward.com/2012/03/17/Just+Say+No+To+SSNs.aspx</link>
      <pubDate>Sat, 17 Mar 2012 06:10:49 GMT</pubDate>
      <description>&lt;p&gt;
Two things conspire to bring you this blog post.
&lt;/p&gt;
&lt;h2&gt;
&lt;/h2&gt;
&lt;h2&gt;Of Contracts and Contracts
&lt;/h2&gt;
&lt;p&gt;
First, a few months ago, I was asked to participate in an architectural review for
a project being done for one of the states here in the US. It was a project dealing
with some sensitive information (Child Welfare Services), and I was required to sign
a document basically promising not to do anything bad with the data. Not a problem
to sign, since I was going to be more focused on the architecture and code anyway,
and would stay away from the production servers and data as much as I possibly could.
But then the state agency asked for my social security number, and when I pushed back
asking why, they told me it was “mandatory” in order to work on the project. I suspect
it was for a background check—but when I asked how long they were going to hold on
to the number and what their privacy policy was regarding my data, they refused to
answer, and I never heard from them again. Which, quite frankly, was something of
a relief.
&lt;/p&gt;
&lt;p&gt;
Second, just tonight there was a thread on the Seattle Tech Startup mailing list about
SSNs again. This time, a contractor who participates on the list was being asked by
the contracting agency for his SSN, not for any tax document form, but… just because.
This sounded fishy. It turned out that the contract was going to be with AT&amp;amp;T,
and that they commonly use a contractor’s SSN as a way of identifying the contractor
in their vendor database. It was also noted that many companies do this, and that
it was likely that many more would do so in the future. One poster pointed out that
when the state’s attorney general’s office was contacted about this practice, it isn’t
illegal.
&lt;/p&gt;
&lt;p&gt;
Folks, this practice has to stop. For both your sake, and the company’s.
&lt;/p&gt;
&lt;h2&gt;
&lt;/h2&gt;
&lt;h2&gt;
&lt;/h2&gt;
&lt;h2&gt;Of Data and Integrity
&lt;/h2&gt;
&lt;p&gt;
Using SSNs in your database is just a bad idea from top to bottom. For starters, it
makes your otherwise-unassuming enterprise application a ripe target for hackers,
who seek to gather legitimate SSNs as part of the digital fingerprinting of potential
victims for identity theft. What’s worse, any time I’ve ever seen any company store
the SSNs, they’re almost always stored in plaintext form (“These aren’t credit cards!”),
and they’re often used as a primary key to uniquely identify individuals.
&lt;/p&gt;
&lt;p&gt;
There’s so many things wrong with this idea from a data management perspective, it’s
shameful.
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;SSNs were never intended for identification purposes.&lt;/strong&gt; Yeah, this
is a weak argument now, given all the &lt;em&gt;de facto&lt;/em&gt; uses to which they are put
already, but when FDR passed the Social Security program back in the 30s, he promised
the country that they would never be used for identification purposes. This is, in
fact, why the card reads “This number not to be used for identification purposes”
across the bottom. Granted, every financial institution with whom I’ve ever done business
has ignored that promise for as long as I’ve been alive, but that doesn’t strike me
as a reason to continue doing so.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SSNs are not unique.&lt;/strong&gt; There’s rumors of two different people being
issued the same SSN, and while I can’t confirm or deny this based on personal experience,
it doesn’t take a rocket scientist to figure out that if there are 300 million people
living in the US, and the SSN is a nine-digit number, that means that there are 999,999,999
potential numbers in the best case (which isn’t possible, because the first three
digits are a stratification mechanism—for example, California-issued numbers are generally
in the 5xx range, while East Coast-issued numbers are in the 0xx range). What I can
say for certain is that SSNs are, in fact, recycled—so your new baby may (and very
likely will) end up with some recently-deceased individual’s SSN. As we start to see
databases extending to a second and possibly even third generation of individuals,
these kinds of conflicts are going to become even more common. As US population continues
to rise, and immigration brings even more people into the country to work, how soon
before we start seeing the US government sweat the problems associated with trying
to go to a 10- or 11-digit SSN? It’s going to make the IPv4 and IPv6 problems look
trivial by comparison. (Look for that to be the moment when the US government formally
adopts a hexadecimal system for SSNs.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SSNs are sensitive data.&lt;/strong&gt; You knew this already. But what you may
not realize is that data not only has a tendency to escape the organization that gathered
it (databases are often sold, acquired, or stolen), but that said data frequently
lives far, far longer than it needs to. Look around in your own company—how many databases
are still online, in use, even though the data isn’t really relevant anymore, just
because “there’s no cost to keeping it”? More importantly, companies are increasingly
being held accountable for sensitive information breaches, and it’s just a matter
of time before a creative lawyer seeking to tap into the public’s sensitivities to
things they don’t understand leads him/her takes a company to court, suing them for
damages for such a breach. And there’s very likely more than a few sympathetic judges
in the country to the idea. Do you really want to be hauled up on the witness stand
to defend your use of the SSN in your database?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Given that SSNs aren’t unique, and therefore fail as their primary purpose in a data
management scheme, and that they represent a huge liability because of their sensitive
nature, why on earth would you want them in your database?
&lt;/p&gt;
&lt;h2&gt;A Call
&lt;/h2&gt;
&lt;p&gt;
But more importantly, companies aren’t going to stop using them for these kinds of
purposes until we &lt;em&gt;make&lt;/em&gt; them stop. Any time a company asks you for your SSN,
challenge them. Ask them why they need it, if the transaction can be completed without
it, and if they insist on having it, a formal declaration of their sensitive information
policy and what kind of notification and compensation you can expect when they suffer
a sensitive data breach. It may take a while to find somebody within the company who
can answer your questions at the places that legitimately need the information, but
you’ll get there eventually. And for the rest of the companies that gather it “just
in case”, well, if it starts turning into a huge PITA to get them, they’ll find other
ways to figure out who you are.
&lt;/p&gt;
&lt;p&gt;
This is a call to arms, folks: Just say NO to handing over your SSN.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=72f35f2a-2a8c-4b0e-a6db-6c31c81fc2db" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,72f35f2a-2a8c-4b0e-a6db-6c31c81fc2db.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>Azure</category>
      <category>C#</category>
      <category>C++</category>
      <category>Conferences</category>
      <category>Development Processes</category>
      <category>F#</category>
      <category>Flash</category>
      <category>Industry</category>
      <category>iPhone</category>
      <category>Java/J2EE</category>
      <category>Languages</category>
      <category>LLVM</category>
      <category>Mac OS</category>
      <category>Objective-C</category>
      <category>Parrot</category>
      <category>Personal</category>
      <category>Python</category>
      <category>Reading</category>
      <category>Review</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Security</category>
      <category>Social</category>
      <category>Solaris</category>
      <category>Visual Basic</category>
      <category>VMWare</category>
      <category>WCF</category>
      <category>Windows</category>
      <category>XML Services</category>
      <category>XNA</category>
    </item>
    <item>
      <trackback:ping>http://blogs.tedneward.com/Trackback.aspx?guid=7f11e9b5-3ac6-417e-83c5-c3461497270f</trackback:ping>
      <pingback:server>http://blogs.tedneward.com/pingback.aspx</pingback:server>
      <pingback:target>http://blogs.tedneward.com/PermaLink,guid,7f11e9b5-3ac6-417e-83c5-c3461497270f.aspx</pingback:target>
      <dc:creator>Ted Neward</dc:creator>
      <wfw:comment>http://blogs.tedneward.com/CommentView,guid,7f11e9b5-3ac6-417e-83c5-c3461497270f.aspx</wfw:comment>
      <wfw:commentRss>http://blogs.tedneward.com/SyndicationService.asmx/GetEntryCommentsRss?guid=7f11e9b5-3ac6-417e-83c5-c3461497270f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://news.cnet.com/8301-27080_3-57389046-245/why-the-security-industry-never-actually-makes-us-secure/?tag=mncol;mlt_related" target="_blank">This
CNET report</a> tells us what we’ve probably known for a few years now: in the hacker/securist
cyberwar, the hackers are winning. Or at the very least, making it pretty apparent
that the cybersecurity companies aren’t making much headway.
</p>
        <p>
Notable quotes from the article:
</p>
        <blockquote>
          <p>
Art Coviello, executive chairman of RSA, at least had the presence of mind to be humble,
acknowledging in his keynote that current "security models" are inadequate.
Yet he couldn't help but lapse into rah-rah boosterism by the end of his speech. "Never
have so many companies been under attack, including RSA," he said. "Together
we can learn from these experiences and emerge from this hell, smarter and stronger
than we were before." 
<br />
Really? History would suggest otherwise. Instead of finally locking down our data
and fencing out the shadowy forces who want to steal our identities, the security
industry is almost certain to present us with more warnings of newer and scarier threats
and bigger, more dangerous break-ins and data compromises and new products that are
quickly outdated. Lather, rinse, repeat.
</p>
          <p>
The industry's sluggishness is enough to breed pervasive cynicism in some quarters.
Critics like [Josh Corman, director of security intelligence at Akamai] are quick
to note that if security vendors really could do what they promise, they'd simply
put themselves out of business. "The security industry is not about securing
you; it's about making money," Corman says. "Minimum investment to get maximum
revenue."
</p>
          <p>
Getting companies to devote time and money to adequately address their security issues
is particularly difficult because they often don't think there's a problem until they've
been compromised. And for some, too much knowledge can be a bad thing. "Part
of the problem might be plausible deniability, that if the company finds something,
there will be an SEC filing requirement," Landesman said.
</p>
        </blockquote>
        <p>
The most important quote in the whole piece?
</p>
        <blockquote>
          <p>
Of course, it would help if software in general was less buggy. Some security experts
are pushing for a more proactive approach to security much like preventative medicine
can help keep you healthy. The more secure the software code, the fewer bugs and the
less chance of attackers getting in.
</p>
          <p>
"Most of RSA, especially on the trade show floor, is reactive security and the
idea behind that is protect broken stuff from the bad people," said Gary McGraw,
chief technology officer at Cigital. "But that hasn't been working very well.
It's like a hamster wheel."
</p>
        </blockquote>
        <p>
(Fair disclosure in the interests of journalistic integrity: Gary is something of
a friend; we’ve exchanged emails, met at SDWest many years ago, and Gary tried to
recruit me to write a book in his Software Security book series with Addison-Wesley.
His voice is one of the few that I trust implicitly when it comes to software security.)
</p>
        <p>
Next time the company director, CEO/CTO or VP wants you to choose “faster” and “cheaper”
and leave out “better” in the “better, faster, cheaper” triad, point out to them that
“worse” (the opposite of “better”) often translates into “insecure”, and that in turn
puts the company in a hugely vulnerable spot. Remember, even if the application under
question, or its data, aren’t obvious targets for hackers, you’re still a target—getting
access to the server can act as a springboard to attack other servers, and/or use
the data stored in your database as a springboard to attack other servers. Remember,
it’s very common for users to reuse passwords across systems—obtaining the passwords
to your app can in turn lead to easy access to the more sensitive data.
</p>
        <p>
And folks, let’s not kid ourselves. That quote back there about “SEC filing requirement”s?
If CEOs and CTOs are required to file with the SEC, it’s only a matter of time before
one of them gets the bright idea to point the finger at the people who built the system
as the culprits. (Don’t think it’s possible? All it takes is one case, one jury, in
one highly business-friendly judicial arena, and suddenly precedent is set and it
becomes vastly easier to pursue all over the country.)
</p>
        <p>
Anybody interested in creating an anonymous cybersecurity whisteblowing service?
</p>
        <img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=7f11e9b5-3ac6-417e-83c5-c3461497270f" />
        <br />
        <hr />
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. <a href="mailto:ted@tedneward.com">Contact
me for details</a>.</body>
      <title>Want Security? Get Quality</title>
      <guid isPermaLink="false">http://blogs.tedneward.com/PermaLink,guid,7f11e9b5-3ac6-417e-83c5-c3461497270f.aspx</guid>
      <link>http://blogs.tedneward.com/2012/03/04/Want+Security+Get+Quality.aspx</link>
      <pubDate>Sun, 04 Mar 2012 06:53:08 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://news.cnet.com/8301-27080_3-57389046-245/why-the-security-industry-never-actually-makes-us-secure/?tag=mncol;mlt_related" target="_blank"&gt;This
CNET report&lt;/a&gt; tells us what we’ve probably known for a few years now: in the hacker/securist
cyberwar, the hackers are winning. Or at the very least, making it pretty apparent
that the cybersecurity companies aren’t making much headway.
&lt;/p&gt;
&lt;p&gt;
Notable quotes from the article:
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Art Coviello, executive chairman of RSA, at least had the presence of mind to be humble,
acknowledging in his keynote that current &amp;quot;security models&amp;quot; are inadequate.
Yet he couldn't help but lapse into rah-rah boosterism by the end of his speech. &amp;quot;Never
have so many companies been under attack, including RSA,&amp;quot; he said. &amp;quot;Together
we can learn from these experiences and emerge from this hell, smarter and stronger
than we were before.&amp;quot; 
&lt;br /&gt;
Really? History would suggest otherwise. Instead of finally locking down our data
and fencing out the shadowy forces who want to steal our identities, the security
industry is almost certain to present us with more warnings of newer and scarier threats
and bigger, more dangerous break-ins and data compromises and new products that are
quickly outdated. Lather, rinse, repeat.
&lt;/p&gt;
&lt;p&gt;
The industry's sluggishness is enough to breed pervasive cynicism in some quarters.
Critics like [Josh Corman, director of security intelligence at Akamai] are quick
to note that if security vendors really could do what they promise, they'd simply
put themselves out of business. &amp;quot;The security industry is not about securing
you; it's about making money,&amp;quot; Corman says. &amp;quot;Minimum investment to get maximum
revenue.&amp;quot;
&lt;/p&gt;
&lt;p&gt;
Getting companies to devote time and money to adequately address their security issues
is particularly difficult because they often don't think there's a problem until they've
been compromised. And for some, too much knowledge can be a bad thing. &amp;quot;Part
of the problem might be plausible deniability, that if the company finds something,
there will be an SEC filing requirement,&amp;quot; Landesman said.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
The most important quote in the whole piece?
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Of course, it would help if software in general was less buggy. Some security experts
are pushing for a more proactive approach to security much like preventative medicine
can help keep you healthy. The more secure the software code, the fewer bugs and the
less chance of attackers getting in.
&lt;/p&gt;
&lt;p&gt;
&amp;quot;Most of RSA, especially on the trade show floor, is reactive security and the
idea behind that is protect broken stuff from the bad people,&amp;quot; said Gary McGraw,
chief technology officer at Cigital. &amp;quot;But that hasn't been working very well.
It's like a hamster wheel.&amp;quot;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
(Fair disclosure in the interests of journalistic integrity: Gary is something of
a friend; we’ve exchanged emails, met at SDWest many years ago, and Gary tried to
recruit me to write a book in his Software Security book series with Addison-Wesley.
His voice is one of the few that I trust implicitly when it comes to software security.)
&lt;/p&gt;
&lt;p&gt;
Next time the company director, CEO/CTO or VP wants you to choose “faster” and “cheaper”
and leave out “better” in the “better, faster, cheaper” triad, point out to them that
“worse” (the opposite of “better”) often translates into “insecure”, and that in turn
puts the company in a hugely vulnerable spot. Remember, even if the application under
question, or its data, aren’t obvious targets for hackers, you’re still a target—getting
access to the server can act as a springboard to attack other servers, and/or use
the data stored in your database as a springboard to attack other servers. Remember,
it’s very common for users to reuse passwords across systems—obtaining the passwords
to your app can in turn lead to easy access to the more sensitive data.
&lt;/p&gt;
&lt;p&gt;
And folks, let’s not kid ourselves. That quote back there about “SEC filing requirement”s?
If CEOs and CTOs are required to file with the SEC, it’s only a matter of time before
one of them gets the bright idea to point the finger at the people who built the system
as the culprits. (Don’t think it’s possible? All it takes is one case, one jury, in
one highly business-friendly judicial arena, and suddenly precedent is set and it
becomes vastly easier to pursue all over the country.)
&lt;/p&gt;
&lt;p&gt;
Anybody interested in creating an anonymous cybersecurity whisteblowing service?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blogs.tedneward.com/aggbug.ashx?id=7f11e9b5-3ac6-417e-83c5-c3461497270f" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Enterprise consulting, mentoring or instruction. Java, C++, .NET or XML services.
1-day or multi-day workshops available. &lt;a href="mailto:ted@tedneward.com"&gt;Contact
me for details&lt;/a&gt;.</description>
      <comments>http://blogs.tedneward.com/CommentView,guid,7f11e9b5-3ac6-417e-83c5-c3461497270f.aspx</comments>
      <category>.NET</category>
      <category>Android</category>
      <category>Azure</category>
      <category>C#</category>
      <category>C++</category>
      <category>F#</category>
      <category>Flash</category>
      <category>Industry</category>
      <category>iPhone</category>
      <category>Java/J2EE</category>
      <category>LLVM</category>
      <category>Mac OS</category>
      <category>Objective-C</category>
      <category>Parrot</category>
      <category>Python</category>
      <category>Ruby</category>
      <category>Scala</category>
      <category>Security</category>
      <category>Solaris</category>
      <category>Visual Basic</category>
      <category>WCF</category>
      <category>Windows</category>
      <category>XML Services</category>
    </item>
  </channel>
</rss>