<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>Syringe.Net.Nz</title>
  <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/" />
  <link rel="self" href="http://www.syringe.net.nz/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2008-07-09T07:52:38.93725+12:00</updated>
  <author>
    <name>Chris J.T. Auld</name>
  </author>
  <subtitle>Irregular Injection Of Opinion</subtitle>
  <id>http://www.syringe.net.nz/</id>
  <generator uri="http://www.dasblog.net" version="2.0.7180.0">DasBlog</generator>
  <entry>
    <title>Controlling the update order in T-SQL on SQL Server 2005</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/07/08/ControllingTheUpdateOrderInTSQLOnSQLServer2005.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,4795ce5a-c373-4e69-9141-dfe8924f3420.aspx</id>
    <published>2008-07-08T21:12:25.515+12:00</published>
    <updated>2008-07-08T21:14:04.984125+12:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.syringe.net.nz/CategoryView,category,.NET.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Sometimes you just want to do this
</p>
        <p>
          <em>update foo set bar=123 order by foo.lastmodifiedtimestamp</em>
        </p>
        <p>
Why.... well you may rely on the order of the timestamp.
</p>
        <p>
It's suprprisingly hard to do but is possible using CTEs.
</p>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">
            <p>
WITH
</p>
          </font>
        </font>
        <font color="#000000" size="2"> InvoicesNumbered </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">AS
</font>
        </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">
            <p>
(
</p>
          </font>
        </font>
        <font size="2">
          <p>
          </p>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">SELECT</font>
        </font>
        <font size="2">
        </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">*,</font>
        </font>
        <font size="2">
        </font>
        <font color="#ff00ff" size="2">
          <font color="#ff00ff" size="2">ROW_NUMBER</font>
        </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">()</font>
        </font>
        <font size="2">
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">OVER</font>
        </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">(</font>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">ORDER</font>
        </font>
        <font size="2">
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">BY</font>
        </font>
        <font size="2"> LastModifiedTimestamp </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">desc</font>
        </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">)</font>
        </font>
        <font size="2">
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">AS</font>
        </font>
        <font size="2"> RowNum
<p></p></font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">FROM</font>
        </font>
        <font size="2"> Invoice
</font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">
            <p>
)
</p>
          </font>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">
            <p>
UPDATE
</p>
          </font>
        </font>
        <font size="2">
          <font color="#000000"> InvoicesNumbered </font>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">
            <p>
set
</p>
          </font>
        </font>
        <font color="#000000" size="2"> createdby </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">=</font>
        </font>
        <font size="2">
          <font color="#000000">
          </font>
        </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">
            <p>
(
</p>
          </font>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">select</font>
        </font>
        <font color="#000000" size="2">
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">top</font>
        </font>
        <font color="#000000" size="2"> 1
userID </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">from</font>
        </font>
        <font color="#000000" size="2"> [user] </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">where</font>
        </font>
        <font color="#000000" size="2"> clientid </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">=</font>
        </font>
        <font color="#000000" size="2"> InvoicesNumbered </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">.</font>
        </font>
        <font color="#000000" size="2">invoiceclientid</font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">)
</font>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">
            <p>
WHERE
</p>
          </font>
        </font>
        <font color="#000000" size="2"> RowNum </font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">&lt;</font>
        </font>
        <font color="#000000" size="2"> 20000</font>
        <font color="#808080" size="2">
          <font color="#808080" size="2">;
--Use a number larger than the row count of the table.</font>
        </font>
        <p>
          <font color="#808080" size="2">
            <font color="#808080" size="2">Idea pinched from <a href="http://www.sqlmag.com/Article/ArticleID/49240/sql_server_49240.html">here</a>.
Reposted in search of better Live Search ranking for the obvious search query 'controlling
update order in SQL Server'
</font>
          </font>
        </p>
        <img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=4795ce5a-c373-4e69-9141-dfe8924f3420" />
      </div>
    </content>
  </entry>
  <entry>
    <title>iPhone Buyers</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/07/08/iPhoneBuyers.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,b399a24b-91ce-4ecd-a89b-b19d69b73903.aspx</id>
    <published>2008-07-08T19:06:32.937+12:00</published>
    <updated>2008-07-09T07:52:38.93725+12:00</updated>
    <category term="Toy Box" label="Toy Box" scheme="http://www.syringe.net.nz/CategoryView,category,Toy%2BBox.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Watching tonight it seems that only poor, illiterate, ugly fatties are interested
in buying iPhones.
</p>
        <p>
I'm sorry but harden the ^%%*&amp; up. 
</p>
        <p>
Pony up the cash or stop bleating.
</p>
        <p>
Still... good fun watching Mark Rushworth from Vodafone try to put his media training
through its paces.
</p>
        <p>
 
</p>
        <p>
[Update] <a href="http://www.3news.co.nz/Video/CampbellLive/tabid/367/articleID/62352/cat/84/Default.aspx">Video
is here</a></p>
        <img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=b399a24b-91ce-4ecd-a89b-b19d69b73903" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Bravo Air New Zealand</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/06/18/BravoAirNewZealand.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,0e9d3d1b-a9a8-4d0b-981c-ad02eaf6009f.aspx</id>
    <published>2008-06-19T09:50:46.78175+12:00</published>
    <updated>2008-06-19T09:50:46.78175+12:00</updated>
    <category term="Travel" label="Travel" scheme="http://www.syringe.net.nz/CategoryView,category,Travel.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
See
</p>
        <p>
          <a href="http://www.changingthewayyoufly.co.nz">http://www.changingthewayyoufly.co.nz</a>
        </p>
        <p>
AirNZ have announced a bunch of new things.
</p>
        <p>
Highlights from where I sit.
</p>
        <p>
1. All domestic flights including smartsavers now acrue status credits. THis is something
I have advocated for sometime. I've never been super fussed on whether I get points
for smartsaver fares but missing 0out on status credits really isn't great for encouraging
brand loyalty. Very pleased to see this.
</p>
        <p>
2. New Space+ seating on domestic flights. Forward rows on the NZ733, NZ766 and NZ320 aircraft
will have new seating and more room. Againa bit bonus for those of us who *need* to
spend timwe on the laptop doing emails on the plane. This was always a sore point
for me becuase QF has heaps of room in those seats. A +ve change.
</p>
        <p>
All in all very +ve.
</p>
        <img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=0e9d3d1b-a9a8-4d0b-981c-ad02eaf6009f" />
      </div>
    </content>
  </entry>
  <entry>
    <title>My Morning Run</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/06/14/MyMorningRun.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,ef824bbc-15da-4a8e-8648-a3929fa1e7c3.aspx</id>
    <published>2008-06-14T17:54:48.406+12:00</published>
    <updated>2008-06-14T17:57:00.78175+12:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Thought i'd show off and post the GPS trail
from my <a href="https://buy.garmin.com/shop/products/forerunner405/">Forerunner 405</a><br /><br /><br /><p></p><img src="http://www.syringe.net.nz/content/binary/My%20Morning%20Run.jpg" border="0" /><br /><br />
And this is the profile view from my Polar s625x<br /><br /><img src="file:///C:/Users/Chriss/AppData/Local/Temp/moz-screenshot.jpg" alt="" /><br /><img src="http://www.syringe.net.nz/content/binary/My%20Morning%20Run%20Two.jpg" border="0" /><img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=ef824bbc-15da-4a8e-8648-a3929fa1e7c3" /></div>
    </content>
  </entry>
  <entry>
    <title>Guest Opinion: Office Open XML Q&amp;A</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/05/16/GuestOpinionOfficeOpenXMLQA.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,42d0f651-0846-4c08-b7e9-d9b91beed2ad.aspx</id>
    <published>2008-05-16T20:03:03.3546209+12:00</published>
    <updated>2008-05-16T20:03:03.3546209+12:00</updated>
    <category term="Human Aggregation" label="Human Aggregation" scheme="http://www.syringe.net.nz/CategoryView,category,Human%2BAggregation.aspx" />
    <category term="PoliTechLaw" label="PoliTechLaw" scheme="http://www.syringe.net.nz/CategoryView,category,PoliTechLaw.aspx" />
    <content type="html">&lt;p&gt;
So got an email from Brett Roberts @ Microsoft this evening saying he wanted to stick
an op-ed piece he did for Computerworld up on the web but he didn't have anywhere
to put it. Now usuall I'd be a snarky little bastard and remind Brett that his company
has a blogging platform (&lt;a href="http://home.services.spaces.live.com/"&gt;Live Spaces&lt;/a&gt;)&amp;nbsp;which
they must have invested oodles into and maybe he should start blogging..... but instead
I volunteered to post his piece up here. So herewith the piece that Brett did for
Computerworld alongside &lt;a href="http://www.stuff.co.nz/blogs/passthesource"&gt;Don Christie&lt;/a&gt;&amp;nbsp;from
the &lt;a href="http://www.nzoss.org.nz"&gt;NZOSS&lt;/a&gt;. The opinions below are not mine (except
where I am quoted) but I do share some similar sentiments and I was on the 'Yes please'
side of the ledger in the whole OOXML process.
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 12pt"&gt;
&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;Computerworld
Q&amp;amp;A&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;
&lt;/p&gt;
&lt;div style="BORDER-RIGHT: medium none; PADDING-RIGHT: 0cm; BORDER-TOP: medium none; PADDING-LEFT: 0cm; PADDING-BOTTOM: 1pt; BORDER-LEFT: medium none; PADDING-TOP: 0cm; BORDER-BOTTOM: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .5pt"&gt;
&lt;p style="BORDER-RIGHT: medium none; PADDING-RIGHT: 0cm; BORDER-TOP: medium none; PADDING-LEFT: 0cm; PADDING-BOTTOM: 0cm; MARGIN: 0cm 0cm 0pt; BORDER-LEFT: medium none; LINE-HEIGHT: 12pt; PADDING-TOP: 0cm; BORDER-BOTTOM: medium none; mso-border-bottom-alt: solid windowtext .5pt; mso-padding-alt: 0cm 0cm 1.0pt 0cm"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;Brett
Roberts, Microsoft New Zealand Director of Innovation&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; TEXT-INDENT: -18pt; LINE-HEIGHT: 12pt; mso-list: l0 level1 lfo1"&gt;
&lt;font color=#000000&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Calibri"&gt;&lt;span style="mso-list: Ignore"&gt;1.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;Why
should we care about global standards, or in this case the debate around Open XML? 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 6pt 18pt"&gt;
&lt;span style="mso-bidi-font-weight: bold"&gt;&lt;font size=3&gt;&lt;font color=#000000&gt;&lt;font face=Calibri&gt;The
Office Open XML format is gaining momentum. There are literally thousands of developers
already building applications which utilise or interoperate with the current Ecma
376 standard across a variety of platforms including Linux, Windows, Mac OS and Palm
OS. These span the industry from big players like Apple, IBM and Novell to innovative
companies in New Zealand like Intergen.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 6pt 18pt"&gt;
&lt;span style="mso-bidi-font-weight: bold"&gt;&lt;font size=3&gt;&lt;font color=#000000&gt;&lt;font face=Calibri&gt;In
the past, document formats have been closed and this has caused problems for developers
but it’s also been an issue for companies and government organisations who need to
retain long-term access to information stored in those documents. Opening up the document
formats via a published and freely-available specification is a great step forward.
Placing that specification under the stewardship of the International Organisation
for Standardization - ISO – is even more significant for the broad IT community because
it means the standard is permanently in the public domain and subject to the strict
controls and processes of the independent International Organization for Standardization
(ISO).&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 6pt 18pt"&gt;
&lt;span style="mso-bidi-font-weight: bold"&gt;
&lt;o:p&gt;
&lt;font face=Calibri color=#000000 size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 6pt 18pt; TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1"&gt;
&lt;font color=#000000&gt;&lt;span style="mso-bidi-font-weight: bold; mso-bidi-font-family: Calibri"&gt;&lt;span style="mso-list: Ignore"&gt;&lt;font face=Calibri size=3&gt;2.&lt;/font&gt;&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font size=3&gt;&lt;font face=Calibri&gt;&lt;b&gt;What
are the benefits or otherwise of Open XML to New Zealand businesses and the New Zealand
public? &lt;/b&gt;&lt;span style="mso-bidi-font-weight: bold"&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 6pt 18pt"&gt;
&lt;span style="mso-bidi-font-weight: bold"&gt;&lt;font size=3&gt;&lt;font color=#000000&gt;&lt;font face=Calibri&gt;The
Open XML specification empowers developers to create a host of new innovations for
customers.&amp;nbsp; Chris Auld, Intergen’s Director of Strategy and Innovation says,
“having an internationally documented standard such as Office Open XML allows innovative
New Zealand companies such as Intergen to reach a global audience. 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 6pt 18pt"&gt;
&lt;span style="mso-bidi-font-weight: bold"&gt;&lt;font size=3&gt;&lt;font color=#000000&gt;&lt;font face=Calibri&gt;Demonstrating
this, Intergen has announced it groundbreaking new software product TextGlow. A world-first,
TextGlow allows users to view Office Open XML Word documents without having to download
them, irrespective of whether or not they have Microsoft Word or any other Microsoft
Office application installed. 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 6pt 18pt"&gt;
&lt;span style="mso-bidi-font-weight: bold"&gt;&lt;font size=3&gt;&lt;font color=#000000&gt;&lt;font face=Calibri&gt;“TextGlow
is a unique product combining Office Open XML and Silverlight for the first time,”
says Auld. “Microsoft Office documents have traditionally required software to be
installed on the local machine. The new XML- based file format, coupled with Silverlight,
has allowed us to make documents viewable directly through users’ web browsers. We
are already cross platform on Windows and Macintosh and hope to be supporting Linux
in the next couple of months.”&amp;nbsp; 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 6pt 18pt"&gt;
&lt;font size=3&gt;&lt;font color=#000000&gt;&lt;font face=Calibri&gt;&lt;span style="mso-bidi-font-weight: bold"&gt;With
many organisations&lt;/span&gt;&lt;span lang=EN-US style="mso-ansi-language: EN-US"&gt; storing
documents in web based document management systems such as SharePoint products and
technologies, a quick preview of documents within the browser will boost productivity
significantly.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 12pt 17.85pt"&gt;
&lt;font size=3&gt;&lt;font face=Calibri&gt;&lt;font color=#000000&gt;In addition, a recent blog by
Jan &lt;/font&gt;&lt;span style="COLOR: #333333"&gt;van den Beld, former Secretary General of
Ecma International in Geneva, &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;a href="http://janvandenbeld.blogspot.com/2008/02/six-benefits-you-can-get-from-isoiec.html"&gt;&lt;font face=Calibri color=#448888 size=3&gt;http://janvandenbeld.blogspot.com/2008/02/six-benefits-you-can-get-from-isoiec.html&lt;/font&gt;&lt;/a&gt;&lt;font face=Calibri color=#000000 size=3&gt;&amp;nbsp;
highlights six&amp;nbsp; key benefits to Open XML. In brief:&lt;/font&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 36pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;1.
Transfer of control&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 36pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;2.
Transfer stewardship 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 36pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;3.
Chance for industry and implementers: 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 36pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;4.
Evolution of the standard&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 36pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;5.
Interoperability&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 12pt 36pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;6.
Conformance and interoperability testing&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; TEXT-INDENT: -18pt; LINE-HEIGHT: 12pt; mso-list: l0 level1 lfo1"&gt;
&lt;font color=#000000&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Calibri"&gt;&lt;span style="mso-list: Ignore"&gt;3.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;Why
is a standard for legacy documents required in light of the fact that Microsoft has
just published the specs for those documents? 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;The
rigorous technical review associated with the standards process is making it possible
for Open XML to support an ever broadening set of requirements. 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN-LEFT: 18pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;OpenXML
is built around a small number of really important design goals. Top of the list is
the goal of being able to represent existing binary documents in an XML based mark-up.
To achieve this you have to have a document standard that fully represents all of
the elements that are in those existing binary documents. OpenXML is the only document
standard capable of doing this. Other document standards would have to be extended
beyond their design goals to provide this capability.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN-LEFT: 18pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;The
publishing of the binary file formats is an additional piece of the jigsaw puzzle
that ensures the availability of all Microsoft Office documents for generations to
come. Providing the capability for developers today to fully understand the Microsoft
Office binary files will encourage both a rich array of tools to convert files to
the new OpenXML format, and create additional opportunities for a limited subset of
customers to just archive existing documents in their current format. This is especially&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;important
to some customer groups, the legal community for example. 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;To
ensure that documents are protected for generations to come organisations like the
British Library and the US National Library of Congress have stepped up to act as
digital archivists of the binary file format specifications. Sitting side by side
with OpenXML as an ISO standard we now have an environment where documents are truly
open and access to them can be guaranteed in perpetuity.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; TEXT-INDENT: -18pt; LINE-HEIGHT: 12pt; mso-list: l0 level1 lfo1"&gt;
&lt;font color=#000000&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Calibri"&gt;&lt;span style="mso-list: Ignore"&gt;4.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;If
Open XML is rejected as a global standard, what will it mean for businesses and the
public? 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;I
don’t think we’ll know initially but over time strong opponents of Office Open XML
will lobby governments in particular, to adopt technology procurement preferences
which favour ODF-based solutions. 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;As
a taxpayer, I’m not convinced that removing choice will increase innovation, increase
competition and therefore lower costs. I suspect the opposite will happen. More concerning
is the fact that there are tens of thousands of highly-skilled programmers in New
Zealand who build innovative technology solutions and are quickly becoming known in
the global marketplace. We should be offering them more opportunities to win export
dollars– not less.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;u&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-fareast-font-family: SimSun; mso-bidi-font-family: Arial; mso-fareast-language: ZH-CN"&gt;
&lt;o:p&gt;
&lt;span style="TEXT-DECORATION: none"&gt;&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;
&lt;/o:p&gt;
&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; TEXT-INDENT: -18pt; LINE-HEIGHT: 12pt; mso-list: l0 level1 lfo1"&gt;
&lt;font color=#000000&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Calibri"&gt;&lt;span style="mso-list: Ignore"&gt;5.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;Why
not just one standard for all? 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 12pt 18pt"&gt;
&lt;font face=Calibri color=#000000 size=3&gt;There are many reasons. Firstly, Office Open
XML and ODF were built with very different design goals in mind. The argument that
we only need one ISO standard document format makes as much sense as saying we only
need one ISO standard programming language. &lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 12pt 18pt"&gt;
&lt;font face=Calibri color=#000000 size=3&gt;The “one standard for all” concept makes the
assumption that the first standard “out of the starting blocks” will encompass current
and future needs. It’s a tenuous argument. &lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 12pt 18pt"&gt;
&lt;font face=Calibri color=#000000 size=3&gt;And a report published by the Burton Group
in January of this year agrees, stating that ODF is insufficient for complex real-world
enterprise requirements...and...libraries and large businesses, faced with storing
and using years of Microsoft Office legacy documents, will prefer OOXML, as OOXML
can more faithfully recreate the look and metadata (such as spreadsheet formulas)
stored in Microsoft’s binary file formats. &lt;/font&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 17.85pt; TEXT-INDENT: -18pt; LINE-HEIGHT: 12pt; mso-list: l0 level1 lfo1"&gt;
&lt;font color=#000000&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Calibri"&gt;&lt;span style="mso-list: Ignore"&gt;6.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;Why
does open XML not include macros, scripting, OLE serialisation, and leave so much
to be "application-defined"? 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 17.85pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;Competition
between Office Automation suites has always been an important factor in driving much
of the innovation that we enjoy in the industry and as users today. The process to
standardise OpenXML is a process to standardise the data format, not an application.
Standardising the full application would remove the ability for different office applications
to compete with each other and slow that pace of innovation.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 17.85pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;&lt;font color=#000000&gt;Macros
are a great example of this point. They’re an application behaviour that is unique
to Microsoft Office. Macros provide the user with a way of telling the Office Suite
what to do with information once it is loaded into memory. Standardising the macro
language from Microsoft Office as part of the OpenXML process would force any future
applications that implemented the data format to also implement the same macro language.
In reality other applications may choose to implement a wide array of other macro
or development languages that are more relevant to their own target users.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; LINE-HEIGHT: 12pt"&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;
&lt;o:p&gt;
&lt;font color=#000000&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/span&gt;
&lt;/p&gt;
&lt;p style="MARGIN: 0cm 0cm 0pt 18pt; TEXT-INDENT: -18pt; LINE-HEIGHT: 12pt; mso-list: l0 level1 lfo1"&gt;
&lt;font color=#000000&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-bidi-font-family: Calibri"&gt;&lt;span style="mso-list: Ignore"&gt;7.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="mso-bidi-font-weight: normal"&gt;&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'"&gt;Should
governments adopt OOXML as a document standard? 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt 18pt"&gt;
&lt;font size=3&gt;&lt;font color=#000000&gt;&lt;font face=Calibri&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/span&gt;Absolutely.
Government use the older binary formats today along with Office Open XML, PDF, HTML,
RTF and TXT files. Government, like all customers, choose the best tool for the job
and Office Open XML offers them another option. Government is also dealing on a daily
basis with Office Open XML documents being sent to them by individuals and businesses
and it seems to me that adopting it as a standard makes sense from a purely pragmatic
perspective.&lt;span lang=EN-US style="COLOR: #1f497d; mso-ansi-language: EN-US"&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt 18pt"&gt;
&lt;o:p&gt;
&lt;font face=Calibri color=#000000 size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;o:p&gt;
&lt;font face=Calibri color=#000000 size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;o:p&gt;
&lt;font face=Calibri color=#000000 size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;o:p&gt;
&lt;font face=Calibri color=#000000 size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 12pt"&gt;
&lt;o:p&gt;
&lt;font face=Calibri color=#000000 size=3&gt;&amp;nbsp;&lt;/font&gt;
&lt;/o:p&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=42d0f651-0846-4c08-b7e9-d9b91beed2ad" /&gt;</content>
  </entry>
  <entry>
    <title>Really Liking Xero</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/05/13/ReallyLikingXero.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,7bba7923-f05c-4d85-83f0-721f0519f554.aspx</id>
    <published>2008-05-13T21:01:17.274+12:00</published>
    <updated>2008-05-16T19:57:19.305544+12:00</updated>
    <category term="Rambles" label="Rambles" scheme="http://www.syringe.net.nz/CategoryView,category,Rambles.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
So we're using <a href="http://www.xero.com">Xero</a> for one of my businesses, <a href="http://www.medrecruit.com">MedRecruit</a>.
</p>
        <p>
I'm in a non executive role and we're all scattered around the country so it provides
a great way to peek at the balance sheet or cashflow forecast where-ever I am.
</p>
        <p>
I really like the way that you can dril down through all the accounts to look at transactions
in detail too.
</p>
        <p>
I've used a few other desktop accounting packages in my time (I currently use Quickbooks
for my personal company and family trust) and they really are all a complete pain
in the arse to use for an infrequent user like myself. I'm sure if you learn how to
use them they are fine but honestly I expect stuff to be so intuitive that a geek
like me can just pick it up and run with it.
</p>
        <p>
I've got good basic accounting knowledge and I've picked up all I need to know about <a href="http://www.xero.com">Xero</a> just
by using it. No documentation required.
</p>
        <p>
As a small business co-owner Xero really is the ducks nuts for keeping myself aware
of the goings on.
</p>
        <p>
Two thumbs up from me.
</p>
        <p>
What I'd really love is a chopped down version with a limited number of transactions
per month that will allow me to use it for my smaller stuff at a cost point that I
can justify more easily to myself.
</p>
        <p>
 
</p>
        <p>
[Update]
</p>
        <p>
I am reliably advised that Xero has discounted rates for your second and subsequent
businesses and even more discounted rates for non GST registered entities like your
famil trust. So I've registered two of my other companies with Xero and my trust.
Will blog how my move from casual observer to somewhat more active user goes.
</p>
        <img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=7bba7923-f05c-4d85-83f0-721f0519f554" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Too hot for University News?</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/05/06/TooHotForUniversityNews.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,337fcdd2-e6db-40e1-a014-dc5e80052454.aspx</id>
    <published>2008-05-06T17:46:33.394+12:00</published>
    <updated>2008-05-06T17:46:33.394+12:00</updated>
    <category term="Human Aggregation" label="Human Aggregation" scheme="http://www.syringe.net.nz/CategoryView,category,Human%2BAggregation.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://www.stuff.co.nz/4513142a10.html">http://www.stuff.co.nz/4513142a10.html</a>
        </p>
        <p>
Or just too hot for the frumpy feminist unionist faculty?
</p>
        <p>
          <img class="photo" src="http://www.stuff.co.nz/images/721396.jpg" width="300" height="360" />
        </p>
        <p>
"Miss Universe New Zealand contestant Rhonda Grant, who is a Massey science graduate,
said yesterday she still finds it hard to believe a picture of her at the beach in
a white bikini caused such an uproar."
</p>
        <p>
...
</p>
        <p>
"When it was pulled from the website late last week after Associate Professor Maureen
Montgomery complained the picture was inappropriate, Miss Grant found herself in the
middle of a media frenzy."
</p>
        <img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=337fcdd2-e6db-40e1-a014-dc5e80052454" />
      </div>
    </content>
  </entry>
  <entry>
    <title>How Much Does Being Fat Cost?</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/05/05/HowMuchDoesBeingFatCost.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,65f179a8-a37a-4533-aa1f-f8201bbcdb0b.aspx</id>
    <published>2008-05-05T13:46:59.36275+12:00</published>
    <updated>2008-05-05T13:46:59.36275+12:00</updated>
    <category term="Gettin Fit" label="Gettin Fit" scheme="http://www.syringe.net.nz/CategoryView,category,Gettin%2BFit.aspx" />
    <category term="Human Aggregation" label="Human Aggregation" scheme="http://www.syringe.net.nz/CategoryView,category,Human%2BAggregation.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Great article on MSN about the Economics
of Obesity.<br /><br />
"Add up the savings up on health, food, clothing and efficiencies, and you could buy
a professional <a href="http://health.msn.com/weight-loss/articlepage.aspx?cp-documentid=100185133">home
gym</a> for every U.S. household -- or hand each $4,270 in cash."<br /><br /><a href="http://articles.moneycentral.msn.com/Insurance/Advice/WhatIfNoOneWereFat.aspx">http://articles.moneycentral.msn.com/Insurance/Advice/WhatIfNoOneWereFat.aspx</a><br /><p></p><img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=65f179a8-a37a-4533-aa1f-f8201bbcdb0b" /></div>
    </content>
  </entry>
  <entry>
    <title>In Case You Thought NZ Manufacturing Was Dead.... Checkout Rochfort Kayak Paddles</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/04/20/InCaseYouThoughtNZManufacturingWasDeadCheckoutRochfortKayakPaddles.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,83c1cd0b-a4c3-40c9-89d5-1be5ac319664.aspx</id>
    <published>2008-04-20T18:02:03.531375+12:00</published>
    <updated>2008-04-20T18:02:03.531375+12:00</updated>
    <category term="Adventure Sports" label="Adventure Sports" scheme="http://www.syringe.net.nz/CategoryView,category,Adventure%2BSports.aspx" />
    <category term="Toy Box" label="Toy Box" scheme="http://www.syringe.net.nz/CategoryView,category,Toy%2BBox.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">So plenty of bad news from manufacturers
recently including <a href="http://www.stuff.co.nz/4485058a6020.html">F&amp;P Appliances.</a><br /><br />
All is not lost. There are still manufacturers doing SUPER innovative things here
in NZ.<br />
Checkout <a href="http://www.paddle.co.nz">Rochfort Paddles</a>.<br /><br />
The real point of innovation from these guys is their new <a href="http://www.paddle.co.nz/9301/9328.html">Balanced
Crank Shaft.</a><br />
This is a *one piece* carbon kevlar crank shaft and it's hot!<br />
I can't for the liufe of me work out how they're making it and they're not sharing
any details....<br /><br />
Well worth checking these guys out<br /><p></p><img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=83c1cd0b-a4c3-40c9-89d5-1be5ac319664" /></div>
    </content>
  </entry>
  <entry>
    <title>A Workflow Designer in Silverlight</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/04/08/AWorkflowDesignerInSilverlight.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,0c95bf71-eae0-4246-9da1-5cfa841552eb.aspx</id>
    <published>2008-04-09T07:50:12.6315+12:00</published>
    <updated>2008-04-09T07:50:12.6315+12:00</updated>
    <category term="Windows Workflow" label="Windows Workflow" scheme="http://www.syringe.net.nz/CategoryView,category,Windows%2BWorkflow.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">It was always going to happen and I'm now
sitting in a session with K2 looking at their new Silverlight based Workflow designer
(which ultimately compiles down to WF).<br />
Very cool.<br /><br />
Pics to follow later.<br /><p></p><img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=0c95bf71-eae0-4246-9da1-5cfa841552eb" /></div>
    </content>
  </entry>
  <entry>
    <title>Web Management for Hyper-V</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/04/08/WebManagementForHyperV.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,df4f5cbd-25c4-4b5b-8bd3-aef74cf4a942.aspx</id>
    <published>2008-04-09T03:34:35.115875+12:00</published>
    <updated>2008-04-09T03:34:35.115875+12:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.syringe.net.nz/CategoryView,category,.NET.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">So in the move from Virtual Server 2005
R2 to Hyper-V we lost the Web management capability for the VM server.<br />
Hyper-V management is all MMC based.<br /><br />
This has +'s and -'s but plenty of people are going to miss the web UI.<br /><br />
My friend Sondre has kickstarted an Open Source project to build a Web UI using the
Virtualization WMI interfaces.<br /><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><br /><a href="http://www.codeplex.com/HVWM">http://www.codeplex.com/HVWM</a><br /><br />
Well worth taking a look. I'll be doing a bunch of new posts on Virtualization on
Hyper-V over the next few months as I build up my new Hyper-V box for <a href="http://www.medrecruit.com">http://www.medrecruit.com</a><br /></span><p></p><img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=df4f5cbd-25c4-4b5b-8bd3-aef74cf4a942" /></div>
    </content>
  </entry>
  <entry>
    <title>OOXML Approved By A Good Margin</title>
    <link rel="alternate" type="text/html" href="http://www.syringe.net.nz/2008/04/01/OOXMLApprovedByAGoodMargin.aspx" />
    <id>http://www.syringe.net.nz/PermaLink,guid,f8f6db97-d3e7-4e1d-8fca-94578fca6a45.aspx</id>
    <published>2008-04-02T05:08:48.749875+12:00</published>
    <updated>2008-04-02T05:08:48.749875+12:00</updated>
    <category term="PoliTechLaw" label="PoliTechLaw" scheme="http://www.syringe.net.nz/CategoryView,category,PoliTechLaw.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
So it's not official yet, but, things seem to be leaking like a sieve.
</p>
        <p>
Undy Updegrove has details of what looks to be the final vote. <a href="http://consortiuminfo.org/standardsblog/article.php?story=20080401033558908">http://consortiuminfo.org/standardsblog/article.php?story=20080401033558908</a></p>
        <p>
I'm looking forward to moving our products to support OOXML and to continuing to participate
in the development of this standard.
</p>
        <tr>
          <td valign="top">
            <p class="MsoNormal">
              <strong>
                <span>Result of voting</span>
              </strong>
            </p>
            <p class="MsoNormal">
              <strong>
                <span>
                  <br />
                </span>
              </strong>
            </p>
          </td>
        </tr>
        <tr>
          <td valign="top">
            <p class="MsoNormal" align="center">
              <font size="3">
                <span>
                  <font size="4">P-Members voting: 24 in favour out of 32 = 75
% (requirement &gt;= 66.66%)</font>
                </span>
              </font>
            </p>
            <p class="MsoNormal" align="center">
              <font size="3">
                <span>
                  <font size="4">
                    <br />
                  </font>
                </span>
              </font>
            </p>
          </td>
        </tr>
        <tr>
          <td valign="top">
            <p class="MsoNormal" align="center">
              <font size="3">
                <em>
                  <span>
                    <font size="4">(P-Members having abstained are not counted
in this vote.)</font>
                  </span>
                </em>
              </font>
            </p>
            <p class="MsoNormal" align="center">
              <font size="3">
                <em>
                  <span>
                    <font size="4">
                      <br />
                    </font>
                  </span>
                </em>
              </font>
            </p>
          </td>
        </tr>
        <tr>
          <td valign="top">
            <p class="MsoNormal" align="center">
              <font size="3">
                <span>
                  <font size="4">Member bodies voting: 10 negative votes out of
71 = 14 % (requirement &lt;= 25%)</font>
                </span>
              </font>
            </p>
            <p class="MsoNormal" align="center">
              <font size="3">
                <span>
                  <font size="4">
                    <br />
                  </font>
                </span>
              </font>
            </p>
          </td>
        </tr>
        <tr>
          <td valign="top">
            <p class="MsoNormal" align="center">
              <strong>
                <em>
                  <span>
                    <font size="5">Approved</font>
                  </span>
                </em>
              </strong>
            </p>
          </td>
        </tr>
        <img width="0" height="0" src="http://www.syringe.net.nz/aggbug.ashx?id=f8f6db97-d3e7-4e1d-8fca-94578fca6a45" />
      </div>
    </content>
  </entry>
</feed>