<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>stm &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/stm/</link>
	<description>Feed of posts on WordPress.com tagged "stm"</description>
	<pubDate>Sun, 29 Nov 2009 03:31:21 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Graph Layout with Software Transactional Memory and Barriers (plus video!)]]></title>
<link>http://chplib.wordpress.com/2009/11/26/graph-layout-with-software-transactional-memory-and-barriers/</link>
<pubDate>Thu, 26 Nov 2009 13:15:29 +0000</pubDate>
<dc:creator>Neil Brown</dc:creator>
<guid>http://chplib.wordpress.com/2009/11/26/graph-layout-with-software-transactional-memory-and-barriers/</guid>
<description><![CDATA[In my last post, I used barriers and shared channels to write a simple program for performing force-]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In my last post, <a href="http://chplib.wordpress.com/2009/11/24/force-directed-graph-layout-with-barriers-and-shared-channels/">I used barriers and shared channels to write a simple program for performing force-based graph layout</a>.  There were two things lacking in that example: firstly, repulsion between unconnected nodes and secondly, some cool videos.  I&#8217;ve now solved both of these shortcomings.</p>
<p>In order to implement repulsion between all nodes, each node must know the position of all other nodes at every time-step.  I could implement this with message-passing, but that would be O(N^2) communications each phase, which isn&#8217;t very efficient, and at that point, message-passing is probably not the right design.  We need some shared variables instead.  Software Transactional Memory (STM) provides a nice way to do shared variable concurrency in Haskell, so we will use that.</p>
<p>The idea is that we will have a transactional variable (TVar) per node, holding the node&#8217;s position.  Every time-step, each node will read from all the TVars to discover the positions of all the other nodes, and will then update its own position based on the other nodes.  If we are not careful, we will have the same race hazard that I warned against last time: one node could update its position before all the other nodes have read its previous position.  Or, if left totally unconstrained, one node could perform several updates before other nodes have even performed one.  To prevent these problems, we will again use barriers to break up the simulation into two phases: discover, and act.  This means that we will be combining CHP and STM: using barriers from CHP to regulate access to shared variables from STM.</p>
<p>All the code before the node process is exactly the same as <a href="http://chplib.wordpress.com/2009/11/24/force-directed-graph-layout-with-barriers-and-shared-channels/">last time</a>, except that I now import <tt>Control.Concurrent.STM</tt> and <tt>Control.Parallel.Strategies</tt> (for some strict application) &#8212; and I&#8217;ve made the nodes a bit smaller.  Our node process no longer takes channels as its parameters, but TVars instead.  It takes a list corresponding to the other nodes, of pairs of booleans (indicating if the other node is connected to this one) and transactional variables (to read the other node&#8217;s position).  It also takes a single transactional variable, which it should use to write its own position to:</p>
<pre>node :: NodeInfo -&#62; [(Bool, TVar NodeInfo)] -&#62; TVar NodeInfo
     -&#62; Enrolled PhasedBarrier Phase -&#62; CHP ()
node start neighbours me bar = node' start
  <font color="Blue">where</font>
    (connected, tvs) = unzip neighbours

    node' cur
      = <font color="Blue">do</font> Discover &#60;- syncBarrier bar
           neighbourPos &#60;- liftSTM (mapM readTVar tvs)
           <font color="Blue">let</font> new = updatePos (zip connected neighbourPos) cur
           Act &#60;- syncBarrier bar
           liftSTM (writeTVar me (new <b>`using`</b> rnf))
           node' new</pre>
<p>You can see that the node process is a bit simpler.  In the Discover phase it reads from the TVars and in the Act phase it writes to its own.  It is immediately apparent that the reads and writes are thus segregated.  <tt>liftSTM</tt> is defined below (it is essentially the <tt>atomically</tt> function), and the <tt>`using` rnf</tt> is a strictness thing that you can ignore.  The <tt>updatePos</tt> function is now more complicated as we have added repulsion (though it is all irrelevant to the concurrent logic):</p>
<pre>
    updatePos poss cur
      = sum [cur
            ,0.05 <b>*</b> sum [ <font color="Blue">let</font> v = p <font color="Green"><i>-</i></font> cur <font color="Blue">in</font> v <font color="Green"><i>-</i></font> ideal <b>*</b> normalise v
                        &#124; (True, p) &#60;- poss] <font color="Green"><i>-- connected nodes</i></font>
            ,0.000002 <b>*</b> sum [<font color="Blue">let</font> sc = (p <b>`from`</b> cur) <b>^^</b> (<font color="Green"><i>-</i></font>2)
                             <font color="Blue">in</font> NodeInfo sc sc <b>*</b> normalise (cur <font color="Green"><i>-</i></font> p)
                            &#124; (<font color="Blue">_</font>, p) &#60;- poss] <font color="Green"><i>-- all nodes</i></font>
            ]
      <font color="Blue">where</font>
        ideal = 0.02
        (NodeInfo x2 y2) <b>`from`</b> (NodeInfo x1 y1)
          = sqrt <b>$</b> (x2<font color="Green"><i>-</i></font>x1)<b>^^</b>2 <b>+</b> (y2<font color="Green"><i>-</i></font>y1)<b>^^</b>2
        normalise (NodeInfo x y) = fmapNodeInfo (<b>/</b> mag) (NodeInfo x y)
          <font color="Blue">where</font>
            mag = sqrt (x<b>*</b>x <b>+</b> y<b>*</b>y)

<font color="Blue">instance</font> NFData GLfloat
<font color="Blue">instance</font> NFData NodeInfo <font color="Blue">where</font>
  rnf (NodeInfo a b) = rnf a <b>&#62;&#124;</b> rnf b

liftSTM :: MonadIO m =&#62; STM a -&#62; m a
liftSTM = liftIO <b>.</b> atomically
</pre>
<p>I&#8217;ve also had to add an instance of NFData to use rnf (strict evaluation) on NodeInfo, and the simple liftSTM function for executing STM transactions in the CHP monad.  The draw process only has one change; instead of reading from a list of channels, we now read from a list of transactional variables:</p>
<pre>drawProcess :: [TVar NodeInfo] -&#62; Enrolled PhasedBarrier Phase -&#62; CHP ()
drawProcess tvs bar
 = <font color="Blue">do</font> displayIO &#60;- embedCHP_ <b>$</b> <font color="Blue">do</font> syncAndWaitForPhase Discover bar
                                  xs &#60;- liftSTM <b>$</b> mapM readTVar tvs
                                  liftIO <b>$</b> <font color="Blue">do</font> startFrame
                                              mapM_ draw xs
                                              mapM_ (drawEdge xs) edges
                                              endFrame
<b>...</b></pre>
<p>Last time, I only had four nodes in my example, which was fairly boring.  This time I have one hundred nodes, connected in a 10&#215;10 grid.  To make the demo interesting, all the nodes start with random positions:</p>
<pre>startNodes :: IO [NodeInfo]
startNodes = replicateM (10<b>*</b>10) <b>$</b> liftM2 NodeInfo r r
  <font color="Blue">where</font>
    r = liftM (fromRational <b>.</b> toRational) <b>$</b> randomRIO (0 :: Float, 1)

edges :: [(Int, Int)]
edges = across <b>++</b> down
  <font color="Blue">where</font>
    across = [(x<b>+</b>10<b>*</b>y, (x<b>+</b>1)<b>+</b>10<b>*</b>y) &#124; x &#60;- [0..8], y &#60;- [0..9]]
    down = [(x<b>+</b>10<b>*</b>y, x<b>+</b>10<b>*</b>(y<b>+</b>1)) &#124; x &#60;- [0..9], y &#60;- [0..8]]
</pre>
<p>Finally, our slightly adjusted main process:</p>
<pre>main :: IO ()
main = runCHP_ <b>$</b>
       <font color="Blue">do</font> nodes &#60;- liftIO startNodes
          vars &#60;- liftSTM <b>$</b> mapM newTVar nodes
          enrollAll_ (newPhasedBarrier Act)
           (drawProcess vars :
            [ <font color="Blue">let</font> edgesOut = filter ((<b>==</b> i) <b>.</b> fst) edges
                  edgesIn = filter ((<b>==</b> i) <b>.</b> snd) edges
                  connectedNodes = map fst edgesIn <b>++</b> map snd edgesOut
                  conn = [(ind <b>`elem`</b> connectedNodes, tv)
                         &#124; (tv, ind) &#60;- zip vars [0..], tv <b>/=</b> mytv]
              <font color="Blue">in</font> node n conn mytv
            &#124; (n, mytv, i) &#60;- zip3 nodes vars [0..]
            ])
</pre>
<p>There are not many changes from <a href="http://chplib.wordpress.com/2009/11/24/force-directed-graph-layout-with-barriers-and-shared-channels/">my previous shared channel-based version</a> to use STM instead.  My continued use of barriers alongside STM shows that you can mix STM and CHP quite nicely if you want to.  Now, here&#8217;s what you&#8217;ve been waiting for &#8212; a video of the graph layout in action, first on my grid graph as defined above:</p>
<p><img src="http://chplib.wordpress.com/files/2009/11/graph-square.png" alt="" title="graph-square" width="400" height="400" class="aligncenter size-full wp-image-763" /><br />
Choose from <a href="http://twistedsquare.com/graph-square-wmv.avi">WMV format (suitable for Windows)</a> or <a href="http://twistedsquare.com/graph-square-mpeg4.avi">MPEG format (suitable for Linux, etc)</a>.</p>
<p>I also ran the algorithm on a simple loop graph:</p>
<p><img src="http://chplib.wordpress.com/files/2009/11/graph-loop.png" alt="" title="graph-loop" width="400" height="400" class="aligncenter size-full wp-image-764" /><br />
Choose from <a href="http://twistedsquare.com/graph-loop-wmv.avi">WMV format (suitable for Windows)</a> or <a href="http://twistedsquare.com/graph-loop-mpeg4.avi">MPEG format (suitable for Linux, etc)</a>.</p>
<p>The two videos have the algorithm running at 10 iterations per second, as that seems like a nice speed to view them at (and apologies for the slight garbage down the right-hand side of the videos).  The grid example was inspired by an original example in the Java version of the <a href="http://prefuse.org/">Prefuse toolkit</a>.  Prefuse is an incredibly cool visualisation toolkit; some Java examples can be found <a href="http://prefuse.org/gallery/">online</a> but more impressive are the more recent <a href="http://flare.prefuse.org/demo">ActionScript examples</a>.  Try the <a href="http://flare.prefuse.org/demo">Layouts tab</a>, and also <a href="http://flare.prefuse.org/launch/apps/dependency_graph">the dependency graph example</a> if you have a spare minute.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[STM8S-Discovery: Microcontrollers reach a new low]]></title>
<link>http://hackaday.com/2009/11/23/stm8s-discovery-microcontrollers-reach-a-new-low/</link>
<pubDate>Mon, 23 Nov 2009 21:30:24 +0000</pubDate>
<dc:creator>Phil Burgess</dc:creator>
<guid>http://hackaday.com/2009/11/23/stm8s-discovery-microcontrollers-reach-a-new-low/</guid>
<description><![CDATA[A complete microcontroller development kit for little more than the cost of a bare chip? That’s what]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-full wp-image-18673" title="stm8s" src="http://hackadaycom.wordpress.com/files/2009/11/stm8s.jpg" alt="" width="470" height="220" /></p>
<p>A complete microcontroller development kit for little more than the cost of a bare chip? <a href="http://www.st.com/mcu/contentid-130-113-STM8S_DISCOVERY.html">That’s what STMicroelectronics is promising with their STM8S-Discovery</a>: <em>seven dollars</em> gets you not only a board-mounted 8-bit microcontroller with an decent range of GPIO pins and functions, but the USB programmer/debugger as well.</p>
<p>The <a href="http://www.st.com/mcu/inchtml-pages-stm8s.html">STM8S</a> microcontroller is in a similar class as the ATmega328 chip on <a href="http://hackaday.com/2009/07/13/arduino-nano-updated/">latest-generation Arduinos</a>: an 8-bit 16 MHz core, 32K flash and 2K RAM, UART, SPI, I2C, 10-bit analog-to-digital inputs, timers and interrupts and all the usual goodness. The Discovery board features a small prototyping area and throws in a <a href="http://hackaday.com/2009/10/17/easy-touch-capacitance/">touch-sense</a> button for fun as well. The ST-LINK USB programmer/debugger comes attached, but it’s easy to crack one off and use this for future STMicro-compatible projects; clearly a plan of giving away the razor and selling the blades.</p>
<p>The development tools are for Windows only, and novice programmers won’t get the same touchy-feely community of support that surrounds Arduino. But for cost-conscious hackers and for educators needing to equip a whole classroom (or if you’re just looking for a <a href="http://hackaday.com/2008/12/25/hackit-what-did-you-get/">stocking stuffer</a> for your geeky nephew), it’s hard to argue with seven bucks for a full plug-and-play setup.</p>
<p>[thanks Billy]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[De La Concorde]]></title>
<link>http://marcinwozniak.wordpress.com/2009/11/17/de-la-concorde/</link>
<pubDate>Tue, 17 Nov 2009 19:06:29 +0000</pubDate>
<dc:creator>marcinwozniak</dc:creator>
<guid>http://marcinwozniak.wordpress.com/2009/11/17/de-la-concorde/</guid>
<description><![CDATA[Projet A dans le cadre du cours d&#8217;architecture. J&#8217;ai eu du plaisir à élaborer ce projet,]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Projet A dans le cadre du cours d&#8217;architecture. J&#8217;ai eu du plaisir à élaborer ce projet, tout comme le suivant (Projet B : Pavillon Lassonde de la Polytechnique).</p>
<p>Il fallait élaborer un scénario de prise de vue, demander et s&#8217;arranger pour obtenir les autorisations, créer des galeries web pour le client, créer une soumission et une facture, travailler les photos dans Photoshop™ puis surtout faire les photos.</p>
<p>J&#8217;ai failli être dans le trouble, puisque la société qui gère le bâtiment qui m&#8217;intéresse, c&#8217;est la STM. Gros monstre bourré de fonctionnaires, où ça prend 1 mois pour obtenir un petit papier. J&#8217;ai finalement pu photographier la station de l&#8217;intérieur, la veille précédant la remise des photos. J&#8217;aime pas les retards, alors j&#8217;ai travaillé la moitié des photos dans le bus et le métro, l&#8217;autre moitié jusqu&#8217;à minuit. Ça a porté fruit, j&#8217;ai eu 100 %!</p>

</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[devil's in the detail]]></title>
<link>http://editinghealth.wordpress.com/2009/11/14/devils-in-the-detail/</link>
<pubDate>Sat, 14 Nov 2009 21:59:39 +0000</pubDate>
<dc:creator>edtheeditor</dc:creator>
<guid>http://editinghealth.wordpress.com/2009/11/14/devils-in-the-detail/</guid>
<description><![CDATA[I spend a surprisingly large amount of time dealing with references: checking, correcting, (often) u]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I spend a surprisingly large amount of time dealing with references: checking, correcting, (often) updating (inaccurate or rotted) weblinks, formatting in the correct style, questioning, proofing, checking again.</p>
<p>It sounds a tedious job and it can be, but it&#8217;s important. In science, technical and medical (STM) publishing, an accurate and well researched reference list is an integral part of the article itself. And increasingly references have an influence beyond the reader of the paper. They are a big part of a journal&#8217;s <a href="http://en.wikipedia.org/wiki/Impact_factor" target="_blank">impact factor</a> &#8211; that intellectually equivocal but commercially vital consideration in a journal&#8217;s reputation.</p>
<p>Actually you&#8217;d be surprised what we editors can tell from a reference list. At the basic level, a comprehensive, precise and relevant reference list is a sign that the author has done the homework. And, if he or she has taken sufficient care to format them as the journal&#8217;s guidelines suggest, so much better. It means the author cares.</p>
<p>Conversely, a shoddy list of references, especially one &#8211;  in the past particularly but perhaps not quite so much these days &#8211; composed of weblinks, is a sign of an author who a) is not sure what they doing, b) is too busy (and perhaps should have renegotiated their deadline) or c) can&#8217;t be bothered.</p>
<p>None of these is a good option, but a) and c) are particular heartsinks. Over the years I&#8217;ve been editing I&#8217;ve come to realise that this often means the article is going to be hard work, too. At least the author who falls into a b) category has an idea of what they <em>should</em> be doing.</p>
<p>The weblinks-filled reference list does also tend to put me on my guard still. It&#8217;s so easy to cut and paste, even with one eye on X-factor. Plagiarism, even if performed in that seemingly benign, slapdash way is a growing problem in STM publishing, and people should be aware companies are increasingly trialling software that can spot fraud.</p>
<p>So, it&#8217;s not that I hate reference checking; in fact, it can have a sort of detective-like pleasure about it on a wet and windy afternoon. I&#8217;d just rather not have to spend too long on it all the time. Authors, please take note.</p>
<p>Ciao</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Un nouveau président pour la STM?]]></title>
<link>http://letrajet.wordpress.com/2009/11/11/un-nouveau-president-pour-la-stm/</link>
<pubDate>Wed, 11 Nov 2009 13:00:37 +0000</pubDate>
<dc:creator>Jean Philippe Akélaguélo</dc:creator>
<guid>http://letrajet.wordpress.com/2009/11/11/un-nouveau-president-pour-la-stm/</guid>
<description><![CDATA[Le quotidien gratuit Métro nous apprenait que le numéro 2 de la STM, Marvin Rotrand, était l&#8217;u]]></description>
<content:encoded><![CDATA[Le quotidien gratuit Métro nous apprenait que le numéro 2 de la STM, Marvin Rotrand, était l&#8217;u]]></content:encoded>
</item>
<item>
<title><![CDATA[Dossier Taz skate park Le sport extreme reprend sa place]]></title>
<link>http://raymondviger.wordpress.com/2009/11/10/dossier-taz-skate-parc-le-sport-extreme-reprend-sa-place-roller-blades/</link>
<pubDate>Tue, 10 Nov 2009 23:45:36 +0000</pubDate>
<dc:creator>gabrielgosselin</dc:creator>
<guid>http://raymondviger.wordpress.com/2009/11/10/dossier-taz-skate-parc-le-sport-extreme-reprend-sa-place-roller-blades/</guid>
<description><![CDATA[Dossier Taz skate park Le sport extrême reprend sa place Gabriel Alexandre Gosselin       DOSSIER RE]]></description>
<content:encoded><![CDATA[Dossier Taz skate park Le sport extrême reprend sa place Gabriel Alexandre Gosselin       DOSSIER RE]]></content:encoded>
</item>
<item>
<title><![CDATA[Evento: "J.R.R. Tolkien: el Hombre y el Mito"]]></title>
<link>http://bibliostm.wordpress.com/2009/11/10/evento-j-r-r-tolkien-el-hombre-y-el-mito/</link>
<pubDate>Tue, 10 Nov 2009 17:10:50 +0000</pubDate>
<dc:creator>Sociedad Tolkiendili de México, A.C. Biblioteca</dc:creator>
<guid>http://bibliostm.wordpress.com/2009/11/10/evento-j-r-r-tolkien-el-hombre-y-el-mito/</guid>
<description><![CDATA[¡Aiya Amigos! La Sociedad Tolkiendili de México, A.C. se complace en invitarles al magno evento ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>¡Aiya Amigos!</p>
<p>La Sociedad Tolkiendili de México, A.C. se complace en  invitarles al magno evento <strong>&#8220;J.R.R. Tolkien: el Hombre y el Mito&#8221;</strong>, el cual se  llevará a cabo los días <strong>21 y 22 de noviembre</strong> en la libreria <strong>Mauricio Achar </strong> (mejor conocida como <strong>Gandhi de Miguel Ángel de Quevedo</strong>), a partir de las <strong>14:00  horas</strong>.</p>
<p>Habrá conferencias, música y cine relacionados con la vida y obra  fantástica y académica de este importante autor. También, como evento  especial, contaremos con la participación de una invitada muy especial: <strong>Andrea  Chapela</strong>, escritora mexicana de fantasía y autora del libro &#8220;<strong>La  Heredera</strong>&#8220;.</p>
<p>¡Concédanle un espacio a la fantasía y a la literatura y por  favor acompañenos!</p>
<p><strong>SOCIEDAD TOLKIENDILI DE MÉXICO</strong></p>
<p>Espero verlos en el evento. Si tienen dudas, pueden preguntarme o bien estar al tanto de la página de la <a href="http://toliendili.org.mx/" target="_blank">STM, AC</a>.</p>
<p><strong><em>Sábado </em><em>21</em><em> de noviembre</em></strong></p>
<p><strong>Tolkien </strong><strong>en </strong><strong>la </strong><strong>c</strong><strong>ultura </strong><strong>popular contemporánea</strong></p>
<p>Charla sobre la presencia e influencia de la obra de Tolkien en diversas manifestaciones actuales de la cultura popular, como el cine y las series televisivas, los videojuegos, la música, los cómics y el manga, los juegos de mesa y de rol, además de la literatura fantástica.</p>
<p><strong>Hunt of Gollum</strong></p>
<p>Proyección del cortometraje dirigido por Chris Bouchard sobre un pasaje de <em>El señor de los anillos</em>, en el que Aragorn sale en persecución de Gollum-Smeagol. Producido en Inglaterra por Independent On Line Cinema y estrenado en 2009 (subtitulada en español).</p>
<p><strong>La</strong><strong> Tierra Media</strong><strong>: el regalo de un profesor</strong></p>
<p>Explicación sistemática de los principales rasgos del mundo mitológico creado por Tolkien: su carácter y funcionamiento, su cronología, su geografía y sus habitantes.</p>
<p><strong>El canto de Yavanna</strong></p>
<p>Audiovisual comentado sobre la creadora del mundo vegetal en la mitología de la Tierra Media.</p>
<p><strong>El nuevo lay de Sigurd y Gu</strong><strong>drun</strong></p>
<p>Lectura, en inglés (con su correspondiente traducción), de fragmentos de la versión escrita por Tolkien en verso antiguo de la leyenda de los nibelungos, recién publicada en mayo de 2009.</p>
<p>&#160;</p>
<p><strong><em>Domingo </em><em>22</em><em> de noviembre</em></strong></p>
<p><strong>Tolkien: el hombre</strong></p>
<p>Charla sobre la vida de Tolkien, sus momentos definitorios como ser humano, académico y escritor, su contexto social histórico y sus convicciones estéticas, religiosas, políticas y académicas.</p>
<p><strong>Mr. Bliss</strong></p>
<p>Proyección de la animación de esta historia escrita y dibujada por Tolkien para sus hijos, realizada por la Sociedad Tolkien de Rusia con base en los dibujos del autor (subtitulada en español).</p>
<p><strong>Tolkien, el otro</strong><strong> autor</strong></p>
<p>Plática sobre las obras literarias menos conocidas de JRR Tolkien, las que no tratan sobre la Tierra Media, su poesía y sus textos filológicos.</p>
<p><strong>Un invitado de Fantasía</strong>. La joven escritora mexicana de fantasía <a href="http://www.eluniversal.com.mx/sociedad/2108.html" target="_blank">Andrea Chapela</a>, autora de <em>La heredera</em>, publicado por Editorial Urano en 2009, charla con el público sobre su obra.</p>
<p><strong>Canciones de </strong><strong>la Tierra</strong><strong> Media</strong></p>
<p>Concierto de piezas musicales inspiradas en la obra de JRR Tolkien, a cargo del Taller de Música de la STM, AC   Composiciones propias y de otros artistas.</p>
<p><img class="aligncenter size-medium wp-image-147" title="tolkiennov" src="http://bibliostm.wordpress.com/files/2009/11/tolkiennov.jpg?w=194" alt="tolkiennov" width="194" height="300" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Montreal Metro - Usability part 2]]></title>
<link>http://advancingusability.wordpress.com/2009/11/04/montreal-metro-usability-part-2/</link>
<pubDate>Thu, 05 Nov 2009 02:11:44 +0000</pubDate>
<dc:creator>Markus</dc:creator>
<guid>http://advancingusability.wordpress.com/2009/11/04/montreal-metro-usability-part-2/</guid>
<description><![CDATA[Last year I wrote about the insufficient affordances in the design of the emergency breaks in Montre]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Last year I <a href="http://advancingusability.wordpress.com/2008/11/08/world-usability-day-and-the-montreal-metro/">wrote</a> about the insufficient affordances in the design of the emergency breaks in Montreal&#8217;s Metro trains. While the trains have been in operation for more than 40 years, it seems providing intuitive user interfaces is still not considered important to the STM (Montreal Transit Corporation) even today. Consider this panel found outside the elevators which were newly installed at some stations:</p>
<div class="wp-caption alignnone" style="width: 219px"><a href="http://blog.fagstein.com/wp-content/uploads/2009/09/buttons.jpg"><img title="Elevator button panel" src="http://blog.fagstein.com/wp-content/uploads/2009/09/buttons.jpg" alt="Elevator button panel" width="209" height="314" /></a><p class="wp-caption-text">Elevator button panel (via fagstein.com)</p></div>
<p>Intuitively, which button would you press to call the elevator?</p>
<p><!--more-->The correct answer is that both buttons issue a call but only the black button calls the elevator. The red button however issues an emergency call! With this panel design a lot of frustration is guaranteed.</p>
<p>So after only a few days, this design issue was &#8220;fixed&#8221; the following way:</p>
<div class="wp-caption alignnone" style="width: 429px"><a href="http://blog.fagstein.com/wp-content/uploads/2009/09/elev-panel.jpg"><img title="&#34;Fixed&#34; elevator panel" src="http://blog.fagstein.com/wp-content/uploads/2009/09/elev-panel.jpg" alt="&#34;Fixed&#34; elevator panel" width="419" height="279" /></a><p class="wp-caption-text">&#34;Fixed&#34; elevator panel (via fagstein.com)</p></div>
<p>Let&#8217;s see how long it will be before the yellow stickers fall off and the panel has to be completely replaced with a more intuitive design after hours of time and frustration have been wasted for many people.</p>
<p>Thanks to <a href="http://blog.fagstein.com/2009/09/18/el-e-va-tion/">Fagstein</a> for discovering this!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DeepDyve]]></title>
<link>http://vadapa.com/2009/10/27/deepdyve/</link>
<pubDate>Tue, 27 Oct 2009 14:52:56 +0000</pubDate>
<dc:creator>vadapa</dc:creator>
<guid>http://vadapa.com/2009/10/27/deepdyve/</guid>
<description><![CDATA[DeepDyve is an online rental service for scientific, technical and medical research with over 30 mil]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p><span style="font-family:Tempus Sans ITC,fantasy;"><span style="font-size:medium;">DeepDyve is an online rental service for scientific, technical and medical research with over 30 million articles.</span></span></p>
<p><span style="font-family:Tempus Sans ITC,fantasy;"><span style="font-size:medium;"> </span></span></p>
<p><span style="font-family:Tempus Sans ITC,fantasy;"><span style="font-size:medium;">For 99 cents, users can rent and read the full-text of articles</span></span></p>
<p><span style="font-family:Tempus Sans ITC,fantasy;"><span style="font-size:medium;"><br />
</span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Why Haskell is great for multicore programming]]></title>
<link>http://softtalkblog.wordpress.com/2009/10/27/why-haskell-is-great-for-multicore-programming/</link>
<pubDate>Tue, 27 Oct 2009 12:28:58 +0000</pubDate>
<dc:creator>softtalkblog</dc:creator>
<guid>http://softtalkblog.wordpress.com/2009/10/27/why-haskell-is-great-for-multicore-programming/</guid>
<description><![CDATA[There’s been a lot of buzz about Haskell recently, with an experimental version of Intel Concurrency]]></description>
<content:encoded><![CDATA[There’s been a lot of buzz about Haskell recently, with an experimental version of Intel Concurrency]]></content:encoded>
</item>
<item>
<title><![CDATA[Transport en commun: À Montréal-Est, c'est la STM!  Sinon,...]]></title>
<link>http://richard3.wordpress.com/2009/10/23/transport-en-commun-a-montreal-est-cest-la-stm-sinon/</link>
<pubDate>Fri, 23 Oct 2009 20:54:31 +0000</pubDate>
<dc:creator>Richard3</dc:creator>
<guid>http://richard3.wordpress.com/2009/10/23/transport-en-commun-a-montreal-est-cest-la-stm-sinon/</guid>
<description><![CDATA[Dans le passé, j&#8217;avais osé faire des liens entre les syndicats et la mafia, en ce qui concerne]]></description>
<content:encoded><![CDATA[Dans le passé, j&#8217;avais osé faire des liens entre les syndicats et la mafia, en ce qui concerne]]></content:encoded>
</item>
<item>
<title><![CDATA[Top 10 Analyst Upgrades, Downgrades, Initiations (CHK, EOG, FFIV, FCX, MOT, NVLS, SAP, STJ, STM, TSCO)]]></title>
<link>http://247wallst.com/2009/10/22/top-10-analyst-upgrades-downgrades-initiations-chk-eog-ffiv-fcx-mot-nvls-sap-stj-stm-tsco/</link>
<pubDate>Thu, 22 Oct 2009 12:13:38 +0000</pubDate>
<dc:creator>247wallst</dc:creator>
<guid>http://247wallst.com/2009/10/22/top-10-analyst-upgrades-downgrades-initiations-chk-eog-ffiv-fcx-mot-nvls-sap-stj-stm-tsco/</guid>
<description><![CDATA[These are this Thursday morning&#8217;s top ten analyst upgrades, downgrades, and initiations we hav]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>These are this Thursday morning&#8217;s top ten analyst upgrades, downgrades, and initiations we have seen from Wall Street research calls:</p>
<p>Chesapeake Energy (NYSE: CHK) Cut to Neutral at UBS.<br />
EOG Resources (NYSE: EOG) Cut to Neutral at UBS.<br />
F5 Networks (NASDAQ: FFIV) Raised to Neutral at UBS; Raised to Buy at Canaccord Adams.<br />
Freeport McMoRan (NYSE: FCX) Raised to Buy at Deutsche Bank.<br />
Motorola (NYSE: MOT) Raised to Overweight at Thomas Weisel.<br />
Novellus Systems (NASDAQ: NVLS) Raised to Hold at Deutsche Bank.<br />
SAP AG (NYSE: SAP) Cut to Neutral from Buy at Bank of America Merrill Lynch.<br />
St. Jude Medical (NYSE: STJ) Raised to Buy at UBS.<br />
STMicroelectronics NV (NYSE: STM) Cut to Sell at RBS.<br />
Tractor Supply Co. (NASDAQ: TSCO) Cut to Underweight at Piper Jaffray.</p>
<p>You can <a href="http://247wallst.com/page/free-newsletter/" target="_blank">join our open email distribution list</a> to get updates on top analyst upgrades and downgrades, top day trader alerts, IPO’s, secondary offerings, Warren Buffett and other guru activity, M&#38;A and more.</p>
<p>JON C. OGG<br />
OCTOBER 22, 2009</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Deux coups de gong]]></title>
<link>http://jackdrew.wordpress.com/2009/10/21/deux-coups-de-gong/</link>
<pubDate>Wed, 21 Oct 2009 12:24:51 +0000</pubDate>
<dc:creator>Drew</dc:creator>
<guid>http://jackdrew.wordpress.com/2009/10/21/deux-coups-de-gong/</guid>
<description><![CDATA[Comme à tous les matins à la même heure, je me dirige vers l&#8217;arrêt d&#8217;autobus à deux coin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://jackdrew.wordpress.com/files/2009/10/gongs1.jpg"><img class="alignleft size-full wp-image-4602" title="gongs" src="http://jackdrew.wordpress.com/files/2009/10/gongs1.jpg" alt="gongs" width="240" height="240" /></a>Comme à tous les matins à la même heure, je me dirige vers l&#8217;arrêt d&#8217;autobus à deux coins de rue de chez moi. Je tourne le premier coin pis j&#8217;vois l&#8217;autobus arriver. On s&#8217;entends qu&#8217;avec ma condition d&#8217;handicapé ça me tente pas de marcher jusqu&#8217;au métro tsé.</p>
<p>*<strong>Insérer ici la chanson Chariots of Fire de Vangelis*</strong></p>
<p>J&#8217;entreprends dès lors un pas de course (qui se rapproche plus du clopin que du clopant) douloureux ou douteux c&#8217;est selon.</p>
<p>Ouch! Ouch! Ouch! Ouch! Ouch! Ouch! Ouch! Ouch! Ouch! Ouch! Ouch! Ouch! OUUUUUUUUUUUUUCCCCCCCCCHHHHHHH CALISSE!!!</p>
<p>Yé j&#8217;suis arrivé non sans avoir remarqué que le chauffeur d&#8217;autobus avait réduit sa vitesse pour me suivre question de se payer ma gueule.</p>
<p>*GONG*</p>
<p>Arrivé au métro, l&#8217;escalier roulant fonctionne pas&#8230; On s&#8217;entends qu&#8217;à Henri-Bourassa, l&#8217;osti d&#8217;escalier est aussi long et pénible qu&#8217;un discours de Mahmoud Ahmadinejad. STM de marde!</p>
<p>*GONG*</p>
<p>Là, j&#8217;suis certain que si on me colle un stétoscope sur le sac, on va entendre les quatres saisons de Vivaldi pour cuivres</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[STM Publishing in 2009]]></title>
<link>http://scienceintelligence.wordpress.com/2009/10/19/stm-publishing-in-2009/</link>
<pubDate>Mon, 19 Oct 2009 19:11:33 +0000</pubDate>
<dc:creator>hbasset</dc:creator>
<guid>http://scienceintelligence.wordpress.com/2009/10/19/stm-publishing-in-2009/</guid>
<description><![CDATA[Everything you must know about Science publishing is in the STM report 2009: the STM market figures,]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Everything you must know about Science publishing is in the <strong>STM report 2009</strong>: the STM market figures, readers’ behaviors, new trends, web 2.0 impact, etc.<br />
It is a follow up to the 2006 report, &#8216;Scientific publishing in transition: an overview of current developments,&#8217; &#8216;The STM Report&#8217; collected the available evidence and provides a comprehensive picture of the trends and currents in scholarly communication.</p>
<p>Ware, Mark and Mabe, Michael. T<em>he stm report : An overview of scientific and scholarly journals publishing.</em> September 2009. Online: <a href="http://www.stm-assoc.org/news.php?id=255&#38;PHPSESSID=3c5575d0663c0e04a4600d7f04afe91f">http://www.stm-assoc.org/news.php?id=255&#38;PHPSESSID=3c5575d0663c0e04a4600d7f04afe91f</a></p>
<p><strong>Some facts and findings:</strong></p>
<ul>
<li><strong> </strong>The <strong>annual revenues</strong> generated from English-language <strong>STM journal publishing</strong> are estimated at about $8 billion in 2008, <strong>up by 6-7%</strong> compared to 2007.</li>
</ul>
<ul>
<li>There were about <strong>25,400 active scholarly peer-reviewed journals </strong>in early 2009, collectively publishing about <strong>1.5 million articles a year.</strong></li>
</ul>
<ul>
<li>Although this report focuses primarily on journals, the <strong>ebook market is evolving and growing rapidly</strong>.</li>
</ul>
<ul>
<li>Despite a transformation in the way journals are published,<strong> researchers’ core motivations for publishing appear largely unchanged</strong>, focused on funding and furthering the author’s career.</li>
</ul>
<ul>
<li>Reading patterns are changing, however, with <strong>researchers reading more</strong>, averaging <strong>270 articles per year</strong>, <strong>but spending less time per articl</strong>e, with reading times down from 45-50 minutes in the mid-1990s to just <strong>over 30 minutes</strong>. Access and navigation to articles is increasingly driven by search rather than browsing.</li>
</ul>
<ul>
<li>The research community continues to see <strong>peer review as fundamenta</strong>l to scholarly communication and appears committed to it despite some perceived shortcomings. The typical reviewer spends 5 hours per review and reviews some 8 articles a year.</li>
</ul>
<ul>
<li>The vast majority of <strong>STM journals are now available online, with 96%</strong> of STM.</li>
</ul>
<ul>
<li>Social media and other “<strong>Web 2.0” tools have yet to make the impact on scholarly communication </strong>that they have done on the wider consumer web. <strong>Most researchers do not for instance read blogs regularly or make use of emerging social tools</strong>. This may be for a variety of reasons: a reluctance to introduce informal processes into the formal publication process; because the first wave of tools did not take sufficient account of the particular needs of researchers; a lack of incentives for researchers, including the lack of attribution for informal contributions; a lack of critical mass; and simply a lack to time to experiment with new media.</li>
</ul>
<ul>
<li>There are between 3400 (according to the Open J-Gate directory) and 4300 (DOAJ) <strong>open access peer reviewed journals</strong>. It is estimated that about <strong>2% of articles are published</strong> in full open access journals, another 5% in journals offering delayed open access within 12 months, and under 1% under the optional (hybrid) model.</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Response 7]]></title>
<link>http://gracehatfield.wordpress.com/2009/10/19/response-7/</link>
<pubDate>Mon, 19 Oct 2009 14:18:31 +0000</pubDate>
<dc:creator>gracehatfield</dc:creator>
<guid>http://gracehatfield.wordpress.com/2009/10/19/response-7/</guid>
<description><![CDATA[One of the most interesting findings from research on how information gets from STM to LTM is the ro]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>One of the most interesting findings from research on how information gets from STM to LTM is the robust finding that “elaborating” on material when we are learning it tends to make retrieval of that information easier and more successful later.</strong></p>
<p><strong>Essentially, “elaboration” means adding to what you are thinking about by adding meaning, information, or thoughts to it. This might mean adding or making up examples, relating the material to yourself (”I remember when that happened to me,” etc.), even just reacting to it (”that seems stupid,” or “wow!”). Forming a visual image of something is another kind of elaboration.</strong></p>
<p><strong>1) Are you aware of doing this kind of thinking for learning the material in this or other classes? Do your instructors ever encourage this kind of thinking? If so, when?</strong></p>
<p>I do this often in class.  I&#8217;m happy to admit it, I am pretty narcissistic&#8230;so I do well when there is a way to relate information to me and my life.  (I&#8217;m not one of those annoying &#8220;one-uppers&#8221;!)</p>
<p>Many of my professors attempt to help &#8220;elaborate,&#8221; some are better at this than others.  Dr. Rader, for example, does a great project with this in Theories of Personality.  In the class, students write &#8220;components&#8221; that use information from lecture and the textbook; students relate this learned information to their own life and their own personality.  Speaking for only myself, this tactic helped to learn the information for class, but it also helped in recalling the information later&#8211;I could think of how Jung&#8217;s theories had related to me and my component, for example.</p>
<p>Other profs will encourage group discussion about information learned in class; I feel that this is effective, although slightly less effective than Dr. Rader&#8217;s method.</p>
<p><strong>2) Is this kind of thinking easier to do with classes in your major, or introductory classes outside of your major? Why do you think that is?</strong></p>
<p>This is easier for me with classes in my field.  I think this is because I am already most interested in psychology classes, but they&#8217;re also easier to relate to myself and talk about in groups.  An intro math course, for example, is not going to be something I can easily relate myself to; nor am I interested enough to be able to carry on any kind of conversation about mathematics.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SDLA y El Hobbit entre los 100 libros más leídos de la historia.]]></title>
<link>http://bibliostm.wordpress.com/2009/10/19/sdla-y-el-hobbit-entre-los-100-libros-mas-leidos-de-la-historia/</link>
<pubDate>Mon, 19 Oct 2009 13:20:37 +0000</pubDate>
<dc:creator>Sociedad Tolkiendili de México, A.C. Biblioteca</dc:creator>
<guid>http://bibliostm.wordpress.com/2009/10/19/sdla-y-el-hobbit-entre-los-100-libros-mas-leidos-de-la-historia/</guid>
<description><![CDATA[Como es de esperarse, estos libros maravillosos se encuentran ubicados en la lista de los 100 libros]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Como es de esperarse, estos libros maravillosos se encuentran ubicados en la lista de los 100 libros más vendidos de la historia.</p>
<p>Lecturaria, (red social de literatura, comunidad de lectores y cometarios de libros), nos comparte en su página que de los quince libros más vendidos, tan sólo <strong>cinco </strong>son novelas: <strong>dos de fantasía</strong> (y del mismo autor: <strong>Tolkien</strong>), un <em>thriller</em>, una novela histórica y un compendio de temáticas.</p>
<p>Para ver la nota completa, les invitamos a que visiten su página, la cual ya se encuentra entre los favoritos de este blog: <a title="Lecturaria" href="http://www.lecturalia.com/blog/2009/10/18/los-100-libros-mas-vendidos-de-la-historia/" target="_blank">Lecturaria</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dammit! The 420 Bus No-Showed Again!]]></title>
<link>http://madnessbrewing.com/2009/10/13/dammit-the-420-bus-no-showed-again/</link>
<pubDate>Tue, 13 Oct 2009 13:29:24 +0000</pubDate>
<dc:creator>Jamie Gore</dc:creator>
<guid>http://madnessbrewing.com/2009/10/13/dammit-the-420-bus-no-showed-again/</guid>
<description><![CDATA[I think one of the weirder things to come out of the Montreal mayoral campaign is that one of the ca]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://jamiegore.files.wordpress.com/2009/10/p1020105.jpg"><img style="border-bottom:0;border-left:0;display:inline;margin-left:0;border-top:0;margin-right:0;border-right:0;" title="P1020105" border="0" alt="P1020105" src="http://jamiegore.files.wordpress.com/2009/10/p1020105_thumb.jpg?w=454&#038;h=340" width="454" height="340" /></a> </p>
<p>I think one of the weirder things to come out of the Montreal mayoral campaign is that one of the candidates has taken a stance that is pro-automobile. While Louise O’Sullivan’s chances of winning the mayoral campaign remain slim, the idea of a mayoral candidate who prefers tossing bicycles in favour of cars is an interesting one and makes for a polarizing issue.</p>
<p> <!--more-->
<p>While her idea of <a href="http://montreal.ctv.ca/servlet/an/local/CTVNews/20091012/mtl_louise_o_sullivan091012/20091012/?hub=MontrealHome" target="_blank">turning empty lots downtown into multi-tiered garages for parking cars</a> isn’t exactly a controversial issue (it’s been floated around for years), the idea that someone wants to even deter from current mayor Gerald Tremblay’s movement towards more public transit and other forms of green transport is a bit shocking. With the recent addition to the Bixi bicycle network and planned changes to the Metro system, the city has big changes in store for how people move about the island. While O’Sullivan doesn’t suggest we scrap the STM, maybe we need to evaluate the usefulness of public transit services and other non-car methods of transportation.</p>
<p>The biggest nuisance of taking the bus is, well, taking it with other people. Buses can get quite crowded. If you don’t get on near the beginning of a busy line, you won’t get a seat and might have to stand and get tossed around for a while. Even if you are lucky enough to get a seat, crowded buses aren’t exactly fun to ride. Then there’s the issue of the weather. You might be stuck in a bus where someone keeps their windows open during the winter or closed during the summer. That’s if the bus shows up at all and some lines, like the 420, seem to have buses never show up when they’re supposed to; which is incredibly frustrating during some of the more horrible days of winter. Then there’s the problem of riding a crowded bus during the dog days of summer with a bunch of people who think deodorant is the greatest form of evil in the universe.</p>
<p>Cars solve all those problems because the driver controls the climate. Sure, you could be a nice person and take along a couple of passengers so long as they have proof they’re wearing deodorant. Some cities have tried attempted to add some comfort to taking public transit like air conditioning (which isn’t an option in Montreal) but everything is still controlled by someone else. You might think air conditioning is necessary but the driver may not and vice versa. These issues might not matter if it is only a two minute bus trip but if you’re taking a bus for half-an-hour, it could be a pretty long thirty minutes.</p>
<p>But let’s say you’re not a princess and can handle being around other people who are just as grumpy as you are for taking public transit, unless you are traveling within the downtown core, it become irritating to take public transit. Transferring buses are a way of life but there could be times where a trip might involve multiple transfers including the metro. That’s fine and dandy but if some of those buses only come every 30-40 minutes, it can suck away a bunch of your day just waiting for the next bus. Sometimes, it’s just better to take a taxi to drive twenty minutes instead of busing it for an hour and a half. </p>
<p>Take for example something I had to do a couple of times. When I lived in Cote-Saint-Luc, I lived right next door to Cote-Saint-Luc Shopping Centre. However, the shopping centre did not have a Burger King and many other fine retail establishments so the next best thing was to go to the nearby Angrignon Shopping Centre. By car, it’s about 15 mins. but if I wanted to go by public transit, it would have taken an about an hour by public transit but I would have had to transferred between four buses or two buses and a twenty minute metro ride between two lines. So a car trip there and back would save an hour and a half. Taking the bus wouldn’t be a problem if I had time to kill but if I was bringing back lots of things or one really big thing, taking the bus with multiple transfers is less than ideal. </p>
<p>Public transit works well for the downtown core but it doesn’t work much elsewhere where it is just easier and less stressful to move around by car. Areas close to the downtown like Cote-Saint-Luc and N.D.G. do have frequent bus service but there are few lines that provide service. It’s the situation where walking is a better alternative to taking the bus (except in poor weather conditions). In areas like the West Island and the East End, it is worse. Not only is there infrequent bus service but the routes are so spread out, it practically encourages people to ignore taking the bus and travel by car. </p>
<p>One thing talked preached by those who favour increased transit services is that people will use it if they infrastructure is there. The problem with this is that the infrastructure is expensive. A single bus can cost over $100 000 (including cost of purchase and regular maintenance). Metro extension is costs hundreds of millions of dollars. Ridership has to be there. There is little room for growth because if the ridership cannot cover the costs, the expansion becomes a burden on the province. There is little evidence that expanding bus service throughout the West Island would actually be useful. I lived in the West Island for years. Aside from a couple of bus routes (the 201 and the 211), very rarely were all the seats taken. Until I took the 211 for the first time when I was seventeen did I ever see what I thought at the time was a packed bus. If a bus like the 206 which departs from Roxboro-Pierrefonds train station and cuts through Roxboro and D.D.O. to arrive at Fairview Shopping Centre hardly come close to filling all the seats, what evidence is there to show that creating bus routes or increasing pre-existing ones would be beneficial to anyone?</p>
<p>When it comes down to it, the only potential for public transit expansion is for better service between the three major areas of the island: downtown, West Island, and East End. Metro expansion to the West Island is not a viable option (as <a href="http://madnessbrewing.com/2009/09/21/silly-metro-extensions/" target="_blank">I wrote in an earlier post on this blog</a>) although areas like Anjou should be connected to the Metro network. Increased bus/train service or new bus/train lines would be a good solution to linking the three major areas to each other as well. Even better links to the South Shore or Laval would be great. Someone needs to explain to me why it costs me $10 to travel back and forth from my house to Carrefour Laval by public transit which would take five minutes by car while I can go back and forth from my house to the East End for less than $6 while by care it would take me 25 minutes. </p>
<p>Taking the bicycle has become a popular option. The Bixi bicycle program has become wildly popular and further expansion is on the way. Which is nice, because even though I live in a borough of Montreal, I don’t have nearby access to the Bixi network. There are no Bixi stations south of Autoroute 40, west of Cote-Des-Neiges Road, and only four east of Pie-IX. It would be nice to be able to grab a bike from the nearby train station and run some errands but that’s impossible where I live. Although it’s nice how the Bixi website is promoting how other cities are taking the idea and using it themselves.</p>
<p>Then again, taking the bicycle isn’t amazing either. Cars and bicycles are frequently at odds with each other. Cyclers have to be paying constant attention for drivers who are not paying attention where they are going. Driving in the rain is not fun and only the brave (or idiotic) would think about biking in the snow which dominates our landscape many months out of the year. Traveling the city by bike is good at times but awful unless conditions are ideal and the streets are devoid of cars. </p>
<p>Louise O’Sullivan is right to say that biking to business meetings is not ideal. It’s a pipe dream. A good one on some levels (i.e., less pollution). It is just not practical. Mayor Tremblay and the other candidates can sit around on Google Maps all they want and make plans for Bixi stations near other Bixi stations and planning bus lines but there are more important things that need our money and attention (like the conditions of the roads). Unless someone is serious about completely overhauling the public transit system to make it better for all of us instead of people in certain pockets of the island, we need to stop wasting money on study after study to see if adding a Metro stop to the blue line is a good idea. </p>
<p>&#8211;</p>
<p>I know there because this site deals with news, politics, movies, video games, and a bunch of other subjects that some people might find this site by accident through a search engine. I’m just surprised that yesterday, the top search terms that people used to find my site was ‘cabela big game hunter 2010 help’. How a game that has sold only about 10 000 copies is bringing traffic to this site is a question that will probably never be answered. At least I find if amusing.</p>
<p>&#8211;</p>
<p><u><strong>Canada News</strong></u></p>
<p>In what looks to be a repeat of 2007, <a href="http://www.cbc.ca/money/story/2009/10/13/loonie-rising.html" target="_blank">the Canadian dollar is nearing parity to the U.S. dollar</a>. Normally, I would be happy about this because it makes buying things online cheaper but it doesn’t help the stash of American dollars I have tucked away for my next trip down south.</p>
<p><u><strong>Sports News</strong></u></p>
<p>Like most Canadians, I’ve never been comfortable about the prospect of the NFL expanding into Canada due to concerns that it would kill the CFL. However, with yesterday’s announcement that the <a href="http://www.google.com/hostednews/canadianpress/article/ALeqM5j4MqDyGbsQLpYFu5ysd5_G2TU1bg" target="_blank">halftime show during this year’s Grey Cup will feature Blue Rodeo</a>, I welcome the NFL with open arms. Seriously, CFL…Blue Rodeo? Was Corey Hart not returning your calls?</p>
<p>Now that the <a href="http://news.bbc.co.uk/2/hi/business/8304242.stm" target="_blank">Chicago Cubs declared bankruptcy</a>, will Jim Balsillie try to buy the team and move the team to Hamilton and turn it into a hockey team. MAKE IT SEVEN AT ALL COSTS!!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[StrategyAnlalytics on ST-Ericsson]]></title>
<link>http://deviceconvergence.wordpress.com/2009/10/12/strategyanlalytics-on-s-ericsson/</link>
<pubDate>Tue, 13 Oct 2009 03:17:49 +0000</pubDate>
<dc:creator>Nalini Kumar Muppala</dc:creator>
<guid>http://deviceconvergence.wordpress.com/2009/10/12/strategyanlalytics-on-s-ericsson/</guid>
<description><![CDATA[Sravan Kundojjala of the market analysis and research firm StrategyAnalytics has a report out today ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.strategyanalytics.com/default.aspx?mod=Biography&#38;a0=2220">Sravan Kundojjala</a> of the market analysis and research firm <a href="http://www.strategyanalytics.com/">StrategyAnalytics</a> has a report out today on ST-Ericsson. The report brief says</p>
<blockquote><p>ST-Ericsson has a very strong position in all the technology pieces required to compete in the cellular chip market including basebands, RF transceivers, connectivity and multimedia. The company has a strategic IP portfolio, well established customer relationships, and also spends close to 20 percent of its revenues on R&#38;D. However, ST-Ericsson has some execution challenges in the near-term to successfully integrate the assets and cultures of NXP, ST Microelectronics and EMP.</p></blockquote>
<p>As I wrote <a href="http://deviceconvergence.wordpress.com/2009/09/13/st-ericsson-strategy-and-outlook/">earlier</a>, I agree with him.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
