<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><description>Creating software with care.

We work hard in every single detail of our projects.

Our goal is to improve your project, company or business making it more usable, useful and understandable.</description><title>Linked</title><generator>Tumblr (3.0; @linkingpaths-blog)</generator><link>https://weblog.linkingpaths.com/</link><item><title>Icelandic Open Data, lambs and maps</title><description>&lt;p&gt;Two weeks ago I attended the first Open Knowledge Foundation Iceland hackathon. The main goal of the day was to work in some visualizations of already published information and, although the number of attendees was quite small as it’s usually the case with first editions, a few interesting ideas were proposed.&lt;/p&gt;

&lt;p&gt;Between them, one that caught my imagination was bringing to life the data published by the &lt;a href="http://www.rml.is/"&gt;The Icelandic Agricultural Advisory Centre&lt;/a&gt; about the quality of the lamb population in Iceland. This public institution provides professional consulting for farmers and every year they inspect 90% of lambs in iceland and publish &lt;a href="http://www.rml.is/is/bufjarraekt/skyrsluhald/saudfjarraekt/skyrsluhald"&gt;a few reports&lt;/a&gt; with the results. Thanks to this work they can for example pinpoint &lt;a href="http://www.rml.is/static/files/saudfjarraekt/RML/Ar/2013/domanidurst/gimbrar_haesti-omv_2013.pdf"&gt;the best ~300 farms in Iceland&lt;/a&gt; according to the quality of their lambs.&lt;/p&gt;

&lt;p&gt;As unfortunately and usually happens with Open Data the first step to tell the story behind these reports is to convert them in machine-readable information. We know this is usually a point hard to understand by non-developers and institutions: the problem with publishing information in PDF is that is not possible to feed these documents into any kind of software in a reliable way. These are formats designed to be read by humans, not by computers. The input for algorithms ideally should an homogeneous, ornament-free, text only format. So that was our first step.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://f.cl.ly/items/1H3Z1w2I1Y1H340n1I1F/Image%202014-03-06%20at%204.54.21%20p.m..png" style="max-width:890px"/&gt;&lt;/p&gt;

&lt;p&gt;With the help of &lt;a href="https://en.wikipedia.org/wiki/Pdftotext"&gt;pdftotext&lt;/a&gt;, a utility for converting PDF files to plain text files, we did a first explorative conversion of the PDFs.  As you can see the translation of a PDF &lt;a href="http://www.rml.is/static/files/saudfjarraekt/RML/Ar/2013/2013_skodun_hrutlamba.pdf"&gt;like this&lt;/a&gt; into its &lt;a href="https://github.com/linkingpaths/rml-lamb/blob/master/csv/2013_skodun_hrutlamba.txt"&gt;text version&lt;/a&gt; is far from perfect but the layout is conserved on the crucial tabular data so it’s a good start. After some clean up and manual editing we got our first &lt;a href="https://github.com/linkingpaths/rml-lamb/commit/55c29def518c7d0997b5f53e61ea2d80112c9efc#diff-2e30ec6e076dd531852a09adffbf563aR2"&gt;csv readable files&lt;/a&gt;:&lt;/p&gt;

&lt;script src="https://gist.github.com/aitor/5493879944ffa5484eb8.js"&gt;&lt;/script&gt;

&lt;p&gt;Many people –and almost every Icelander– describe Icelandic lamb as the best lamb in the world. This is usually attributed to the fact that the animals roam free during the summer only to be collected again in September during a special meeting called &lt;strong&gt;&lt;a href="http://icelandreview.com/stuff/multimedia/2007/10/15/herding-sheep"&gt;Réttir&lt;/a&gt;&lt;/strong&gt;  where Icelandic sheep farmers invite family and friends to help out with the round-up:&lt;/p&gt;

&lt;div class="fix_this" width="840" style="margin: 30px 0; overflow:hidden"&gt;
&lt;iframe width="889" height="521" src="//www.youtube.com/embed/0xr1DJkiWnI?rel=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;p&gt;Given the lambs stay in wild nature for many months subject to the weather and local climate, we thought it would be interesting to map its quality and some other features and see if we could &lt;strong&gt;see some geographical patterns on the data&lt;/strong&gt;. The first problem we found was that the farm information was not geolocated.&lt;/p&gt;

&lt;p&gt;Luckily, Iceland is a country that dedicates many resources to the management of geographical information, in part because the rift associated with the &lt;a href="https://en.wikipedia.org/wiki/Mid-Atlantic_Ridge"&gt;Mid-Atlantic Ridge&lt;/a&gt;, runs across the country from the southwest to the northeast. This rift marks the division between the European and North American tectonic plates, and moves at the not negligible spreading rate of ~2 cm per year giving Iceland its earthquakes, its volcanic nature and creating constant changes in the landscape.&lt;/p&gt;

&lt;p&gt;The  &lt;a href="http://www.skra.is/"&gt;Icelandic National Registry&lt;/a&gt; provides access to geo information of every parcel in Iceland and although for the first tests I used &lt;a href="https://github.com/pallih/fasteignamat-functions"&gt;some python code&lt;/a&gt; to query their server, we thought it would useful to extract and polish this piece of code into its own gem: &lt;a href="https://github.com/linkingpaths/skra-geo"&gt;skra-geo&lt;/a&gt;. With this working it was possible to correlate the name of a farm like &lt;a href="http://ja.is/kort/?type=aerial&amp;amp;x=378995&amp;amp;y=435348&amp;amp;z=10"&gt;Bjarteyjarsandur&lt;/a&gt; with its coordinates [378995, 435348] and update the csv files.&lt;/p&gt;

&lt;p&gt;But wait a  moment, those coordinates don’t look like the usual lat-lon pair… Yes, Iceland uses its own reference system called ISN93 (and its newest revision  ISN2004). You can learn more about the reasons for its use &lt;a href="http://geoforum.no/lokalavdelinger/sognOgFjordane/filer/foredrag-fra-lokale-plan-og-kartdagar-2011/geodtic-problems-in-iceland/at_download/file"&gt;in this presentation&lt;/a&gt; but the main reason is that the aforementioned tension in the rift deforms the network of reference GPS stations constantly, creating a context with very unique challenges. Again, we have open source’d a ruby gem called &lt;a href="https://github.com/linkingpaths/skra-geo"&gt;isnet93&lt;/a&gt; that allows simple conversion between this system and the internationally supported &lt;a href="https://en.wikipedia.org/wiki/World_Geodetic_System"&gt;WGS84&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Finally we were able to &lt;a href="https://github.com/linkingpaths/rml-lamb/blob/master/csv/2013_gerd_yfir_950.csv"&gt;assign geographical coordinates&lt;/a&gt; to each farm in the reports and &lt;a href="https://github.com/linkingpaths/rml-lamb"&gt;our csv files&lt;/a&gt; were ready to be put on a map. For this task we sticked to &lt;a href="https://cartodb.com/"&gt;CartoDB&lt;/a&gt; a great mapping service that makes easy to build visualizations on top of tabulated data. After importing the data, we played with the configuration of the different visual styles and create a custom basemap. After more tweaking here you have an initial release of the map according to the fat in the lambs and the general quality:&lt;/p&gt;

&lt;script&gt;
  $(document).ready(function () {
    $('#lamb-map-selector').change(function(){
      var map = $(this).val();
      $("#current-lamb-map").html($("#"+map).html());
    });
    $("#current-lamb-map").html($("#lamb-by-quality").html());
  });
&lt;/script&gt;

&lt;h3 style="margin-bottom: 1em"&gt;Top icelandic farms in 2013 according to lamb 
&lt;select name="lamb-map-selector" id="lamb-map-selector"&gt;
  &lt;option value="lamb-by-quality"&gt;overall quality&lt;/option&gt;
  &lt;option value="lamb-by-fat"&gt;fat&lt;/option&gt;
&lt;/select&gt;
&lt;/h3&gt;

&lt;div id="current-lamb-map"&gt;
&lt;/div&gt;

&lt;div id="lamb-by-quality" class="lamb-map" style="display:none;"&gt;
  &lt;iframe width="100%" height="520" frameborder="0" src="http://iceland.cartodb.com/viz/426ff882-a3b3-11e3-a041-0e73339ffa50/embed_map?title=false&amp;amp;description=false&amp;amp;search=false&amp;amp;shareable=true&amp;amp;cartodb_logo=true&amp;amp;layer_selector=false&amp;amp;legends=true&amp;amp;scrollwheel=false&amp;amp;fullscreen=true&amp;amp;sublayer_options=1&amp;amp;sql=&amp;amp;sw_lat=63.11463763252091&amp;amp;sw_lon=-24.005126953125&amp;amp;ne_lat=66.8351653521874&amp;amp;ne_lon=-14.073486328125" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;div id="lamb-by-fat" class="lamb-map" style="display:none;"&gt;
&lt;iframe width="100%" height="520" frameborder="0" src="http://iceland.cartodb.com/viz/fd37208e-a3bb-11e3-a738-0e10bcd91c2b/embed_map?title=false&amp;amp;description=false&amp;amp;search=false&amp;amp;shareable=true&amp;amp;cartodb_logo=true&amp;amp;layer_selector=false&amp;amp;legends=true&amp;amp;scrollwheel=false&amp;amp;fullscreen=true&amp;amp;sublayer_options=1&amp;amp;sql=&amp;amp;sw_lat=63.31761655103504&amp;amp;sw_lon=-23.917236328125&amp;amp;ne_lat=67.01171909603052&amp;amp;ne_lon=-13.985595703125" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;p&gt;Two interesting details are evident in the these maps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Although the quality is very high in all the country, it’s possible to detect small clusters of farms in areas like &lt;a href="https://en.wikipedia.org/wiki/Gr%C3%ADmsnes-_og_Grafningshreppur"&gt;Grímsnes&lt;/a&gt; where it’s possible to find the best of the best. The reason for this concentration could be connected with different reasons like good local practices in the treatment of the sheep or specially good grazing areas.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;In the second map, built using the amount of fat in the lambs of the best farms, we can see clearly a front running in the SW-NE axis in the isthmus of the &lt;a href="https://en.wikipedia.org/wiki/Vestfir%C3%B0ir"&gt;Vestfirðir&lt;/a&gt; peninsula.  This could initially correlated with the &lt;a href="http://icelandreview.com/news/2013/11/07/sheep-still-missing-west-fjords"&gt;harsh&lt;/a&gt; &lt;a href="http://icelandreview.com/news/2014/01/08/bus-blows-road-west-fjords"&gt;winter&lt;/a&gt; &lt;a href="http://icelandreview.com/news/2014/02/28/sun-south-snow-north"&gt;conditions&lt;/a&gt; in this area, that forces the animals to be better insulated, but further research to discard other factors would be interesting.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;We’ve had a lot of fun creating these maps and we’ve only started to scratch the surface of the information. For example, the &lt;a href="http://www.rml.is/"&gt;RML&lt;/a&gt; has been publishing these reports for more than a decade now, and it’ll be amazing to integrate all the data to see trends over time.  Modern tech tools and fast development iterations are bringing new possibilities to every industry… sheep farming included.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/78767700473</link><guid>https://weblog.linkingpaths.com/post/78767700473</guid><pubDate>Thu, 06 Mar 2014 19:09:54 +0000</pubDate></item><item><title>Conferences: be clear &amp; respect your speakers</title><description>&lt;p&gt;Last week my proposal &lt;a href="https://codebits.eu/intra/s/proposal/485"&gt;“Scripting your way to (im)mortality”&lt;/a&gt; for Codebits was accepted. When I submitted the abstract, I knew the topic was not the usual, worn introduction-to-tdd talk and that, given the audience at this conference is composed by very talented technical people, getting selected would be difficult.  Surprisingly, I got &lt;a href="https://codebits.eu/intra/s/proposal/485#postcomments"&gt;very positive feedback&lt;/a&gt; and the organizers &lt;a href="https://twitter.com/codebits/status/433303521337696256"&gt;announced&lt;/a&gt; its selection. They contacted me almost immediately after the tweet asking for any special requests/questions I could have. I asked for a few details (expected projector’s resolution, etc.) including what personal information they needed for coordinating my trip.&lt;/p&gt;

&lt;p&gt;Last monday, one of the organizers contacted me to let me know that “there might be some confusion” since they “usually” don’t pay for any travel or accommodation expenses.  Apparently “the only exception would be when we invite a high profile speaker who otherwise wouldn&amp;rsquo;t attend” and that in that case their budget “is very tight and usually amounts to about 5 people (speakers)”.&lt;/p&gt;

&lt;p&gt;I could not believe what I was reading. Covering –at least– the travel and accommodation expenses is a common practice for all kind of events (including free ones). So if, for whatever reason, that is not the case &lt;strong&gt;they should state it very clearly&lt;/strong&gt; in every speaker-oriented communication, including the Call For Papers. But the fact they give &lt;strong&gt;undisclosed&lt;/strong&gt; preferential treatment to a number of speakers is just shocking.  If you check the speakers lineup of most tech conferences, you’ll see an appalling number of repeated names. These are the “high profile” guys. This is the fuckingly boring  &lt;a href="http://zachholman.com/posts/the-conference-circuit/"&gt;conference circuit&lt;/a&gt; at work.  Adding insult to injury, I know through personal contacts that the only-high-profiles expenses policy was not applied in previous editions.&lt;/p&gt;

&lt;p&gt;When I started talking in spanish conferences many years ago I decided two things: I wouldn&amp;rsquo;t charge for presenting them and I wouldn&amp;rsquo;t pay –directly or indirectly–to give them. Let me explain the reasoning behind those two maxims.&lt;/p&gt;

&lt;h3&gt;Not getting paid for your talks&lt;/h3&gt;

&lt;p&gt;I believe in sharing ideas and knowledge because the simple process of presenting and discussing your thoughts in public have the marvelous collateral effect of making them clearer and more useful.&lt;/p&gt;

&lt;p&gt;First, because nobody wants to be publicly exposed as a total idiot, and therefore all of us make big efforts to write down, edit, polish and present our ideas in the most intelligible way. Second –and more importantly– because once you’ve exposed your ideas, they are subject to exploration by others and that connected research is, in the end, what brings society &lt;a href="http://www.amazon.com/Where-Good-Ideas-Come-Innovation-ebook/dp/B0046ZRZ30"&gt;good ideas&lt;/a&gt;. This mutualism between speaker and attendees is, at least for me, enough payment for delivering my talk.&lt;/p&gt;

&lt;p&gt;Actually, I think this exchange is better achieved in &lt;a href="https://en.wikipedia.org/wiki/Unconference"&gt;unconferences&lt;/a&gt;, where the structure enabling the dialog between speaker and attendee –that is, the organization– is minimum. The usual bias in the organizers that creates &lt;a href="http://zachholman.com/posts/the-conference-circuit/"&gt;the circuit&lt;/a&gt; is removed, and as consequence they are usually more diverse and interesting. That is reason why we sponsor events like &lt;a href="http://sosz14.cachirulovalley.com/"&gt;Startup Open Space Zaragoza 2014&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;Not paying for giving your talks&lt;/h3&gt;

&lt;p&gt;Actually by “not paying” I mean &lt;strong&gt;not paying more&lt;/strong&gt;, because any –serious – speaker is already committing a big number of hours (aka money) to research, prepare, rehearse and deliver the talk without getting any economic compensation. As mentioned before I feel this time is well spent, but many conferences tend to forget that most speakers are running their talks in a nonprofit manner.&lt;/p&gt;

&lt;p&gt;In this regard, I think the main role of the organizers should be to enable the most interesting speakers to share their ideas without taxing them with an extra load of expenses on top of the time and effort they are already devoting to their talk. For community and “free” events this means finding sponsors and partners to pay for the cost of creating a sharing context and –optionally– giving them some visibility. In for-profit events that means… well… basically using some of your damn profits to cover the cost of the people that make your event possible.&lt;/p&gt;

&lt;p&gt;No matter what is the type of conference you are organizing you should respect the effort and time spent by your speakers  &lt;strong&gt;to make your conference better&lt;/strong&gt; and try to remove any other possible extra burden. If for some reason you can’t do so, it’s just fair to be clear from the very beginning about it.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/77296043054</link><guid>https://weblog.linkingpaths.com/post/77296043054</guid><pubDate>Thu, 20 Feb 2014 18:59:37 +0000</pubDate></item><item><title>Consuming your own APIs</title><description>&lt;p&gt;As mentioned in our last &lt;a href="http://weblog.linkingpaths.com/post/75423473735/week-462"&gt;weeknote&lt;/a&gt;, we’ve resumed the development of Stage’s API(s). I’ve been personally interested in an approach that seems to be slowingly morphing into a &lt;em&gt;de facto&lt;/em&gt; standard in the IT industry: the creation and use of your own APIs as data source for your products. For a long time we’ve seen how different companies I deeply respect for their technological achievements have started using this technique:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Twitter&lt;/strong&gt; has been dogfooding its APIs to build the twitter.com website for a &lt;a href="https://blog.twitter.com/2010/tech-behind-new-twittercom"&gt;few years now&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Heroku&lt;/strong&gt; dashboard internally uses their ever &lt;a href="https://devcenter.heroku.com/articles/platform-api-reference"&gt;increasing APIs&lt;/a&gt; to render user’s apps status pages and resource management tools.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The case of &lt;strong&gt;GitHub&lt;/strong&gt; is almost identical. From the &lt;a href="http://developer.github.com/v3/git/commits/"&gt;information about a commit&lt;/a&gt; to the &lt;a href="http://developer.github.com/v3/orgs/teams/#create-team"&gt;creation of a team in your organization&lt;/a&gt; everything is done using their public APIs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Kickstarter&lt;/strong&gt; uses an &lt;a href="http://syntaxi.net/2013/03/24/let-s-explore-kickstarter-s-api/"&gt;internal, not publicly announced API&lt;/a&gt; to feed its iPhone app. I found this extremely interesting since it denies the usual API-as-service-for-others point of view and focus on giving yourself a controlled test field for exploring what you want to enable external parties to do with your platform.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Although is hard to find public documentation on the building of these kind of systems, we’ve been collecting small bits and pieces here and there and last week we started writing some code to implement a integral API(s) for Stage. We already had a micro-core with basically read-only info about events and bookings but the idea is to grow this into a comprehensive API(s), complete enough to be used as main engine for our own product.&lt;/p&gt;

&lt;p&gt;In my humble opinion, there are a few clear advantages to this approach:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Language independence&lt;/strong&gt;. I think this is too often ignored: once you have an API acting as central provider of your service/product you have gained the ability to create consumers for it in any desired language. Linking Paths has been a Ruby-only company for years and we’ve been very happy with it, but it’s useful and reassuring to know that we can use different technologies when they are a better fit in a given context. APIs makes bootstrapping these situations much easier.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Increased device flexibility&lt;/strong&gt;. As a collateral effect of the previous point, the building of device/context specific applications for your project can assume that the basic core of its functionality is done from day 1, since they’ll be using the API(s) as foundation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Easier implementation of platform-wide policies&lt;/strong&gt;. From monitoring to quotas, the API(s) become a clear coding point for all kinds of horizontal strategies with the confidence that you can impose then uniformly &lt;strong&gt;or&lt;/strong&gt; to manage them in a case-by-case fashion (twitter’s own apps preferential treatment comes to my mind).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Raised awareness on your system reliability&lt;/strong&gt;. When the downtime or bugs in your APIs affects only external, third-party systems is easy to get used to it or to simply underestimate the importance of these errors. Using the same channel –even if different conditions are applied to internal clients– increases the trust that all the parts have on your service.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Promotion of distributed systems&lt;/strong&gt;. An API(s) gives your service of a massive accessibility. It&amp;rsquo;s no accident that the documentation of many APIs shows how to access them with cURL from the command line. Thanks to this, the idea of creating small services that can reuse functionality is promoted, moving a product from the traditional monolithic approach to one that composed by many micro-services.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;All those undeniable merits are not the only consequences of an API based product. There are, of course, some disadvantages:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Increased difficulty to change contracts&lt;/strong&gt;. From the moment your API is made public and clients start using it you &lt;em&gt;should be very careful&lt;/em&gt; changing this contract. The obvious countermeasure to this problem is &lt;a href="http://pivotallabs.com/api-versioning/"&gt;to version&lt;/a&gt; your API, but strategies like using it privately for a long test period —like in the Kickstarter case mentioned before— are also worthy of being explored.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;More complexity&lt;/strong&gt;. Any new indirection layer adds complexity to a system and using an API to access your data is not different. In the same way, using an ORM, a MVC paradigm, or a specific web framework injects problems that simply don’t exist if you use SQL or write everything by yourself in a single file.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The common point between all this decisions however is that we –the tech community– realized many years ago that &lt;em&gt;in most contexts&lt;/em&gt; these tools offered more benefits than problems and, therefore, made sense to use them.&lt;/p&gt;

&lt;p&gt;It took me many years to realize that coding –and I’d dare to say life– is basically that: &lt;strong&gt;the art of managing trade-offs&lt;/strong&gt;.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/75605008176</link><guid>https://weblog.linkingpaths.com/post/75605008176</guid><pubDate>Tue, 04 Feb 2014 18:44:52 +0000</pubDate></item><item><title>Week #462</title><description>&lt;p&gt;Very busy but not terribly productive week (worst combination ever). Working in different areas at the same time with limited resources often decrease immediate outcome in each one of them although in some cases –eg. when the purpose of the work is research/exploration– it’s the only way. At the same it’s infinitely more funny than sticking to a piece of code for 5 days.&lt;/p&gt;

&lt;p&gt;This has been the case with the work done this week in &lt;a href="http://www.stagehq.com"&gt;Stage&lt;/a&gt;. We’ve started the development of its API(s) with the clear short-term goal of growing the micro-core we already had to the point we can use it internally as datasource for our own web app. We expect this to collaterally provide us with a robust API that will become eventually a core value for our customers. Next week we’ll publish a post about the logic behind this decision and the advantages/disadvantages it involves.&lt;/p&gt;

&lt;p&gt;The work done with Verkami this week is noteworthy too. We’ve been working in the creation of a proper category system for the platform. So far we have been using a tag-based system for characterizing each project. These tags are fed into a system that enable Verkami’s staff to create dynamic selections of projects (eg. Halloween: projects tagged with horror and movie or book or music). This has been working pretty well for years –and will be maintained in the future– but we have detected too that a proper ontology where each project is related to one category will be useful to improve the presentation, discovery and statistical analysis.&lt;/p&gt;

&lt;p&gt;Additionally a new partners program will be announced soon. It has been a long planned feature that we expect will promote discovery using your favorite magazines, institutions and websites to recommend you the most interesting projects.&lt;/p&gt;

&lt;p&gt;Going back to Linking Paths, we’ve been thinking about the visual foundation of our company. I’ve felt many times in the past that there has been a lack of building blocks enabling a consistent and quick visual bootstrapping of ideas/products/sideprojects. A few months ago I read about &lt;a href="https://www.mapbox.com/blog/base-styleguide-and-css-framework/"&gt;base, a styleguide and CSS framework by the smart guys at Mapbox&lt;/a&gt;, a nice implementation of this idea. As part of a potential redesign of our website we’re getting more and more excited with the idea of having a live reference of our visual identity. Lots of work ahead.&lt;/p&gt;

&lt;p&gt;Finally two possible side projects have received a few hours of attention this week: first —unnamed still— is a small iOS app to discover food’s seasonality. It’s too soon for talking about it but the idea is connected with the exploration of API-first services and one of my obsessions, gastronomy.&lt;/p&gt;

&lt;p&gt;Second project —unnamed too— is a variation of a previous idea to provide in-depth, realtime analytics to physical locations. In a first approximation to the problem I got stuck due to the cost of the infrastructure to setup for each new location. A few days ago, reflecting on the almost universal use of smartphones in some countries, brainstorming for creating a super cheap setup started. Both side-projects are right now just written ramblings on notebooks but who knows… maybe they will see the light of day soon!&lt;/p&gt;

&lt;p&gt;So, that’s it! Have a great week!&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/75423473735</link><guid>https://weblog.linkingpaths.com/post/75423473735</guid><pubDate>Sun, 02 Feb 2014 23:10:00 +0000</pubDate></item><item><title>Week #459</title><description>&lt;p&gt;January is flying by! This week has been devoted to plan 2014 with customers. Big new features on the roadmaps, ideas to strengthen their teams and products and lots of energy to make this a great year.&lt;/p&gt;

&lt;p&gt;One of the things &lt;a href="https://twitter.com/_aitor/status/418000634512953344"&gt;I&amp;rsquo;ve committed myself&lt;/a&gt; this year is to led Linking Paths with two main values: happiness and meaningfulness. With this two states on mind I&amp;rsquo;ll pursue a great year not only for me, but for my customers, my and their projects and eventually anyone that gets in contact with the company.&lt;/p&gt;

&lt;p&gt;One of the first efforts to materialize this view was expected to happen this weekend. The project –codenamed &lt;strong&gt;&amp;lsquo;Bila&amp;rsquo;, basque for search&lt;/strong&gt;– has been our first humble attempt to transform year kickoff meetings into inspirational experiences. As mentioned at the beginning of the post, it&amp;rsquo;s normal practice for many companies to schedule special meetings at the beginning of every year with the intention of define the goals and objectives for the new year. These meetings are a good tool to organize the work, but the fact that they are usually attended by the same people, with the same agenda and in the same space makes them a horrible tool for inspiration.&lt;/p&gt;

&lt;p&gt;I wanted to change all this by transforming the usual year-planning private meeting into a semi-public inspirational event.   The idea: invite one of Linking Paths customers to spend a weekend exchanging ideas with a multidisciplinary (designers, marketing, makers, etc.) team of selected brilliant people interested in their core business.&lt;/p&gt;

&lt;p&gt;To increase the intensity of the exchange we&amp;rsquo;d host the event and accommodate all the attendees in a nice countryside house in the Basque Country. To make it more refreshing –and interesting for everyone– the schedule will be filled up with secret activities visiting companies from different sectors –but again connected to our customer&amp;rsquo;s core business– that I think embody the idea of innovation.&lt;/p&gt;

&lt;p&gt;Opening the event to people that is not in daily contact with your product or service brings fresh air to the conversation and forces you to be open to new ideas. Additionally short visits to  companies doing interesting stuff is, at least for me, one of the best energy boosters. Add a group of smart folks to the mix and you&amp;rsquo;ve the perfect combination for a happy beginning of year at work.&lt;/p&gt;

&lt;p&gt;Unfortunately I&amp;rsquo;ve been forced to delay the event in the last moment due to some unexpected cancellations on the attendees group. Although a lot of work was made preparing the event, I&amp;rsquo;ve decided to postpone it before seeing the idea implemented in a poor way. I&amp;rsquo;m sure it&amp;rsquo;s a great way to make Linking Paths relationship with our customers more meaningful and it&amp;rsquo;ll be done sooner of later. No need to rush.&lt;/p&gt;

&lt;p&gt;So that was our week. I hope you all have had a great beginning of year. Let&amp;rsquo;s see what else does 2014 bring us. Rock&amp;amp;roll!&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;&lt;strong&gt;Addendum&lt;/strong&gt;: chavalina &lt;a href="http://weblog.linkingpaths.com/post/73112101856/week-459#comment-1197456238"&gt;mentioned&lt;/a&gt; in the comments that an event like this can be pretty hard to achieve.&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;d like to clarify that the event was in fact 99% ready: activities booked, external businesses/companies willing to participate, accommodation rented, attendees and customer ready to rock… I&amp;rsquo;m pretty confident the experience will be great if we can find the right moment to do it.&lt;/p&gt;

&lt;p&gt;The most difficult part of doing this –and the reason why there is not a lot of companies doing it– is that in order to make it low-risk for the customer and attractive for the attendees, we were going to pay for everything and celebrate the event during a weekend. &amp;ldquo;Only&amp;rdquo; thing we were asking them was two days of their free time. And if you look at it from a purely financial point of view it doesn&amp;rsquo;t make sense for Linking Paths. More costs and no &lt;em&gt;economic&lt;/em&gt; profit for a meeting that we could do in the traditional way.&lt;/p&gt;

&lt;p&gt;But that is exactly what I was trying to highlight: the benefit of this kind of initiatives is not economical but relational. We care about our customer&amp;rsquo;s businesses to the point of investing our time and money on them, inverting the traditional approach to a client-partner interaction. We are confident that this will make our relationship more solid and trustable and that is, on itself, the best asset.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/73112101856</link><guid>https://weblog.linkingpaths.com/post/73112101856</guid><pubDate>Sun, 12 Jan 2014 18:39:00 +0000</pubDate><category>weeknote</category></item><item><title>Week #458 – Reboot</title><description>&lt;p&gt;It was 1999. My second year as developer/project manager in my first job in the software industry. I remember the moment clearly.&lt;/p&gt;

&lt;p&gt;I&amp;rsquo;ve been on the phone for about 15 minutes solving a problem with a customer. The issue is finally solved and I&amp;rsquo;m hanging the phone. The administrative officer of the company enters the developers&amp;rsquo; room, where I&amp;rsquo;m the only person at the moment to make a photocopy.&lt;/p&gt;

&lt;p&gt;She&amp;rsquo;s a nice forty-something woman that sees and hears everything in the office: books plane tickets, arranges meetings, pays and generates invoices, etc. She fills a strange space in the company&amp;rsquo;s hierarchy, in permanent contact with the CEO but considered a coworker by every employee.&lt;/p&gt;

&lt;p&gt;Waiting in front of the copier, she stares at me for a few seconds and, without any introduction, says:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;ldquo;You&amp;rsquo;ll do big things… but not here.&amp;rdquo;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The tone is friendly and positive, and oracle-esque omen of good times ahead. Then she gets the paper and leaves the room, never to mention the conversation again.&lt;/p&gt;

&lt;div style="text-align: center;margin: 5em 0;"&gt;⁂&lt;/div&gt;

&lt;p&gt;For some reason I don&amp;rsquo;t fully understand, the cryptic moment got stuck in my mind. During years it grew inside me, with the force and bitterness of the truths that one don&amp;rsquo;t have the courage to admit. A deep sense of unfulfilled potential has always been harbored in my heart.&lt;/p&gt;

&lt;p&gt;I joined Linking Paths in 2007 and being cofounder of the company brought me very good moments. However, the period 2009-2012 was the hardest, most demanding and stressful period of my professional life. It took a heavy toll on my mood and my health. During this period I made big sacrifices on many areas of my personal life that now I deeply regret. Thankfully, during all these bad moments I&amp;rsquo;ve had the unconditional support of &lt;a href="http://aitor.is/loving-bego/"&gt;my wife&lt;/a&gt;. I&amp;rsquo;d never been able to carry on without her help.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://weblog.linkingpaths.com/post/46834870679/day-2923"&gt;Last April&lt;/a&gt; I became principal and only owner of Linking Paths. I kept working on our ongoing projects and products but intentionally stopped writing in the blog and looking for new projects. As planned, I&amp;rsquo;ve used 2013 to think about what is a company, why I run a company, what is the goal of Linking Paths and pondering my own reactions to those questions. I don&amp;rsquo;t have clear answers for all these questions, but I&amp;rsquo;ve many conclusions and ideas on them that I&amp;rsquo;ll like to share with you in future posts.&lt;/p&gt;

&lt;p&gt;Fifteen years later I&amp;rsquo;m rebooting myself, and in the process I&amp;rsquo;m rebooting my company. I invite you to join me in the process.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/72102135998</link><guid>https://weblog.linkingpaths.com/post/72102135998</guid><pubDate>Fri, 03 Jan 2014 17:52:12 +0000</pubDate></item><item><title>Day 2923.</title><description>&lt;p&gt;On April 1st, 2005 I founded Linking Paths. By that time I didn&amp;rsquo;t know almost anything about running a company, especially after the main idea behind it fell apart seven days later. And I&amp;rsquo;m still not sure about what is this all about, but that&amp;rsquo;s another story. I&amp;rsquo;ve an announcement to do today and felt this birthday a round date for it.&lt;/p&gt;

&lt;p&gt;This is something that some of you, dear readers, already knew. A few of you guessed it since I haven&amp;rsquo;t write any weeknote for the past months. But today is finally becoming formal, public and final: &lt;strong&gt;yesterday was my last day at Linking Paths&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;But &lt;strong&gt;this is not its end&lt;/strong&gt;. Aitor has taken the lead and I&amp;rsquo;m sure he will do many memorable things in the coming time. That&amp;rsquo;s is what he has always done since he joined me in 2007. &lt;strong&gt;I made this decision for personal reasons&lt;/strong&gt;, I really feel it&amp;rsquo;s time for a change. For me and for Linking Paths.&lt;/p&gt;

&lt;p&gt;I would like to use this last post to thank you all of you, friends, customers and occasional readers, for your support all this time. It has been a long and worthwhile journey and I really appreciate it. I&amp;rsquo;m very proud of what we&amp;rsquo;ve achieved together in this eight years, even with its not-so-funny moments. Thank you very much for being there.&lt;/p&gt;

&lt;p&gt;That&amp;rsquo;s all. &lt;strong&gt;Take care&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Alberto.&lt;/p&gt;

&lt;p&gt;PS: To satisfy the curious. I&amp;rsquo;m taking a couple of months off while closing the transition for some customers that took longer than expected. No plan after that  yet.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/46834870679</link><guid>https://weblog.linkingpaths.com/post/46834870679</guid><pubDate>Mon, 01 Apr 2013 09:38:00 +0100</pubDate><category>alberto</category><category>anniversary</category><category>goodbye</category></item><item><title>Week #415</title><description>&lt;p&gt;Another week finishing… and more work done in multiple fronts. This week &lt;a href="http://translate.google.com/translate?sl=is&amp;amp;tl=en&amp;amp;js=n&amp;amp;prev=_t&amp;amp;hl=en&amp;amp;ie=UTF-8&amp;amp;eotf=1&amp;amp;u=http%3A%2F%2Fwww.visir.is%2Fhatt-i-20-bila-arekstur-a-hafnarfjardarveginum%2Farticle%2F2013130309379"&gt;was rough in Iceland&lt;/a&gt; due to weather conditions but as with the postal carriers &lt;a href="http://en.wikipedia.org/wiki/United_States_Postal_Service_creed"&gt;neither snow nor rain nor heat nor gloom of night&lt;/a&gt; stays us from our deploys.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Support and some billing in &lt;a href="http://www.stagehq.com"&gt;Stage&lt;/a&gt;. The week started on Sunday&amp;rsquo;s night with some issues related to our fees. As we state clearly in our product&amp;rsquo;s homepage our fee for &lt;a href="http://www.stagehq.com/pricing"&gt;free tickets is 0&lt;/a&gt;. The reason for this policy is that we&amp;rsquo;ve always supported people organizing  open, community-oriented, free events providing them our service for free. However many organizers promote their events giving discounts and coupons to customers that sometimes cover the full ticket price and we think that is purely &lt;a href="http://help.stagehq.com/kb/billing-faq/should-i-pay-stages-fee-for-tickets-that-cost-0-after-coupons"&gt;a marketing decision&lt;/a&gt;, a good one probably but marketing nonetheless and therefore the 0 fee doesn&amp;rsquo;t apply.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Alberto met with Bazaar&amp;rsquo;s founders during the week to push the project further and continue development in the first shop powered by the system. The shop is designed to interact with a central catalog system (Bazaar) and one of the main challenges is to ensure a good performance and stability for this interaction.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;In the last weeks some testing on &lt;a href="http://foundation.zurb.com/"&gt;Foundation 4&lt;/a&gt; was done. Although the new version has been a complete revamp and there are obviously &lt;a href="https://github.com/zurb/foundation/pull/1730"&gt;some small bugs&lt;/a&gt; to be ironed out in the coming weeks, experience has been quite solid so far. It&amp;rsquo;s well structured, configurable and &lt;a href="http://zurb.com/article/1173/foundation-4-is-here-the-smartest-foundat"&gt;mobile-first&lt;/a&gt;. It&amp;rsquo;s a very interesting tool for us:  you can prototype an app in no-time, there is a good number of &lt;a href="http://foundation.zurb.com/templates.php"&gt;add-ons&lt;/a&gt; and &lt;a href="http://foundation.zurb.com/docs/"&gt;the documentation&lt;/a&gt; is clear and simple.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Facebook integration in Verkami is basically done. The internationalization process &lt;a href="https://twitter.com/_aitor/status/308578077024346113"&gt;is madness&lt;/a&gt; and &lt;a href="https://developers.facebook.com/docs/concepts/opengraph/"&gt;Open Graph&lt;/a&gt; custom actions must be &lt;em&gt;manually&lt;/em&gt; approved by Facebook, but now everything is in place for slowly rolling out the feature to users. Most of the implementation is transparent to users and not terribly complex but I&amp;rsquo;m happy with it because is configurable (letting users to share more/less info in their timelines), extendable (allowing verkami staff to add new sharing options in the future) user-oriented (detecting and connecting new facebook users with their old verkami users, conserving contribution history) and multi-provider (enabling other OAuth platforms -eg. Twitter- to be used as extra identity in the future).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The recommendation for the weekend is a little wink to all the nerds in the audience that -like us- spent many hours in the 90&amp;rsquo;s playing with a very special type of cards: &lt;a href="http://narrative.ly/wild-cards/friday-night-magic/"&gt;Friday Night Magic&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Have a nice weekend!&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/44852557389</link><guid>https://weblog.linkingpaths.com/post/44852557389</guid><pubDate>Fri, 08 Mar 2013 10:37:19 +0000</pubDate></item><item><title>Week #414</title><description>&lt;p&gt;Resist discouragement. Your own and the one you acquired from others. Resist the sleepless nights and the after-hours work, especially the one that doesn&amp;rsquo;t make sense. Hold that unnerving feeling when something inside your brain says what the hell am I doing. Grit your teeth and move on, specially when it would be easy to turn around and do something else. Assume that things will not be right the first time, probably not even in a second try but trust that, still, hard work and do-the-right-thing are almighty tools.&lt;/p&gt;

&lt;p&gt;Accept that the encouragement of your family, wife and friends is a gift too precious to allow yourself to fail when facing adversity. Resist the thought of failure, the though of &amp;ldquo;shit happens&amp;rdquo;. Be true to yourself and don&amp;rsquo;t let yourself be impressed by the pyrotechnic flaunting of fops and supernovae. Hold on to the dream, the enthusiasm, the primal desire that started everything in first place, beyond all logic reason and beyond all doubt. Persevere and work hard to honor the people who support you.&lt;/p&gt;

&lt;p&gt;When things go wrong, rectify and keep fighting. This will put you in the same group in which the greatest humans in history are; no one is remembered by never been wrong. Build something you can be proud of with trust, honesty, transparency and dialogue. Resist the lie of work-life dichotomy: improving our work improves our lives and 8 hours per day is a lot to put them in a corner at night. Prove that profitable and human are not incompatible terms.&lt;/p&gt;

&lt;p&gt;Resist.
Resist.
Resist.&lt;/p&gt;

&lt;p&gt;If you would like to know how to make a company work you just have to learn what that word means.&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;I wrote this &lt;a href="http://weblog.linkingpaths.com/post/20472376817/resistencia"&gt;five years ago&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Have a great weekend.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/44379839070</link><guid>https://weblog.linkingpaths.com/post/44379839070</guid><pubDate>Sat, 02 Mar 2013 17:10:22 +0000</pubDate></item><item><title>Week #413</title><description>&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/HTTP_413#4xx_Client_Error"&gt;413 Request Entity Too Large&lt;/a&gt;: &lt;em&gt;The request is larger than the server is willing or able to process.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The HTTP is wise and universal: that is the perfect definition for this week. Is easy to fall into despair when you try to cope with many projects and fail miserably doing it… but one must move forward. A few things done this week (very similar to what has been done during February):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Integration of the front-end in the Bazaar&amp;rsquo;s shop project.&lt;/li&gt;
&lt;li&gt;The usual support and maintenance in Stage.&lt;/li&gt;
&lt;li&gt;Estimates and inquiries for multiple project propositions.&lt;/li&gt;
&lt;li&gt;The first private alpha integration of Facebook OAuth &amp;amp; Open Graph in verkami has been deployed.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To research this last point, we&amp;rsquo;ve tested many well known sites doing similar stuff and discovered that most implementations are really poor. One small example: most apps don&amp;rsquo;t try to correlate new identities coming from Facebook with existing users in their sites (with the &lt;strong&gt;consequent confusion and loss of historical information&lt;/strong&gt; for the users). Additionally this precludes users from disconnect their facebook accounts in the future if they change their mind. We&amp;rsquo;re working hard &lt;strong&gt;to build a better approach&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;My recommendation for this weekend is to cook. Yes, you&amp;rsquo;ve read correctly: cooking. I could write pages and pages about all the links I can see between cooking and programming but that is probably material for a special post and not the weeknote. If you want some nice inspiration be sure to check this three examples of great gastronomical tips and recipes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://vimeo.com/theperennialplate/videos"&gt;The Perennial Plate&lt;/a&gt; and &lt;a href="https://vimeo.com/saveurmag/videos"&gt;Saveur&amp;rsquo;s&lt;/a&gt; channels in vimeo and&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.youtube.com/user/tastemade"&gt;Tastemade&lt;/a&gt; channel in Youtube.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They are mainly a collection of short, super-high production quality videos  made by a small team of enthusiastic foodies. Very inspirational.&lt;/p&gt;

&lt;p&gt;Enjoy the weekend!&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/43814871906</link><guid>https://weblog.linkingpaths.com/post/43814871906</guid><pubDate>Sat, 23 Feb 2013 17:33:24 +0000</pubDate></item><item><title>"Your job is going to suck.

Not all the time, of course. But some of the time. You’re going to do..."</title><description>“&lt;p&gt;Your job is going to suck.&lt;/p&gt;

&lt;p&gt;Not all the time, of course. But some of the time. You’re going to do things you don’t like, sometimes. You’re going to do things you don’t love, most of the time.&lt;/p&gt;”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://the-pastry-box-project.net/karen-mcgrane/2013-february-8/"&gt;The Pastry Box Project | 8 February 2013, baked by Karen McGrane&lt;/a&gt;&lt;/em&gt;</description><link>https://weblog.linkingpaths.com/post/43508920487</link><guid>https://weblog.linkingpaths.com/post/43508920487</guid><pubDate>Tue, 19 Feb 2013 21:15:58 +0000</pubDate></item><item><title>Week #412</title><description>&lt;p&gt;Late again, tired again but quite happy to end the week in a good mood. Some things were done this week:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;First private beta Facebook features in &lt;a href="http://www.verkami.com"&gt;Verkami&lt;/a&gt;. In happy related news a verkami powered project (&lt;a href="http://www.verkami.com/lendema"&gt;L'endema&lt;/a&gt;) became the biggest crowdfunded project in Spain. It&amp;rsquo;s the biggest project in Europe too if you leave aside Indiegogo (that has a model that is not exactly what most people understand for crowdfunding).&lt;/li&gt;
&lt;li&gt;With our work in those features we discovered and fixed a &lt;a href="https://github.com/intridea/omniauth/pull/664"&gt;few bugs&lt;/a&gt; in the open source project &lt;a href="https://github.com/intridea/omniauth"&gt;omniauth&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Integration of &lt;a href="http://swwweet.com/"&gt;Swwweet&amp;rsquo;s&lt;/a&gt; design for Bazaar&amp;rsquo;s shops in the app.&lt;/li&gt;
&lt;li&gt;The usual support and development in &lt;a href="http://www.stagehq.com"&gt;Stage&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For this weekend I&amp;rsquo;d like to recommend &lt;a href="http://www.teslamotors.com/blog/most-peculiar-test-drive"&gt;&amp;ldquo;A Most Peculiar Test Drive&amp;rdquo;&lt;/a&gt;, a blog post by Elon Musk, CEO of &lt;a href="http://www.teslamotors.com/"&gt;Tesla&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;You may have heard recently about an article written by John Broder from The New York Times that makes numerous claims about the performance of the Model S. We are upset by this article because it does not factually represent Tesla technology, which is designed and tested to operate well in both hot and cold climates.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In the quoted article, the NYT journalist made some comments about the car&amp;rsquo;s battery life and performance but failed to mention some details that were discovered when analyzing the Model S logs. Yes, &lt;em&gt;the car&amp;rsquo;s logs&lt;/em&gt;. The post is full of nerd awesomeness and highlights some effects of the very interesting phenomena created by the &lt;a href="http://en.wikipedia.org/wiki/Internet_of_Things"&gt;IoT&lt;/a&gt; as referred by our friend &lt;a href="https://twitter.com/mgnoriega"&gt;Manuel G. Noriega&lt;/a&gt;:&lt;/p&gt;

&lt;div style="margin:0 auto; width:500px;"&gt;
&lt;blockquote class="twitter-tweet"&gt;&lt;p&gt;As more HaaS (hardware as a service) appears, people will have to learn fast about side-effects as monitoring and logging.&lt;/p&gt;     &lt;div&gt;&lt;a href="https://twitter.com/mgnoriega/status/302084935362170880"&gt;February 14, 2013&lt;/a&gt;&lt;/div&gt;&lt;/blockquote&gt;
&lt;/div&gt;

&lt;script src="//platform.twitter.com/widgets.js" charset="utf-8" type="text/javascript"&gt;&lt;/script&gt;

&lt;p&gt;For a much-needed counterpoint, I&amp;rsquo;d like to bring your attention on &lt;a href="http://www.couchcachet.com/"&gt;CouchCachet&lt;/a&gt;, an app that helps   you improve your social life by simply faking it. In a world where social reputation is constantly improved or threatened by technological proxies and agents… what kind of strange consequences we&amp;rsquo;ll see in the way we keep track of History or even reality? If you find this topic as amazing as I do, please come to the &lt;a href="http://mmconf.com/"&gt;MMConf&lt;/a&gt;, where I&amp;rsquo;ll be talking &lt;a href="https://gist.github.com/aitor/4444619"&gt;about it&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Enjoy the weekend!&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/43232133100</link><guid>https://weblog.linkingpaths.com/post/43232133100</guid><pubDate>Sat, 16 Feb 2013 16:18:00 +0000</pubDate></item><item><title>Week #411</title><description>&lt;p&gt;Another week I can&amp;rsquo;t publish the weeknote on time… apparently the planned re-scheduling to thursdays was a easier to think than to implement. Anyway, here is a short description of the past usual-but-mildly-less-stressing week:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Work in PayPal and Facebook features in &lt;a href="http://www.verkami.com"&gt;Verkami&lt;/a&gt;. I&amp;rsquo;m always sadly surprise by the incompetence and negligence of the technical and commercial departments in PayPal… horrible communication.&lt;/li&gt;
&lt;li&gt;Development in Bazaar and its different parts (specially the first shop) keeps going.&lt;/li&gt;
&lt;li&gt;Support, small fixes and some features in &lt;a href="http://www.stagehq.com"&gt;Stage&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This week one of my favorites conference has been celebrated in Geneva: &lt;a href="http://liftconference.com/lift13"&gt;Lift&lt;/a&gt;. They always pick a nice mix of topics (Democracy in Distress, Resilience and Resistance, Adult entertainment, etc.) and speaker&amp;rsquo;s quality is very good (Bruce Sterling, Oliver Reichenstein, Kate Darling…).&lt;/p&gt;

&lt;p&gt;Additionally they &lt;strong&gt;live broadcast&lt;/strong&gt; all the conference and that means you can virtually attend it and that right now you can already see &lt;a href="http://new.livestream.com/liftconference/lift2013"&gt;all the talks here&lt;/a&gt;. I want to specially recommend the talks of the previous mentioned speakers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The charming &lt;strong&gt;Kate Darling&lt;/strong&gt; talking about &lt;a href="http://new.livestream.com/liftconference/lift2013/videos/11054539"&gt;IP on the adult entertainment industry&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Olivier Reichenstein&lt;/strong&gt; (of &lt;a href="http://www.iawriter.com/"&gt;iA Writer&lt;/a&gt; fame) on &lt;a href="http://new.livestream.com/liftconference/lift2013/videos/11115683"&gt;craftsmanship in a digital era&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Mind-blowing &lt;strong&gt;Bruce Sterling&lt;/strong&gt; on &lt;a href="http://new.livestream.com/liftconference/lift2013/videos/11117416"&gt;design fiction&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Enjoy the weekend, be happy.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/42662244927</link><guid>https://weblog.linkingpaths.com/post/42662244927</guid><pubDate>Sat, 09 Feb 2013 13:45:46 +0000</pubDate><category>weeknote</category><category>Aitor</category></item><item><title>Weeknote #410</title><description>&lt;p&gt;Exhaustion: psychic, mental and physical. That is this week&amp;rsquo;s main feeling. Tons of emails, fighting and not-funny discussions that erode all your energy and leave you empty. A big source of stress is &lt;strong&gt;how personal some customers and so called &amp;ldquo;professionals&amp;rdquo; in all disciplines get about anything&lt;/strong&gt; related to them. Hours and hours were wasted this week answering to people that felt personally attacked when someone makes even a mildly critique of their work.&lt;/p&gt;

&lt;p&gt;Ironically, instead of taking their time to reflect in what is useful about the critique, this often results in &lt;em&gt;ad hominem&lt;/em&gt; attacks to the person that questions the validity of the work. People get so emotionally attached to their work, they&amp;rsquo;re unable to see &lt;a href="http://sstephenson.us/posts/you-are-not-your-code"&gt;they&amp;rsquo;re not their code, design or emails&lt;/a&gt;. A legitimate question or even the display of clear facts is taken as a recrimination and from there it&amp;rsquo;s all downhill. Even ignoring the &amp;ldquo;offended&amp;rdquo; person trying to finish the fight becomes impossible. So. Mentally. Exhausting.&lt;/p&gt;

&lt;p&gt;As &lt;a href="http://weblog.linkingpaths.com/post/23734657360/week-374"&gt;we announced in this blog&lt;/a&gt; we sold &lt;a href="http://www.qstion.com/"&gt;Qstion&lt;/a&gt; a long time ago. Unfortunately the buyer is still figuring out how to launch the product. As the product had be transitioned to the actual owner, the sale&amp;rsquo;s payment was agreed to be split in multiple small portions, last ones being made on the service beta/production launch. As you can imagine we&amp;rsquo;re now in a &lt;em&gt;very uncomfortable situation&lt;/em&gt;: our work is done, the product is not ready for launch and we can&amp;rsquo;t shelve the issue. Lesson learned: never sign a partitioned sale without &lt;strong&gt;establishing clear time limits&lt;/strong&gt; for all the payments.&lt;/p&gt;

&lt;p&gt;On the bright side, a lot of work was made in &lt;a href="http://steelstockexchange.com/"&gt;SSE&lt;/a&gt;, &lt;a href="http://www.stagehq.com"&gt;Stage&lt;/a&gt; and &lt;a href="http://www.verkami.com/"&gt;Verkami&lt;/a&gt;. Specially, as stated in previous weeknotes, we&amp;rsquo;ve been working in &lt;a href="http://ogp.me/"&gt;Open Graph&lt;/a&gt; and this included the implementation of &lt;a href="https://dev.twitter.com/docs/cards"&gt;Twitter Cards&lt;/a&gt; in Verkami, that we&amp;rsquo;ll extend to Stage soon. Once the application for our integration was accepted by twitter, all tweets containing verkami.com links became a much nicer experience:&lt;/p&gt;

&lt;blockquote class="twitter-tweet"&gt;&lt;p&gt;Hemos superado los primeros 1000€. ¿Aun no sabes que es Embrion? &lt;a href="http://t.co/LhvgJ0qY" title="http://www.embron.es"&gt;embron.es&lt;/a&gt;-&lt;a href="http://t.co/rQobEc2S" title="http://www.verkami.com/projects/3725-embrion-la-gran-pregunta"&gt;verkami.com/projects/3725-…&lt;/a&gt;&lt;/p&gt;   &lt;div&gt;&lt;a href="https://twitter.com/Embriongame/status/297351173009203203"&gt;February 1, 2013&lt;/a&gt;&lt;/div&gt;&lt;/blockquote&gt;

&lt;script src="//platform.twitter.com/widgets.js" charset="utf-8" type="text/javascript"&gt;&lt;/script&gt;

&lt;p&gt;On the sales side, we were forced to say no to a few proposals with deadlines that were, unfortunately, impossible to meet. Fortunately there is a big event that is evaluating Stage for selling its tickets… who knows. &lt;a href="https://gist.github.com/4444619"&gt;My talk&lt;/a&gt; for &lt;a href="http://mmconf.com"&gt;MMConf&lt;/a&gt; was  published and I&amp;rsquo;m now a &lt;a href="http://mmconf.com/speakers#aitor_garcia_rey"&gt;official speaker&lt;/a&gt;. I&amp;rsquo;m looking forward to participate in this conference located in the beautiful city &lt;a href="http://en.wikipedia.org/wiki/Krak%C3%B3w"&gt;Kraków&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Week&amp;rsquo;s recommendation: Relax.&lt;/p&gt;

&lt;p&gt;Grab your kindle or a book from your shelves and read some good fiction like &lt;a href="http://www.amazon.com/gp/product/B007WL3CWI/ref=as_li_ss_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B007WL3CWI&amp;amp;linkCode=as2&amp;amp;tag=aitoris-20"&gt;LoveStar&lt;/a&gt; or &lt;a href="http://www.amazon.com/gp/product/B005HRT8EA/ref=as_li_ss_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B005HRT8EA&amp;amp;linkCode=as2&amp;amp;tag=aitoris-20"&gt;The Embedding&lt;/a&gt;, have a cup of coffee and a good portion of cake.&lt;/p&gt;

&lt;p&gt;See you next week. Have a great weekend.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/42030060547</link><guid>https://weblog.linkingpaths.com/post/42030060547</guid><pubDate>Fri, 01 Feb 2013 17:16:00 +0000</pubDate></item><item><title>Weeknote #409

This must the mythical never-ending week…...</title><description>&lt;img src="https://64.media.tumblr.com/f9ae419bef206e32091b1626155d1f51/tumblr_mh9279aNQZ1qfsd3eo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;h1&gt;Weeknote #409&lt;/h1&gt;

&lt;p&gt;This must the mythical never-ending week… I’ve been working on Friday until 10pm and I’m actually finishing the weeknote on Saturday’s evening. I’ve been feeling for a few weeks now that friday’s evening is usually the wrong moment to publish our weeknote: many people is already enjoying the weekend, I’m usually finishing and deploying things and in some cases I’ve to postpone the publication. Additionally my weekend feels much shorter because of the delay and the work I’ve to do to write it. I still think is a great way to wrap the week’s work but starting next week I’ll move writing them to thursday’s evening and publication to friday’s morning. Hopefully that will be better for my arterial pressure and we’ll reach you more easily.&lt;/p&gt;

&lt;p&gt;What happened this week? Well… lot of work in the usual suspects. In Verkami we started the design and implementation of their Facebook integration. There are a lot of small details we want to polish in this mini-project, covering all the edge cases  that appear when you add multiple login options in a busy, popular platform as Verkami. Additionally we want to improve our &lt;a href="http://ogp.me/"&gt;Open Graph&lt;/a&gt; implementation to help you share all your contributions and favorite projects more easily.&lt;/p&gt;

&lt;p&gt;I made and sent multiple proposals for expansion of current and new projects. A potential customer contacted with us this week. After a conversation on Skype, in order to be able to make a proposal, we asked for the briefing on the features to be implemented. They asked us to sign a NDA and as we’ve commented a few times in this blog we don’t sign NDAs. Period. Why? There a few reasons:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;They usually contain disproportionate and surreal conditions, like &lt;strong&gt;lifetime legal bindings&lt;/strong&gt; on everything even slightly related to the project’s business domain.&lt;/li&gt;
&lt;li&gt;We don’t know what we’re accepting -because &lt;strong&gt;we know near-to-nil&lt;/strong&gt; about the project in this stage- until it’s too late.&lt;/li&gt;
&lt;li&gt;If we’re signing something legally binding &lt;strong&gt;we need lawyers&lt;/strong&gt; confirming every step. This just slows down the process and makes it more expensive.&lt;/li&gt;
&lt;li&gt;Such documents infer that &lt;strong&gt;by default you’re not treating your customers’ information confidentially&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;If you don’t trust me to estimate the development costs of your idea… how can you actually trust me to implement it? Seriously… how?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So fuck NDAs.&lt;/p&gt;

&lt;p&gt;We had some activity in Stage, not only the usual support but commercial contact from a company considering our service for a big multi-venue event. We’ll see.&lt;/p&gt;

&lt;p&gt;Finally &lt;a href="http://mmconf.com/"&gt;MMConf&lt;/a&gt; confirmed and publicly announced my spot in the conference. I’ll be talking about &lt;a href="https://gist.github.com/4444619"&gt;mobiles, quantified self and History&lt;/a&gt; and I’m very excited for to take part in this event. Additionally a few days laters, in the same city, by the same organizers, it will take place &lt;a href="http://railsberry.com/"&gt;Railsberry&lt;/a&gt;, another great conference I’m looking forward to attend.&lt;/p&gt;

&lt;p&gt;My recommendation for this weekend is &lt;a href="https://www.readmatter.com/scammed-preview/"&gt;Scammed&lt;/a&gt;:&lt;/p&gt;

&lt;p&gt;&gt; A new kind of computer con has emerged in the past few years. It’s technically mundane but psychologically brutal: using false threats of arrest, scammers trick low-income victims into repaying debts that do not exist. And one rainy day last January, they accidentally targeted one of the smartest hackers around.&lt;/p&gt;

&lt;p&gt;It’s the last edition of &lt;a href="https://www.readmatter.com/"&gt;MATTER&lt;/a&gt;, a new digital-only experiment in long-form journalism that I think is worth a read.&lt;/p&gt;

&lt;p&gt;Have a great weekend!&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/41546263214</link><guid>https://weblog.linkingpaths.com/post/41546263214</guid><pubDate>Sat, 26 Jan 2013 20:33:43 +0000</pubDate></item><item><title>Week #408

I’m back in Iceland. Back in the darkness, in...</title><description>&lt;img src="https://64.media.tumblr.com/b19c6d6cf0ab4e0606ffd719a6865f1b/tumblr_mgvxmm85961qfsd3eo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;h1&gt;Week #408&lt;/h1&gt;

&lt;p&gt;I’m back in Iceland. Back in the darkness, in the silence, back in this wind that is always blowing in your direction, in the cozy cafés, back in the winter palace.&lt;/p&gt;

&lt;p&gt;My monday was paid as tribute to the gods of international traveling, landing in &lt;a href="http://en.wikipedia.org/wiki/Keflav%C3%ADk_International_Airport"&gt;Keflavík&lt;/a&gt; with strong sidewind in the middle of a storm. After a few hours of sleep, I stepped on the gas on tuesday, and the rest of the week flashed before my eyes.&lt;/p&gt;

&lt;p&gt;We’ve implemented a new statistics module in &lt;a href="http://www.verkami.com"&gt;Verkami&lt;/a&gt; and defined the initial key metrics for their business in just few days. For the visualization, we’ve started using &lt;a href="http://ducksboard.com/"&gt;Ducksboard&lt;/a&gt;. There is a lot of space for improvement on their service (eg. basically they don’t have any computational tool, not even basic ones like mean, median,etc.) but the interface is nice -matching Verkami’s own style- and the API is simple and clean. I’m very excited about creating more transparency for my customers, so they can better see and understand the key metrics of their business, and I think this a step in the good direction.&lt;/p&gt;

&lt;p&gt;Three more things in my outbox for this week: work in Bazaar and the shop’s frontend we’re developing with our friends of &lt;a href="http://www.swwweet.com"&gt;Swwweet&lt;/a&gt;, some business work with proposals and the usual support work in &lt;a href="http://www.stagehq.com"&gt;Stage&lt;/a&gt;. I’m really looking forward to ignite Stage’s development again in 2013.&lt;/p&gt;

&lt;p&gt;I wasted a few hours too collecting and submitting documents to the &lt;a href="http://www.rsk.is/english/individuals/"&gt;RSK&lt;/a&gt; -Icelandic Directorate of Internal Revenue- to demonstrate that I’m an honest citizen and that I’m not laundering/generating black money. Governments have a real problem trying to adjust their bureaucracies to current times and a software based civilization. The very frontierless nature of the web and the rise of pure digital services and products is going to create the most bizarre situations in the next years, stating with painful blatancy the increasing meaningless of the idea of ‘country’.&lt;/p&gt;

&lt;p&gt;My recommendation for this weekend: &lt;a href="https://vimeo.com/52861634"&gt;Connecting&lt;/a&gt;, a 18mins long documentary on the increasing important role of software, design and user experience in our daily life.&lt;/p&gt;

&lt;p&gt;Have a great weekend.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/40944015563</link><guid>https://weblog.linkingpaths.com/post/40944015563</guid><pubDate>Sat, 19 Jan 2013 19:41:00 +0000</pubDate></item><item><title>Week #407

Last days in the Basque Country. I’ll be back...</title><description>&lt;img src="https://64.media.tumblr.com/9a943b117b6ebd2ae6df8efe8cd4215c/tumblr_mgij2dKNkE1qfsd3eo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;h1&gt;Week #407&lt;/h1&gt;

&lt;p&gt;Last days in the Basque Country. I’ll be back in Reykjavík next week and I’ll miss my family and friends for sure, but I’ll recover some of my routines too and I’ll stop this 4-weeks gastronomical orgy, so I’m happy to finally step on the gas for 2013.&lt;/p&gt;

&lt;p&gt;This week we had what &lt;a href="https://twitter.com/_aitor/status/289475619484479490"&gt;I’ve named&lt;/a&gt; the &lt;em&gt;Pandemic Rails Upgrade of 2013&lt;/em&gt;, a &lt;a href="http://weblog.rubyonrails.org/2013/1/8/Rails-3-2-11-3-1-10-3-0-19-and-2-3-15-have-been-released/"&gt;serious security vulnerability&lt;/a&gt; affecting every Rails app created in the last 5 years, so I had to upgrade a good number of personal and professional apps, services and products. Given I started developing Rails apps professionally with &lt;em&gt;version 1.0&lt;/em&gt;, there are a lot of different versions and states we’ve to support.&lt;/p&gt;

&lt;p&gt;In the middle of the week, I flew to Barcelona to meet &lt;a href="http://www.verkami.com"&gt;Verkami&lt;/a&gt; guys in their headquarter. We talked about the new features to implement in the first quarter of the year. The platform is working better than ever and there are a lot of good things to come in the roadmap. More work in &lt;a href="http://www.stagehq.com"&gt;Stage&lt;/a&gt; and the usual suspects filled up the rest of the week.&lt;/p&gt;

&lt;p&gt;The week finished with very sad news: &lt;a href="http://www.aaronsw.com"&gt;Aaron Swartz&lt;/a&gt; committed suicided yesterday. I started working on the web in 1998 but I still remember the excitement about one of the first shiny toys he created: the &lt;a href="http://en.wikipedia.org/wiki/RSS"&gt;RSS&lt;/a&gt;. Well known hackers were starting blogs every day and his invention was a big piece in the initial success of the movement.&lt;/p&gt;

&lt;p&gt;He was 14 years old only then and continued to create and cofound more awesome stuff: &lt;a href="http://creativecommons.org/"&gt;Creative Commons&lt;/a&gt;, &lt;a href="http://www.reddit.com/"&gt;Reddit.com&lt;/a&gt;, &lt;a href="https://www.jottit.com/"&gt;Jottit.com&lt;/a&gt;… Lately he was working to bring more transparency to politics with projects like &lt;a href="http://www.watchdog.net/"&gt;watchdog.net&lt;/a&gt;. The possible influence in his ending of risking 50 years in prison thanks to a &lt;a href="http://lessig.tumblr.com/post/40347463044/prosecutor-as-bully"&gt;stupid prosecutor&lt;/a&gt; is even more sad and disturbing. Without knowing him personally, I admired him as a true web pioneer and I still do.&lt;/p&gt;

&lt;p&gt;At the same time I’ve been mildly obsessed about the dissonance between digital and physical death for years now and would like to recommend you the following articles: &lt;a href="http://www.locusmag.com/Perspectives/2012/11/cory-doctorow-the-internet-of-the-dead/"&gt;The Internet of the Dead&lt;/a&gt; and &lt;a href="http://dilbert.com/blog/entry/your_digital_ghost/"&gt;Your Digital Ghost&lt;/a&gt;. The future is weird.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://boingboing.net/2013/01/12/rip-aaron-swartz.html"&gt;RIP, Aaron Swartz&lt;/a&gt;&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/40358820948</link><guid>https://weblog.linkingpaths.com/post/40358820948</guid><pubDate>Sat, 12 Jan 2013 19:56:10 +0000</pubDate></item><item><title>Week #406</title><description>&lt;p&gt;The first week of the year in Spain is, unlike other countries, a very slow week. On Jan 6th, most families celebrate the visit of the &lt;a href="http://en.wikipedia.org/wiki/Biblical_Magi"&gt;Three Wise Men&lt;/a&gt; to Jesus after his birth. It&amp;rsquo;s a national holiday and many people is still on holidays -or recovering from the massive New Year&amp;rsquo;s Eve hangovers- so it feels like the end of the party more than the beginning of a new cycle.&lt;/p&gt;

&lt;p&gt;Anyway, I found the way to do a few things last week:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;I sent the proposal &lt;a href="https://gist.github.com/4444619"&gt;&amp;ldquo;Tap to write History&amp;rdquo;&lt;/a&gt; to &lt;a href="http://www.mmconf.com"&gt;MMConf&lt;/a&gt; and got accepted. My attendance is still not confirmed since they don&amp;rsquo;t know if the conference can cover the traveling costs, we&amp;rsquo;ll see. If your company is looking for a good talk to sponsor, send them my way :).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Exchanged a few emails about new projects/estimations; nothing confirmed yet but some things keep appearing on the horizon.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I went to Madrid for a physical meeting with our friends of the Bazaar project, and enjoyed a lovely lunch with some of the friends living abroad that were, like me, at home for Christmas.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Usual work in &lt;a href="http://www.stagehq.com"&gt;Stage&lt;/a&gt; and &lt;a href="http://www.verkami"&gt;Verkami&lt;/a&gt;, including the preparation for our quarterly physical meeting.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;My recommendation today is a bunch of great talks. &lt;a href="http://xoxofest.com"&gt;XOXO&lt;/a&gt; organizers just published all the talks of the last edition and there is a lot of inspiring bits: Makerbot, Etsy, Indie game developers, small artisans… You can feel the tons of love and caring passion they put in their respective companies. Find all the videos &lt;a href="http://xoxofest.com/video/"&gt;here&lt;/a&gt;.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/39923852266</link><guid>https://weblog.linkingpaths.com/post/39923852266</guid><pubDate>Mon, 07 Jan 2013 11:59:59 +0000</pubDate><category>weeknote</category><category>Aitor</category></item><item><title>"So this is the dirty little secret in our industry. The best designers and developers rarely have..."</title><description>“So this is the dirty little secret in our industry. The best designers and developers rarely have more talent. They simply have more time.”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://the-pastry-box-project.net/clearleft/2013-january-7/"&gt;The Pastry Box Project | 7 January 2013, Baked by Andy Budd&lt;/a&gt;&lt;/em&gt;</description><link>https://weblog.linkingpaths.com/post/39920874769</link><guid>https://weblog.linkingpaths.com/post/39920874769</guid><pubDate>Mon, 07 Jan 2013 10:11:54 +0000</pubDate></item><item><title>Week #405</title><description>&lt;p&gt;2012 is basically done, finished&amp;hellip; exactly what has happened to the week #405.&lt;/p&gt;

&lt;p&gt;In this last week of the year we&amp;rsquo;ve been working with our friends of verkami on small features, like copy/UI improvements and polishing the &lt;a href="http://ogp.me/"&gt;Open Graph&lt;/a&gt; tags we use, for improved rendering in Facebook. Verkami is working at full speed now, &lt;a href="http://www.verkami.com/blog/5569-verkami-2-anos-co-creando-cultura"&gt;just two years after the launch&lt;/a&gt; and I&amp;rsquo;m meeting them in the beginning of the year for another highly focused workday on the next milestones.&lt;/p&gt;

&lt;p&gt;I spent the rest of the week answering requests for a few project&amp;rsquo;s estimates, Stage&amp;rsquo;s support tickets and in meetings with different clients like our friends of &lt;a href="http://lapersonnalite.com/"&gt;La Personnalité&lt;/a&gt; and &lt;a href="http://steelstockexchange.com/"&gt;Steel Stock Exchange&lt;/a&gt;. Recover from the -delicious- food blitzkrieg my mother perpetrated on Christmas Eve was another not negligible task.&lt;/p&gt;

&lt;p&gt;We&amp;rsquo;re still reviewing projects, events and small incidents of the year to create a mental image of how good/bad has been this year. It has been better than 2011 for sure (professionally the hardest year of my life) but there are a lot of shadows on it too. I&amp;rsquo;ll try to write a wrapping post for the year next monday but I don&amp;rsquo;t know if it&amp;rsquo;s realistic to expect I&amp;rsquo;ll succeed given it&amp;rsquo;s Dec 31st.&lt;/p&gt;

&lt;p&gt;My recommendation for this weekend: relax, think and meditate. Take your time to reflect on what you&amp;rsquo;ve accomplished in 2012, but more importantly on the goals for 2013. Do it thoughtfully and it&amp;rsquo;d be the best investment you&amp;rsquo;ve done in months.&lt;/p&gt;

&lt;p&gt;Have a great end of year.&lt;/p&gt;</description><link>https://weblog.linkingpaths.com/post/39123027627</link><guid>https://weblog.linkingpaths.com/post/39123027627</guid><pubDate>Sat, 29 Dec 2012 12:42:00 +0000</pubDate><category>weeknote</category><category>Aitor</category></item></channel></rss>
