<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">

  <channel>
	<title>Alfonso Jiménez</title>
	<link>http://www.alfonsojimenez.com</link>
	<description>El somni d'una nit d'estiu</description>
	<pubDate>Sun, 28 Sep 2008 18:56:36 GMT</pubDate>
	<generator>http://www.alfonsojimenez.com</generator>

	
    <item>
      <title><![CDATA[10 ways to demotivate your team]]></title>
      <link>http://www.alfonsojimenez.com/2008/09/28-10-ways-to-demotivate-your-team</link>
      <pubDate>Sun, 28 Sep 2008 18:56:36 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p><img src="http://www.alfonsojimenez.com/images/2008/09/unmotivated.jpg" class="centro" alt="Unmotivated" /></p>
<ol>
<li>Set up impossible deadlines.</li>
<li>Let them work overtime.</li>
<li>Don&#8217;t allow breaks.</li>
<li>Place a ban on laughing.</li>
<li>Break the coffee machine.</li>
<li>Don&#8217;t shield them from the dirty daily business.</li>
<li>Don&#8217;t challenge them.</li>
<li>Underpay them.</li>
<li>Bribe them.</li>
<li>Infiltrate a team member who is demotivated anyway.</li>
</ol>
<p>Seen on <a href="http://klimek.box4.net/blog/2006/12/20/top-10-ways-to-demotivate-your-programming-team/">Manuel Klimex</a>
</p>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[Has Google acquired Digg?]]></title>
      <link>http://www.alfonsojimenez.com/2008/07/23-has-google-acquired-digg</link>
      <pubDate>Wed, 23 Jul 2008 09:58:42 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p>Has <strong>Google</strong> acquired <strong>Digg</strong> for 200 millions dollars? Michael Arrington has written a post on <a href="http://www.techcrunch.com/2008/07/22/google-in-final-negotiations-to-acquire-digg-for-around-200-million/" rel="nofollow">TechCrunch</a> saying that both companies have reached an agreement for around 200 millions dollars. The popular social bookmarking site would become part of <strong>Google News</strong> property.</p>
<p><img src="http://www.alfonsojimenez.com/images/2008/07/digg.jpg" class="centro" alt="Digg" />
</p>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[Scalability in new startups]]></title>
      <link>http://www.alfonsojimenez.com/2008/01/26-scalability-in-new-startups</link>
      <pubDate>Sat, 26 Jan 2008 14:20:47 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p>Since I started to build <a href="http://youare.com" title="YouAre">YouAre.com</a> I knew that the <strong>scalability was an important matter to solve</strong>. Sometimes the scalability is more important for your pocket and for the success of your startup than originally thought. According to <a href="http://www.google.com" title="Google">Google</a>, a slow performance could cost you 20% of your revenue. If you are starting a new company, you ought to know that any savings in servers can accelerate the growth of your company. These costs include hardware, software, human resources and time (for many people the most appreciated resource). Apart from the monetary costs, it&#8217;s proved that <strong>half a second delay in page load time can kill a user&#8217;s satisfaction</strong>.</p>
<p>The scalability is a relative problem which depends on many things: the technology used, the fault tolerance and the availability of programming staff. Many people think that scalability=performance, and they are wrong as there are more aspects to be considered. For me, the scalability is to maintain the balance between the resources and the number of users, when the size of the problem increases. The size of the problem is the growth of the number of users and the resources. A graphic which represents a good scalability could be the following:</p>
<p><img src="http://www.alfonsojimenez.com/images/2008/01/scalability.png" class="centro_sinmarco" alt="Scalability" /></p>
<p>We can appreciate how well the growth of users (n) have been solved. <strong>The amount of required resources grows logarithmically</strong>.</p>
<p>Some good points for scalability that should be considered:</p>
<ul>
<li><strong>Good database design</strong>: Normalize the database, select a suitable DBMS, consider the users&#8217; necessities, &#8230;</li>
<li><strong>Search engines</strong>: Use a search engine for your application. <a href="http://lucene.apache.org/java/docs/" title="Lucene" rel="nofollow">Lucene</a> is a very high-performance text search engine library. You can also consider <a href="http://lucene.apache.org/nutch/" title="Nutch" rel="nofollow">Nutch</a> or <a href="http://lucene.apache.org/solr/" title="Solr" rel="nofollow">Solr</a>, both based in <em>Lucene</em> but oriented to web applications. If you are finding some engine more basic take a look at <a href="http://www.sphinxsearch.com/" title="Sphinx" rel="nofollow">Sphinx</a>.</li>
<li><strong>The Keepalive problem</strong>: Enabling <em>Keepalive</em> for images and external files (such as CSS) is very good for clients, but bad for servers. Keeping <em>Keepalive</em> off we reduce a lot of the memory of the server. A good solution is to have separate images in a different server, getting the added benefit of <a href="http://www.die.net/musings/page_load_time/" title="Page load time">higher browser concurrency with multiple hostnames</a> (it will let you to load images in parallel). In <a href="http://youare.com" title="YouAre">YouAre</a>, we are using <a href="http://www.amazon.com/gp/browse.html?node=16427261">Amazon Simple Storage Service</a> to store our images.</li>
<li><strong>Cache</strong>: Cache as much of your dynamic content as possible <img src='http://www.alfonsojimenez.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.danga.com/memcached/" rel="nofollow" title="Memcache">Memcache</a> could be a great option.</li>
<li><strong>Take care of your code</strong>: Take care of your code and it will take care of you <img src='http://www.alfonsojimenez.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li><strong>Use GNU/Linux</strong>: GNU/Linux uses spare memory to cache files on disk. This means <strong>much faster I/O</strong>.</li>
</ul>
<p>More information | <a href="http://blogs.msdn.com/ricom/archive/2004/10/18/244242.aspx" rel="nofollow">Rico Mariani</a><br />
More information | <a href="http://shiflett.org/blog/2003/oct/what-is-scalability" rel="nofollow">Shiflett</a><br />
More information | <a href="http://novcrequired.com/2007/scaling-early-stage-startups/" rel="nofollow">No VC required</a>
</p>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[YouAre is coming]]></title>
      <link>http://www.alfonsojimenez.com/2007/12/29-youare-is-coming</link>
      <pubDate>Fri, 28 Dec 2007 23:58:52 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p>I have been hard at work during the past few months, creating something very special. When <a href="http://blogsmedia.com/equipo/jl.php" title="José Luis Antúnez">José Luis Antúnez</a> came to me with such a great idea I could not turn it down. <a href="http://youare.com" title="YouAre">YouAre</a> is a global social network that lets you publish multimedia microcontents. It&#8217;s global because it takes on relations between people in different fields (personal, professional, interests, &#8230;). <a href="http://youare.com" title="YouAre">YouAre</a> lets you publish from texts to multimedia files such as images and videos.</p>
<h2>SOCIAL NETWORK</h2>
<p><a href="http://youare.com" title="YouAre">YouAre</a> is a social network that represents a <strong>semantic graph</strong>. Nowadays we have implemented <a href="http://en.wikipedia.org/wiki/XHTML_Friends_Network" rel="nofollow">XFN</a> (metaweb nivel), but the goal is to create a true semantic graph. We are developing a reasoner which will check the consistency of the relations between the differents nodes (or vertex) of the semantic graph. For example, in an ontology representing a basic familiar hierarchy, if a user A sets that he&#8217;s the user B&#8217;s father, and later the user B sets that he&#8217;s the user A&#8217;s father, an inconsistency will be produced, as the user cannot be father and son at the same time. In this case the system would indicate an error. In <a href="http://youare.com" title="YouAre">YouAre</a> we want to go beyond simply giving an indication and be able to predict possible inconsistencies. For example, if the user A is male and he sets he&#8217;s homosexual, later if he sets that the user B (female) is his partner, the system would detect a possible inconsistency (a warning). We can create a true semantic graph with a well defined ontology. Now we can extract information from the established relations between the users.</p>
<h2>MICROCONTENTS</h2>
<p>We can publish microcontents in <a href="http://youare.com" title="YouAre">YouAre</a>. There are three different typologies available: <strong>texts</strong>, <strong>images</strong> and <strong>videos</strong>. The <strong>texts</strong> will have a lenght of 140 characters. We will be able to publish images and videos from external services such as <a href="http://www.flickr.com" rel="nofollow">Flickr</a>, <a href="http://www.youtube.com" rel="nofollow">YouTube</a>, <a href="http://www.vimeo.com" rel="nofollow">Vimeo</a>, &#8230; Also we will be able to upload ours pictures directly onto the system.</p>
<p>Now you can ask for an invitation in order to test <a href="http://youare.com" title="YouAre">YouAre</a>. We will send out invitations in a few weeks. Whilst you are waiting, you can view a set of screenshots on <a href="http://flickr.com/photos/youarecom" title="Flickr" rel="nofollow">Flickr</a>. <strong>Stay tuned to YouAre</strong>.</p>
<p><a href="http://youare.com" title="YouAre"><img src="http://www.alfonsojimenez.com/images/2007/12/youare.png" alt="YouAre" class="centro_sinmarco" /></a>
</p>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[Digg for sale]]></title>
      <link>http://www.alfonsojimenez.com/2007/12/22-digg-for-sale</link>
      <pubDate>Sat, 22 Dec 2007 14:41:46 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p><img src="http://www.alfonsojimenez.com/images/2007/12/digg.jpg" class="derecha_sinmarco" alt="Digg" />It&#8217;s true, this is the age of the second Internet bubble. By means of <a href="http://oriolmorell.cat/diggcom-a-la-venta.html" title="Oriol Morell">Oriol&#8217;s</a> blog, I have been noticed that the popular site <a href="http://www.digg.com" title="Digg" rel="nofollow">Digg</a> is for sale. People was speaking about a possible <strong>$300 million</strong> rumor last month. Many people think <em>Digg</em> doesn&#8217;t worth that amount. Who can buy Digg? I&#8217;ve read in some blogs that there are two possibilities: <em>The New York Times Co.</em> and the <em>Washington Post Co.</em> This a little fragment of the report by <a href="" title="Venture Beat" rel="nofollow">Venture Beat</a>: <em>A reliable source just confirmed the company’s plans, noting the company has hired Allen &#038; Company, a tiny but influential private investment firm, to help broker a deal. The asking price is still $300 million, the source said. We asked Digg founder Kevin Rose about a potential sale, and Allen &#038; Company’s involvement. He told us, unsurprisingly, that “we never comment on things related to acquisitions.</em>. This operation would be the biggest purchase of a social bookmarking site.
</p>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[LinkedIn API]]></title>
      <link>http://www.alfonsojimenez.com/2007/12/11-linkedin-api</link>
      <pubDate>Tue, 11 Dec 2007 10:49:14 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p>Now we can enjoy the new <a href="http://blog.linkedin.com/blog/2007/12/the-intelligent.html" title="LinkedIn API" rel="nofollow">LinkedIn API</a> on a REST based system. Nowdays the API is not public, but if you are interested in developing some application based in LinkedIn, you must to send them an email to <em>developers@linkedin.com</em> telling them what you wanna do. Lucian Beebe (<em>Director of Product Management at LinkedIn</em>) explains us how the LinkedIn API works in the following video.</p>
<div style="text-align:center; margin-bottom:30px;"><object style="width: 425px; height: 350px;" type="application/x-shockwave-flash" data="http://www.youtube.com/v/PO8xbViECXU"></p>
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="http://www.youtube.com/v/PO8xbViECXU" />
<param name="quality" value="best" />
<param name="bgcolor" value="#E2F0D7" />
<param name="scale" value="noScale" />
<param name="wmode" value="window" />
<param name="wmode" value="transparent" />
<param name="salign" value="TL" />
</object></div>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[Busco programador en PHP para Barcelona]]></title>
      <link>http://www.alfonsojimenez.com/2007/12/10-busco-programador-en-php-para-barcelona</link>
      <pubDate>Mon, 10 Dec 2007 11:48:10 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p><img src="http://www.alfonsojimenez.com/images/2007/12/grupointercom.png" alt="Grupo Intercom" class="derecha" />Estoy buscando a un desarrollador web especializado en PHP para <a href="http://www.construmatica.com">Construmática</a>, un proyecto en rápido crecimiento de <a href="http://www.grupointercom.com">Grupo Intercom</a>, grupo empresarial de referencia en la Internet española y fundador, entre otros, de negocios tales como <em>Infojobs</em>, <em>Softonic</em>, <em>e-Magister</em>, <em>Neurona</em>, etc.</p>
<p><em>Construmática</em> es el portal de referencia para el sector de la arquitectura, ingeniería y construcción en <em>España</em>. Se trata de un agregador de contenidos (mashup), un buscador vertical y una comunidad profesional destinada a los técnicos del sector de la construcción (arquitectos, ingenieros, etc.) en España. <em>Construmática</em> tiene más de 400.000 visitas y 2 millones de páginas vistas mensuales.</p>
<p>Bajo la supervisión del Director General y en colaboración con otro programador, las funciones que realizará serán:<br />
- Planificación y coordinación técnica<br />
- Programación de nuevas funcionalidades y secciones<br />
- Actualización y optimización de funcionalidades y secciones existentes</p>
<p>Se ofrece un entorno de trabajo muy bueno, flexibilidad horaria, ambiente informal, integración en un equipo multidisciplinar, joven y dinámico, y con un nivel muy alto desde el punto de vista técnico y de negocio. También grandes posibilidades de desarrollo profesional (programa de formación, creación y gestión de equipos, stock options, etc.)</p>
<p>Los requisitos son:<br />
- Experiencia mínima de <strong>2 años</strong><br />
- Conocimientos muy avanzados en programación con <strong>PHP+MySQL</strong><br />
- Nivel avanzado en programación <strong>Javascript</strong><br />
- Profesional dinámico, buen comunicador y espíritu de equipo<br />
- Sentido de la responsabilidad, metódico y capacidad de trabajo</p>
<p>Por otro lado también se valorará:<br />
- Experiencia en <strong>proyectos web</strong> y/o start-ups<br />
- Conocimientos de <strong>SEO</strong>, accesibilidad, usabilidad y estandarización<br />
- Conocimientos de <strong>JAVA</strong><br />
- Buen nivel de inglés</p>
<p>El tipo de contrato a priori es <strong>indefinido</strong> y la jornada será <strong>fulltime</strong> (8 horas al día). Si estáis interesados no dudéis en contactar conmigo: <a href="http://www.alfonsojimenez.com/contacto">contactar</a>
</p>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[iWeekend 07]]></title>
      <link>http://www.alfonsojimenez.com/2007/12/06-iweekend-07</link>
      <pubDate>Thu, 06 Dec 2007 18:45:10 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p>The first edition of <a href="http://iweekend.org/" title="iWeekend">iWeekend</a> has just been celebrated this past weekend in Barcelona. I couldn&#8217;t attend because I&#8217;m in Andalusia for some days (I&#8217;m sorry <a href="http://luvspain.wordpress.com/" title="Luv Sayal">Luv</a>). <em>iWeekend</em> is like <a href="http://www.startupweekend.com">StartupWeekend</a>, an event where the goal is create a startup in one weekend (54 hours). When I&#8217;m read the Luv&#8217;s <a href="http://iweekend.org/blog/iweekend/reflexiones-y-conclusiones/">notes</a> about the <em>iWeekend</em>, I think he doesn&#8217;t feel very happy with the results. Anyways, I&#8217;m glad and admittedly very proud of <em>Luv</em> because he&#8217;s got to do it (we must consider the difficulties of organizering events like this). I think <em>iWeekend</em> is not a bad idea, but I need to admit that it&#8217;s not possible to create something <strong>good and complex</strong> in only three days.</p>
<p>The result of this last (and first) edition has been <strong>Adlemons</strong>. I haven&#8217;t read very much about it, but reading the name I can deduce it&#8217;s something related to advertising. I&#8217;ve read an interview in <a href="http://www.loogic.com/index.php/2007/12/05/entrevista-a-luv-sayal-emprendedor-y-fundador-de-iweekend/">Loogic</a> that they&#8217;re going to launch Adlemons the next 11th December. Congratulations <em>Luv</em>.</p>
<p><img src="http://www.alfonsojimenez.com/images/2007/12/iweekend.jpg" class="centro" alt="iWeekend" />
</p>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[Influencia del TechCrunch40 Conference]]></title>
      <link>http://www.alfonsojimenez.com/2007/11/27-influencia-del-techcrunch40-conference</link>
      <pubDate>Tue, 27 Nov 2007 12:12:32 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p><a href="http://docstoc.com" rel="nofollow">Docstoc</a> ha publicado un informe donde muestran los reportes de tráfico de los proyectos presentados en <a href="http://www.techcrunch40.com/2007/index.php" rel="nofollow">TechCrunch40</a> recogidos de <a href="http://www.alexa.com" title="Alexa" rel="nofollow">Alexa</a> y <a href="http://www.compete.com" title="Compete" rel="nofollow">Compete</a>. El evento fue celebrado el pasado mes de Septiembre en The Palace Hotel, en San Francisco. Podemos ver como la influencia del evento ha influido notablemente en el tráfico. <a href="http://www.mint.com/" rel="nofollow">Mint</a>, el flamante ganador del premio de 50 mil dólares, llegó a superar las 200 mil visitas. Los proyectos que más incremento absoulto experimentaron fueron <strong>Wixi</strong>, <strong>Flock</strong>, <strong>Docstoc</strong> y el propio <strong>Mint</strong>. La cuestión es: <strong>¿Es notable el incremento de presentaciones de proyectos en eventos hispanos?</strong></p>
<div style="text-align: center;">
<object width="450" height="500"></p>
<param name="movie" value="http://content1.docstoc.com/flash/TechCrunch40 Companies.swf?doc_id=266245" />
<param name="allowScriptAccess" value="sameDomain" /><embed src="http://content1.docstoc.com/flash/TechCrunch40 Companies.swf?doc_id=266245" width="450" height="500" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></object></div>
<p>Fuente | <a href="http://www.techcrunch.com/2007/11/26/techcrunch40-presenters-traffic-two-months-in/" title="TechCrunch">TechCrunch</a>
</p>
]]></description>
    </item>
	
    <item>
      <title><![CDATA[Google Custom Search Business Edition en Construmática]]></title>
      <link>http://www.alfonsojimenez.com/2007/09/13-google-custom-search-business-edition-en-construmatica</link>
      <pubDate>Thu, 13 Sep 2007 19:46:00 GMT</pubDate>
      <author>alfonso</author>
      <description><![CDATA[<p>Hoy hemos lanzado en <a href="http://www.construmatica.com" title="Construmática">Construmática</a> un nuevo buscador interno basado en <a href="http://www.google.com/enterprise/csbe/index.html" title="Google Custom Search Business Edition">Google Custom Search Business Edition</a>, la edición para empresas de <em>Google Custom Search</em>. Esto nos permite entre otras cosas <strong>obtener los resultados de una determinada consulta de búsqueda en formato XML</strong>, teniendo la posibilidad de integrar los resultados cómodamente.</p>
<p><strong>Google Custom Search Business Edition</strong> ofrece una inmensa cantidad de parámetros para refinar y concretar la búsqueda por parte del usuario. Puedes probarlo en <a href="http://www.construmatica.com" title="Construmática">Construmática</a> realizando una búsqueda dentro del site: <a href="http://www.construmatica.com/buscador/acero" title="Acero en Construmática">Acero</a>.</p>
<p><img src="http://www.alfonsojimenez.com/images/2007/09/construmatica.jpg" alt="Google Custom Search Business Edition en Construmática" class="centro" /></p>
<p>Más información | <a href="http://www.construmatica.com" title="Construmática">Construmática</a>
</p>
]]></description>
    </item>
	

  </channel>
</rss>
