<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Michalis Famelis</title>
	<atom:link href="http://famelis.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://famelis.wordpress.com</link>
	<description>ceci n'est pas une homepage</description>
	<lastBuildDate>Thu, 08 Oct 2009 06:46:38 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='famelis.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/65ae1b8e43669a3caf35ee8875a540e3?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Michalis Famelis</title>
		<link>http://famelis.wordpress.com</link>
	</image>
			<item>
		<title>Example statechart editor with EuGENia</title>
		<link>http://famelis.wordpress.com/2009/10/08/example-statechart-editor-with-eugenia/</link>
		<comments>http://famelis.wordpress.com/2009/10/08/example-statechart-editor-with-eugenia/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 05:45:07 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[diagrams]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[modeling]]></category>
		<category><![CDATA[EMF]]></category>
		<category><![CDATA[Epsilon]]></category>
		<category><![CDATA[EuGENia]]></category>
		<category><![CDATA[GMF]]></category>
		<category><![CDATA[Statecharts]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=236</guid>
		<description><![CDATA[Here&#8217;s an example of what can be done with Emfatic and EuGENia. The following annotated Ecore metamodel can be used to create a nice Statechart graphical editor.
Here&#8217;s the emfatic source:


@namespace(
 uri=&#34;http://www.cs.toronto.edu&#34;,
 prefix=&#34;statechart&#34;)

package statechart;

@gmf.diagram(model.extension=&#34;sm&#34;, diagram.extension=&#34;smd&#34;)
class StateMachine{
 val State[*] states;
 val Transition[*] transitions;
}

abstract class State {
 ref NormalState[0..1]#submachine parentState;
}

@gmf.node(label=&#34;name&#34;, label.icon=&#34;false&#34;, figure=&#34;rounded&#34;, border.color=&#34;0,0,0&#34;)
class NormalState extends State{
 attr String[1] [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=236&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s an example of what can be done with <a href="http://wiki.eclipse.org/Emfatic">Emfatic</a> and <a href="http://www.eclipse.org/gmt/epsilon/doc/eugenia/">EuGENia</a>. The following annotated Ecore metamodel can be used to create a nice Statechart graphical editor.</p>
<p>Here&#8217;s the emfatic source:</p>
<pre class="brush: java;">

@namespace(
 uri=&quot;http://www.cs.toronto.edu&quot;,
 prefix=&quot;statechart&quot;)

package statechart;

@gmf.diagram(model.extension=&quot;sm&quot;, diagram.extension=&quot;smd&quot;)
class StateMachine{
 val State[*] states;
 val Transition[*] transitions;
}

abstract class State {
 ref NormalState[0..1]#submachine parentState;
}

@gmf.node(label=&quot;name&quot;, label.icon=&quot;false&quot;, figure=&quot;rounded&quot;, border.color=&quot;0,0,0&quot;)
class NormalState extends State{
 attr String[1] name;
 @gmf.compartment(collapsible=&quot;true&quot;)
 val State[*]#parentState submachine;
}

@gmf.node(label=&quot;name&quot;, label.icon=&quot;false&quot;, figure=&quot;ellipse&quot;, color=&quot;0,0,0&quot;, border.color=&quot;0,0,0&quot;, size=&quot;1,1&quot;)
class InitialState extends State{
 attr String[1] name=&quot;start&quot;;
}
@gmf.node(label=&quot;name&quot;, label.icon=&quot;false&quot;, figure=&quot;rectangle&quot;, color=&quot;0,0,0&quot;, border.color=&quot;0,0,0&quot;, size=&quot;1,1&quot;)
class FinalState extends State{
 attr String[1] name=&quot;end&quot;;
}

@gmf.link(label=&quot;name&quot;, source=&quot;start&quot;, target=&quot;end&quot;, target.decoration=&quot;arrow&quot;, color=&quot;0,0,0&quot;)
class Transition{
 attr String[1] name;
 ref State[1] start;
 ref State[1] end;
}
</pre>
<p>The diagram of the resulting Ecore model is (click to enlarge):</p>
<p><a href="http://famelis.files.wordpress.com/2009/10/screenshot-1.png"><img class="aligncenter size-medium wp-image-237" title="Statechart Metamodel" src="http://famelis.files.wordpress.com/2009/10/screenshot-1.png?w=300&#038;h=141" alt="Statechart Metamodel" width="300" height="141" /></a></p>
<p>And once EuGENia has done its magic (instructions <a href="http://www.eclipse.org/gmt/epsilon/doc/articles/eugenia-gmf-tutorial/">here</a>), the resulting editor looks like this (again, click to enlarge):</p>
<p><a href="http://famelis.files.wordpress.com/2009/10/screenshot.png"><img class="aligncenter size-full wp-image-238" title="Screenshot" src="http://famelis.files.wordpress.com/2009/10/screenshot.png?w=499&#038;h=307" alt="Screenshot" width="499" height="307" /></a></p>
<p>Moreover, we can <a href="http://www.eclipse.org/gmt/epsilon/doc/articles/evl-gmf-integration/">add EVL constraints</a> to the metamodel and validate the resulting models according to them. This is a fairly simple example, but it goes a long way to demonstrate how easy it is to create things like this.</p>
Posted in diagrams, eclipse, fun, modeling Tagged: EMF, Epsilon, EuGENia, GMF, Statecharts <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/236/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=236&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/10/08/example-statechart-editor-with-eugenia/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>

		<media:content url="http://famelis.files.wordpress.com/2009/10/screenshot-1.png?w=300" medium="image">
			<media:title type="html">Statechart Metamodel</media:title>
		</media:content>

		<media:content url="http://famelis.files.wordpress.com/2009/10/screenshot.png" medium="image">
			<media:title type="html">Screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Eclipse Modeling Day in Toronto, Nov18</title>
		<link>http://famelis.wordpress.com/2009/10/02/eclipse-modeling-day-in-toronto-nov18/</link>
		<comments>http://famelis.wordpress.com/2009/10/02/eclipse-modeling-day-in-toronto-nov18/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 19:12:49 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[modeling]]></category>
		<category><![CDATA[Eclipse Modeling Day]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=233</guid>
		<description><![CDATA[I just read on Ian Skerrett&#8217;s blog that the Eclipse Foundation announced the organisation of Eclipse Modeling Days in New York City and Toronto. In Toronto, it will happen on Wednesday, November 18 in IBM&#8217;s Toronto Lab in Markham.
According to the press release:
This day-long event is your opportunity to learn about the Eclipse Modeling projects [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=233&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just read <a href="http://ianskerrett.wordpress.com/2009/10/02/growing-communities/">on Ian Skerrett&#8217;s blog</a> that the Eclipse Foundation announced the organisation of Eclipse Modeling Days in New York City and Toronto. In Toronto, it will happen on Wednesday, November 18 in IBM&#8217;s Toronto Lab in Markham.</p>
<p>According to the <a href="http://www.eclipse.org/org/press-release/20091002modelingday.php">press release</a>:</p>
<blockquote><p>This day-long event is your opportunity to learn about the Eclipse Modeling projects 		and understand how they can help your organization adopt a model driven development approach.</p></blockquote>
<p>Some of the abstracts for the sessions <a href="http://wiki.eclipse.org/Eclipse_Modeling_Day/Session_Abstracts_Toronto">can be found here</a>.</p>
<p>Attendance is free but people must register. You can find more information about how to register, as well as about the agenda of the event on <a href="http://wiki.eclipse.org/Eclipse_Modeling_Day">the relevant Eclipse wiki page</a>.</p>
Posted in eclipse, events, modeling Tagged: Eclipse Modeling Day <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=233&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/10/02/eclipse-modeling-day-in-toronto-nov18/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>
	</item>
		<item>
		<title>MMTF heavy model types made a bit lighter</title>
		<link>http://famelis.wordpress.com/2009/09/27/mmtf-heavy-model-types-made-a-bit-lighter/</link>
		<comments>http://famelis.wordpress.com/2009/09/27/mmtf-heavy-model-types-made-a-bit-lighter/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 21:00:41 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[MMTF]]></category>
		<category><![CDATA[modeling]]></category>
		<category><![CDATA[EMF]]></category>
		<category><![CDATA[Epsilon]]></category>
		<category><![CDATA[EuGENia]]></category>
		<category><![CDATA[GMF]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=227</guid>
		<description><![CDATA[Working towards my MSc thesis, I&#8217;m increasingly engaging with the Model Management Tool Framework (MMTF), an Eclipse-based tool framework for software model management, built by Rick Salay. At a glance, MMTF allows users to create macromodels (very roughly speaking, models that have other models as elements) in the form of &#8220;model interconnection diagrams&#8221; (MIDs). The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=227&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Working towards my MSc thesis, I&#8217;m increasingly engaging with the <a href="http://portal.acm.org/citation.cfm?id=1328291">Model Management Tool Framework</a> (<a href="http://se.cs.toronto.edu/index.php/MMTF">MMTF</a>), an <a href="http://www.eclipse.org/">Eclipse</a>-based tool framework for software model management, built by Rick Salay. At a glance, MMTF allows users to create <a href="http://www.springerlink.com/content/l8416687k7706117/">macromodels</a> (very roughly speaking, models that have other models as elements) in the form of &#8220;model interconnection diagrams&#8221; (MIDs). The elements of a MID are models of various types that are connected by model mappings (model mappings are models that describe how some other models are related).</p>
<p>As mentioned, the nodes/models in a MID are typed. For example, if we employ a MID to show how a particular UML class diagram is related to a particular UML sequence diagram, it would contain a node of type &#8220;UML class diagram&#8221; and a node of type &#8220;UML sequence diagram&#8221; and a mapping link between them (let&#8217;s not go into mapping types here). MMTF, being a framework, offers a way for users to plug in their own model types.</p>
<p>MMTF is built on top of the Eclipse line of model-related technologies (<a href="http://www.eclipse.org/modeling/emf/">EMF</a>, <a href="http://www.eclipse.org/modeling/gmf/">GMF</a>, <a href="http://www.eclipse.org/gef/">GEF</a> etc). Therefore the notion of plugging in a new model type in practice means creating a new metamodel (using EMF), creating a graphical diagram editor for it (using GMF) and then plugging it in MMTF as an Eclipse plugin. Such model types, that require a new full-blown GMF graphical editor are called &#8220;heavy&#8221;, in contrast to &#8220;light model types&#8221;. Light types are what Qiyu Zhu spent this summer implementing. The idea is that heavy types already registered with MMTF (we already have for example good support for state machine models) can be constrained (presently using only <a href="http://en.wikipedia.org/wiki/Object_Constraint_Language">OCL</a>) to create useful model subtypes.</p>
<p>As GMF is not an easy monster to fight against,  light model types are a very good step for MMTF. But useful as they are, heavy types still remain at the core, so anything that makes playing with GMF easier, is very good news indeed. I was therefore delighted to stumble upon <a href="http://www.eclipse.org/gmt/epsilon/doc/eugenia/">EuGENia</a>!</p>
<p>EuGENia, coupled with <a href="http://wiki.eclipse.org/Emfatic">Emfatic</a> can dramatically speed the creation of heavy model types. The user needs to create an ecore model using the simple DSL employed by Emfatic and then <a href="http://www.eclipse.org/gmt/epsilon/doc/articles/eugenia-gmf-tutorial/">properly annotate it</a> with GMF-related information. EuGENia then takes over the task of generating all the ugly GMF stuff. This might sound like a bunch, but compared to the plunging oneself into the dungeons of GMF, fighting graphical definition model dragons, mapping model balrogs and generator model orcs, EuGENia makes quite a pleasant journey!</p>
<p>In fact, EuGENia is part of a larger project, <a href="http://www.eclipse.org/gmt/epsilon/">Epsilon</a>, which in turn is part of the larger <a href="http://www.eclipse.org/gmt/">Generative Modeling Technologies</a> research incubator project of Eclipse. Epsilon also has other interesting features apart from EuGENia, such as supporting model <a href="http://www.eclipse.org/gmt/epsilon/doc/etl/">transformation</a>, <a href="http://www.eclipse.org/gmt/epsilon/doc/evl/">validation</a> and <a href="http://www.eclipse.org/gmt/epsilon/doc/eml/">merging</a>.</p>
Posted in MMTF, modeling Tagged: EMF, Epsilon, EuGENia, GMF <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/227/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=227&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/09/27/mmtf-heavy-model-types-made-a-bit-lighter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>
	</item>
		<item>
		<title>Obvious truths for engineers.</title>
		<link>http://famelis.wordpress.com/2009/06/09/engineering/</link>
		<comments>http://famelis.wordpress.com/2009/06/09/engineering/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 20:07:23 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[self-reference]]></category>
		<category><![CDATA[software engineering]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=215</guid>
		<description><![CDATA[One of the things I did during my vacation in Greece, was to attend my graduation ceremony and formally get my diploma from the NTUA. As a graduation gift, my father, an engineer himself (trained electrical-turned software), gave me Fred Brooks&#8217; The Mythical Man-Month, an altogether fitting gift for any young engineer.
On the first page [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=215&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>One of the things I did during my vacation in Greece, was to attend my graduation ceremony and formally get my diploma from the <a href="http://www.ntua.gr/index_en.html">NTUA</a>. As a graduation gift, my father, an engineer himself (trained electrical-turned software), gave me Fred Brooks&#8217; <a href="http://en.wikipedia.org/wiki/The_Mythical_Man-Month"><em>The Mythical Man-Month</em></a>, an altogether fitting gift for any young engineer.</p>
<p>On the first page of the book, my father scribbled two pieces of common wisdom, which I want to share here. Here&#8217;s an English-language version of what he wrote:</p>
<blockquote><p>Michalis,</p>
<p>Now that you became an engineer, remember:</p>
<ol type="a">
<li>A task can be done
<ol>
<li>well</li>
<li>fast</li>
<li>cheaply</li>
</ol>
<p>And of these three, you can only pick two at a time.</li>
<li> For everyday usage, the transcendental number <em>pi</em> is just 3.14.</li>
</ol>
<p>May your years be beautiful and creative.</p></blockquote>
<p>Obvious truths but, as is also the case of most of the things Brooks mentions in the <em>Mythical Man-Month</em>, people tend to overlook them. (No, people don&#8217;t forget that <em>pi</em> is 3.14, that reference is obviously an allusion to the <a href="http://en.wikipedia.org/wiki/KISS_principle">KISS principle</a>.)</p>
<p>Thanks dad.</p>
Posted in blogging, self-reference, software engineering  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/215/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=215&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/06/09/engineering/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>
	</item>
		<item>
		<title>The Story of Stuff</title>
		<link>http://famelis.wordpress.com/2009/05/14/the-story-of-stuff/</link>
		<comments>http://famelis.wordpress.com/2009/05/14/the-story-of-stuff/#comments</comments>
		<pubDate>Thu, 14 May 2009 06:49:02 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[environment]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=213</guid>
		<description><![CDATA[
This video was mentioned at the website of a Greek newspaper. It strongly reminded me of this one that Steve posted some time ago.
Posted in blogging, environment       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=213&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="text-align:center; display: block;"><a href="http://famelis.wordpress.com/2009/05/14/the-story-of-stuff/"><img src="http://img.youtube.com/vi/gLBE5QAYXp8/2.jpg" alt="" /></a></span></p>
<p>This video was <a href="http://www.enet.gr/?i=news.el.article&amp;id=43204">mentioned</a> at the website of a Greek newspaper. It strongly reminded me of <a href="http://www.vimeo.com/1709110?pg=embed&amp;sec=1709110">this one</a> that <a href="http://www.easterbrook.ca/steve/?p=198">Steve posted</a> some time ago.</p>
Posted in blogging, environment  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/213/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=213&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/05/14/the-story-of-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/gLBE5QAYXp8/2.jpg" medium="image" />
	</item>
		<item>
		<title>Two more blogs have landed</title>
		<link>http://famelis.wordpress.com/2009/03/19/another-two-blogs-in-the-planet/</link>
		<comments>http://famelis.wordpress.com/2009/03/19/another-two-blogs-in-the-planet/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 20:06:04 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[planet dcs@uoft]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=201</guid>
		<description><![CDATA[I&#8217;m happy to announce two additions to the list of blogs aggregated at  Planet DCS@UofT(*).
So, please put your hands together for Alicia Grubb&#8217;s Normally-On and Kelly Lyons&#8217;s Moving to Academia!
(*) I&#8217;m still open for proposals for a better name for it&#8230;
Posted in planet dcs@uoft       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=201&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m happy to announce two additions to the list of blogs aggregated at  <a href="http://www.cs.toronto.edu/~famelis/planet">Planet DCS@UofT</a>(*).</p>
<p>So, please put your hands together for <a href="http://www.cs.utoronto.ca/~amgrubb/Alicia_M_Grubb/Alicia_M_Grubb.html">Alicia Grubb</a>&#8217;s <em><a href="http://normallyon.wordpress.com/">Normally-On</a></em> and <a href="http://individual.utoronto.ca/klyons/">Kelly Lyons</a>&#8217;s <em><a href="http://moving2academia.blogspot.com/">Moving to Academia</a></em>!</p>
<p>(*) I&#8217;m still open for proposals for a better name for it&#8230;</p>
Posted in planet dcs@uoft  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=201&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/03/19/another-two-blogs-in-the-planet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>
	</item>
		<item>
		<title>Some interesting blogs</title>
		<link>http://famelis.wordpress.com/2009/03/11/some-interesting-blogs/</link>
		<comments>http://famelis.wordpress.com/2009/03/11/some-interesting-blogs/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 01:20:50 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=197</guid>
		<description><![CDATA[Here is a list of some SE-related blogs that I follow, beyond the ones syndicated at the Planet DCS@UofT.

Dimitris Kolovos
Ed Merks
Ian Skerrett
Martin Fowler
Cédric Brun
Stefan Tilkov
Markus Voelter
Bruce Silver
Keith Swenson
Sven Efftinge

And here&#8217;s a feed from all of them, bundled together via a Yahoo Pipe.
Any suggestions for some nice blog I don&#8217;t know about are welcome  
Posted [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=197&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is a list of some SE-related blogs that I follow, beyond the ones syndicated at the Planet DCS@UofT.</p>
<ul>
<li><a href="http://epsilonblog.wordpress.com/">Dimitris Kolovos</a></li>
<li><a href="http://ed-merks.blogspot.com/">Ed Merks</a></li>
<li><a href="http://ianskerrett.wordpress.com/">Ian Skerrett</a></li>
<li><a href="http://martinfowler.com/bliki/">Martin Fowler</a></li>
<li><a href="http://model-driven-blogging.blogspot.com/">Cédric Brun</a></li>
<li><a href="http://www.innoq.com/blog/st/">Stefan Tilkov</a></li>
<li><a href="http://voelterblog.blogspot.com/">Markus Voelter</a></li>
<li><a href="http://www.brsilver.com/wordpress/">Bruce Silver</a></li>
<li><a href="http://kswenson.wordpress.com/">Keith Swenson</a></li>
<li><a href="http://blog.efftinge.de/">Sven Efftinge</a></li>
</ul>
<p>And <a href="http://pipes.yahoo.com/pipes/pipe.run?_id=kglXRKMO3hGT5gAWBR50VA&amp;_render=rss">here&#8217;s a feed</a> from all of them, bundled together via a Yahoo Pipe.</p>
<p>Any suggestions for some nice blog I don&#8217;t know about are welcome <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
Posted in blogging  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=197&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/03/11/some-interesting-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>
	</item>
		<item>
		<title>Planet feed now available through Feedburner</title>
		<link>http://famelis.wordpress.com/2009/03/11/feedburner/</link>
		<comments>http://famelis.wordpress.com/2009/03/11/feedburner/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 00:20:49 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[planet dcs@uoft]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=192</guid>
		<description><![CDATA[You can now also grab the planet&#8217;s feed at:
http://feeds2.feedburner.com/planet-dcs-uoft
Posted in planet dcs@uoft       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=192&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You can now also grab the <a href="http://www.cs.toronto.edu/~famelis/planet">planet</a>&#8217;s feed at:</p>
<blockquote><p><a href="http://feeds2.feedburner.com/planet-dcs-uoft">http://feeds2.feedburner.com/planet-dcs-uoft</a></p></blockquote>
Posted in planet dcs@uoft  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=192&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/03/11/feedburner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>
	</item>
		<item>
		<title>Two new feeds</title>
		<link>http://famelis.wordpress.com/2009/03/08/ischool-podcast/</link>
		<comments>http://famelis.wordpress.com/2009/03/08/ischool-podcast/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 15:52:10 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[planet dcs@uoft]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=186</guid>
		<description><![CDATA[(This is an UPDATED version of an earlier post)
Good week for the Planet Planet DCS@UofT: two new feeds were added.
The iSchool Podcast feed was added on Friday. I learned about the iSchool  Podcast from Greg Wilson&#8217;s recent post about Charles Petzold&#8217;s talk being available online. From the Podcast&#8217;s &#8220;about&#8221; section:
The iSchool Podcast is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=186&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><em>(This is an <strong>UPDATED</strong> version of an earlier post)</em></p>
<p>Good week for the Planet <a href="http://www.cs.toronto.edu/~famelis/planet">Planet DCS@UofT</a>: two new feeds were added.</p>
<p>The <a href="http://podcasts.ischool.utoronto.ca/">iSchool Podcast</a> feed was added on Friday. I learned about the iSchool  Podcast from Greg Wilson&#8217;s <a href="http://pyre.third-bit.com/blog/archives/2178.html">recent post</a> about Charles Petzold&#8217;s talk being <a href="http://podcasts.ischool.utoronto.ca/?p=97">available online</a>. From the Podcast&#8217;s &#8220;<a href="http://podcasts.ischool.utoronto.ca/?page_id=2">about&#8221; section</a>:</p>
<blockquote><p>The iSchool Podcast is a project to bring some of the many interesting public lectures on the evolution of information (book history, evolution of the Internet, privacy etc) given at the University of Toronto to a wider audience. The project was dreamed up in the spring of 2008 when one Master’s student, <a href="http://www.linkedin.com/in/bruceharpham">Bruce Harpham</a>, discovered that he was missing many fascinating lectures at the Faculty of Information due to commuting and work commitments.</p></blockquote>
<p>And on Sunday, <a href="http://www.cs.toronto.edu/~sme">Steve Easterbrook</a> started <a href="http://www.easterbrook.ca/steve/">blogging</a>, which is indeed great news. This is what he <a href="http://www.easterbrook.ca/steve/?page_id=2">declares</a> as the mission statement of his blog:</p>
<blockquote><p>I started this blog because, after many years doing research in software engineering, I’m redirecting my research to address the challenge of climate change. I’m hoping the blog will help me document the journey. If I can find time to write stuff for it, that is.</p></blockquote>
<p>In fact, go ahead and do read his <a href="http://www.easterbrook.ca/steve/?p=3">first post on the matter</a>, it is inspiring.</p>
Posted in planet dcs@uoft  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=186&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/03/08/ischool-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>
	</item>
		<item>
		<title>my.access bookmarklet</title>
		<link>http://famelis.wordpress.com/2009/02/28/myaccess-bookmarklet/</link>
		<comments>http://famelis.wordpress.com/2009/02/28/myaccess-bookmarklet/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 20:10:49 +0000</pubDate>
		<dc:creator>plagal</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[library]]></category>

		<guid isPermaLink="false">http://famelis.wordpress.com/?p=173</guid>
		<description><![CDATA[Our beloved UofT Library system offers my.access, a wonderful service that allows us to access articles on electronic journals while not on the UofT network. And I&#8217;m too lazy to read up on how to set up VPN.
So I made a simple bookmarklet that automatically redirects pages such as this to the equivalent my.access page. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=173&subd=famelis&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Our beloved UofT Library system offers <a href="http://discover.library.utoronto.ca/utl_help/faq/my.access-faqs">my.access</a>, a wonderful service that allows us to access articles on electronic journals while not on the UofT network. And I&#8217;m too lazy to read up on how to set up VPN.</p>
<p>So I made a simple <a href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklet</a> that automatically redirects pages such as <a href="http://portal.acm.org/citation.cfm?id=776925">this</a> to the equivalent my.access <a href="http://portal.acm.org.myaccess.library.utoronto.ca/citation.cfm?id=776925">page</a>. I&#8217;ve tested it with ACM, IEEE and Springer and it works. If you think that&#8217;s useful, you can make your own by creating a bookmark somewhere convenient (such as the bookmarks toolbar) and putting the following javascript code in the place of the link:</p>
<pre>
<pre class="brush: jscript;">
javascript:void(location.href=location.protocol+'//'+location.host+'.myaccess.library.utoronto.ca'+location.pathname+location.search)
</pre>
</pre>
<p>(my command of javascript is a bit like my command of Spanish, i.e. almost non-existent, so any ideas on how to make the above snippet slicker, are welcome)</p>
Posted in fun Tagged: bookmarklet, library <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/famelis.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/famelis.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/famelis.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/famelis.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/famelis.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/famelis.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/famelis.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/famelis.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/famelis.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/famelis.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=famelis.wordpress.com&blog=3270829&post=173&subd=famelis&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://famelis.wordpress.com/2009/02/28/myaccess-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/415aa95cfeffb3d4422878784f0ded54?s=96&#38;d=identicon" medium="image">
			<media:title type="html">plagal</media:title>
		</media:content>
	</item>
	</channel>
</rss>