<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gephi</title>
	<atom:link href="http://gephi.org/feed/" rel="self" type="application/rss+xml" />
	<link>https://gephi.org</link>
	<description>graph exploration and manipulation</description>
	<lastBuildDate>Mon, 21 May 2012 13:03:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Gexf4j, a new Java library to create GEXF files</title>
		<link>https://gephi.org/2012/gexf4j-a-new-java-library-to-handle-gexf-file-format/</link>
		<comments>https://gephi.org/2012/gexf4j-a-new-java-library-to-handle-gexf-file-format/#comments</comments>
		<pubDate>Mon, 21 May 2012 13:02:22 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[gexf]]></category>
		<category><![CDATA[gexf4j]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=5046</guid>
		<description><![CDATA[
Francesco Ficarola is a Computer Engineer and a Ph.D. student at the Sapienza University of Rome. In addition he is been working for an Italian company as R&#038;D Engineer for one year. His main research interests are Wireless Sensor Networks, Social Networking and whatever concerns &#8220;Internet of Things&#8221;.
Gephi supports the 1.2draft of GEXF file format [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full" style="border: 5px solid #cccccc;" title="Francesco picture" src="/wp-content/uploads/2012/05/francesco.jpg" alt="" width="80" height="80" />
<p class="reclame" style="text-align: left; font-weight: normal; font-size:11px;"><a href="http://www.linkedin.com/in/francescoficarola">Francesco Ficarola</a> is a Computer Engineer and a Ph.D. student at the Sapienza University of Rome. In addition he is been working for an Italian company as R&#038;D Engineer for one year. His main research interests are Wireless Sensor Networks, Social Networking and whatever concerns &#8220;Internet of Things&#8221;.</p>
<p>Gephi supports the 1.2draft of <a href="http://gexf.net/format/">GEXF file format</a> since version 0.8. Until now, if you are a Java developer, you couldn&#8217;t use any up-to-date Java library to manage this version of the format. The only available library for building GEXF graphs was <a href="https://github.com/jmcampanini/gexf4j-core">gexf4j-core</a> v.0.2.0-ALPHA by J. Campanini. Unfortunately that library implemented GEXF 1.1draft only, and is no longer maintained. So I have decided to update that library in order to work and build GEXF 1.2draft compliant graphs. This version introduced many improvements, see the <a href="http://gexf.net/format/history.html">changelog</a>.</p>
<p>The latest version of <a href="https://github.com/francesco-ficarola/gexf4j">gexf4j</a> (currently 0.3.1) supports new XML attributes and data types to encode dynamic networks:</p>
<ul>
<li>timeformat or spell</li>
<li>open intervals (startopen/endopen)</li>
<li>double</li>
<li>date</li>
<li>xsd:dateTime</li>
</ul>
<p>In addition, the javadoc has been added and all methods have now meaningful names for their parameters.</p>
<p>Creating a GEXF file with gexf4j is very simple and requires very few lines of code:  read the two examples in the project <a href="https://github.com/francesco-ficarola/gexf4j/blob/master/README.md">README file</a>, or find them in the &#8220;<a href="https://github.com/francesco-ficarola/gexf4j/tree/master/src/examples/java/it/uniroma1/dis/wiserver/gexf4j/examples"><em>it.uniroma1.dis.wiserver.gexf4j.examples</em></a>&#8221; project package.</p>
<p><!--If you have been a gexfj-core v.0.2.0-ALPHA user, you will be able to easily program with the new version. You only need to change the code a little for the dynamic features, in particular:</p>
<ul>
<li>&#8220;TimeType&#8221; class has been renamed &#8220;TimeFormat&#8221;.</li>
<li>&#8220;Slice&#8221; components are renamed &#8220;Spell&#8221;, according to 1.2draft.</li>
<li>The methods &#8220;setStartDate(Date d)&#8221; and &#8220;setEndDate(d)&#8221; are changed in &#8220;setStartValue(Object o)&#8221; and &#8220;setEndValue(Object o)&#8221;, respectly, in order to support multiple timeformat type: double (default), date and xsd:dateTime.</li>
<li>The Methods &#8220;Date getStartDate()&#8221; and &#8220;Date getEndDate()&#8221; are changed in &#8220;Object getStartValue()&#8221; and &#8220;Object getEndValue()&#8221;, respectly.</li>
<li>The methods &#8220;setStartIntervalType(IntervalType startIntervalType)&#8221; and &#8220;setEndIntervalType(IntervalType endIntervalType)&#8221; have been added in order to allow the user to choose the interval type (open or close) of the &#8220;start/end&#8221; attribute.</li>
</ul-->
<p>Finally, if you would like to support this project, please let me know, you are welcome&#8230; and if you want to stay informed about the latest news on gexf4j, just follow me on Twitter: <a href="https://twitter.com/#!/f_ficarola">@f_ficarola</a></p>
<h3>Checkout code</h3>
<p>Run<br />
<code>git clone git://github.com/francesco-ficarola/gexf4j.git</code></p>
<h3>Report issues</h3>
<p>Simply go to the <a href="https://github.com/francesco-ficarola/gexf4j/issues">Issues</a> tab.</p>
<p>Have a nice &#8220;GEXF graph&#8221;!</p>
<p>Francesco Ficarola</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/gexf4j-a-new-java-library-to-handle-gexf-file-format/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Python Scripting Console for Gephi</title>
		<link>https://gephi.org/2012/python-scripting-console-for-gephi/</link>
		<comments>https://gephi.org/2012/python-scripting-console-for-gephi/#comments</comments>
		<pubDate>Mon, 14 May 2012 15:48:32 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Functionality]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4973</guid>
		<description><![CDATA[The first release of the Gephi&#8217;s Python Console plugin is finally available for download. Through this plugin, you can execute queries and manipulate the graph structure by typing commands on a scripting console, making it a very powerful and concise tool to work with.
This console started as a joint proposal with the GUESS project which [...]]]></description>
			<content:encoded><![CDATA[<p>The first release of the <strong>Gephi&#8217;s Python Console</strong> plugin is finally available for <a href="https://gephi.org/plugins/scripting-plugin/">download</a>. Through this plugin, you can execute queries and manipulate the graph structure by typing commands on a scripting console, making it a very powerful and concise tool to work with.</p>
<p>This console started as a joint proposal with the <a href="http://graphexploration.cond.org/">GUESS project</a> which aimed at porting the Gython language as a console plugin for Gephi during the <a href="https://gephi.org/2011/gsoc-mid-term-scripting-plugin/">Google Summer of Code 2011 program</a>. This project was mentored by Eytan Adar, from the GUESS project, and co-mentored by Mathieu Bastian, from Gephi.</p>
<p><strong>After installation</strong>, the plugin can be accessed through the left slide on Gephi&#8217;s UI or through the Window &gt; Console.</p>
<p><img src="https://gephi.org/wp-content/uploads/2011/08/console.png" alt="" /></p>
<p>Among the <strong>features</strong> available through the console scripting language are:</p>
<ul>
<li>Inspired by the Gython language from the GUESS project (i.e. additional operators for manipulating graphs).</li>
<li>Based on Jython 2.5.2, which implements the Python 2.5 specification.</li>
<li>Graph structure and attributes manipulation.</li>
<li>Filtering support.</li>
<li>Support for running layouts.</li>
<li>Export API support (i.e. generate PDF/GEXF/PNG exports from within the console).</li>
<li>Batch scripts support for automating tasks.</li>
<li>Loads third-party Python libraries.</li>
</ul>
<p>For example, if you would like to filter the male persons from your social graph and make the result visible, you could simply type the following command:</p>
<p><code>visible = g.filter(gender == "male")</code></p>
<p>If you want set this subgraph nodes&#8217; color to blue, you could just type:</p>
<p><code>g.filter(gender == "male").nodes.color = blue</code></p>
<p>Or, even better, if you want to color both the nodes and edges of this same subgraph, just type:</p>
<p><code>(gender == "male").color = blue</code></p>
<p>Implementing batch scripts for automating tasks is very easy. Just save the script as a file with the py extension and load it with the execfile function. For instance, a batch script for creating a random graph with 50 nodes would look like this:</p>
<p><img class="alignnone size-full wp-image-5029" title="scripting_random_graphs" src="https://gephi.org/wp-content/uploads/2012/05/scripting_random_graphs.png" alt="" width="408" height="203" /></p>
<p>And to run the script, you would call the following command on the console:</p>
<p><code>&gt;&gt;&gt; execfile("C:\\Users\\user\\Documents\\script.py")</code></p>
<h2>Installation</h2>
<p>The Scripting Plugin can be installed through the Gephi&#8217;s Tools/Plug-ins menu:</p>
<ol>
<li>Go to the Tools &gt; Plug-ins menu on Gephi&#8217;s user interface.</li>
<li>Open the Available Plugins tab.</li>
<li>Click the &#8220;Reload Catalog&#8221; button, to make sure you have an up-to-date catalog.</li>
<li>Select the &#8220;Scripting Plugin&#8221; on the list and click the Install button.</li>
</ol>
<p>After installation, the plugin can be accessed through the left slide on Gephi&#8217;s UI (as shown in the image below) or through the Window &gt; Console menu.</p>
<p><img src="http://wiki.gephi.org/images/a/a7/Console-location.png" /></p>
<h2>Documentation</h2>
<p>The console&#8217;s documentation at the <a href="http://wiki.gephi.org/index.php/Scripting_Plugin">wiki</a> has instructions for downloading and installing the plugin.</p>
<h2>Feedback and Contributing</h2>
<p>This plugin has been developed by Luiz Ribeiro since the Google Summer of Code 2011 program and we&#8217;re really looking forward to see what you&#8217;ll be able to do with this new tool.</p>
<p>The plugin&#8217;s source code is hosted on <a href="https://github.com/gephi/gephi-plugins/tree/python-scripting-plugin">GitHub</a> and is open to your contributions. If you find any bugs or have requests or feature ideas make sure to open a new ticket on the <a href="https://github.com/gephi/gephi-plugins/issues?labels=python-scripting-plugin">Issues Tracker</a>.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/python-scripting-console-for-gephi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Monthly news</title>
		<link>https://gephi.org/2012/monthly-news/</link>
		<comments>https://gephi.org/2012/monthly-news/#comments</comments>
		<pubDate>Fri, 04 May 2012 14:30:24 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=5011</guid>
		<description><![CDATA[We started the weekly news in March, however this experiment was discontinuous. We come back with monthly news, to give the important news to the people who don&#8217;t have a Twitter account or who don&#8217;t connect to it each regularly.
Job offering:

(March 22) Seek Developer for rewarding Net analysis project

New plugin:

Multimode Networks Transformations

Next community events:

Workshop on [...]]]></description>
			<content:encoded><![CDATA[<p>We started the weekly news in March, however this experiment was discontinuous. We come back with monthly news, to give the important news to the people who don&#8217;t have a Twitter account or who don&#8217;t connect to it each regularly.</p>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>Job offering:</strong></p>
<ul>
<li>(March 22) <a href="https://forum.gephi.org/viewtopic.php?f=36&#038;t=1743">Seek Developer for rewarding Net analysis project</a></li>
</ul>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>New plugin:</strong></p>
<ul>
<li><a href="https://gephi.org/plugins/multimode-networks-transformations/">Multimode Networks Transformations</a></li>
</ul>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>Next community events:</strong></p>
<ul>
<li><a href="http://blogs.iq.harvard.edu/netgov/eventsannouncements/">Workshop on Gephi at Harvard, May 31</a></li>
<li><a href="http://www.dh2012.uni-hamburg.de/">‎&#8221;Introduction to Literary Network analysis using R and Gephi&#8221;(Jockers, Matthew; Meeks, Elijah) Tuesday, July 17, Digital Humanities Conference</a></li>
<li><a href="https://www.coursera.org/course/sna">Lada Adamic course on Social Network Analysis (uses R and Gephi)</a></li>
</ul>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>New Web articles:</strong></p>
<ul>
<li>By <a href="http://twitter.com/gvegayon">@gvegayon</a>: <a href="http://twitterpolitik.net/studie/TwitterPolitik_Studie.pdf">Twitterpolitik: Netzwerke und Themen der politischen Twittersphäre in Österreich</a></li>
<li>By Dejan Petrovic: <a href="http://dejanseo.com.au/search-quality-the-link-graph-theory/">Search Quality: The Link Graph Theory</a></li>
<li>By <a href="http://twitter.com/sigmajs">@sigmajs</a>: <a href="http://sigmajs.org/">sigma.js v0.1 is a fast network visualization for the Web, can load Gephi GEXF files</a></li>
<li>By <a href="http://twitter.com/totetmatt">@totetmatt</a>: <a href="http://www.youtube.com/watch?v=bxy8UlXhJmo">Collaborative Crawl &#038; Input Stream Fork : Let&#8217;s play with Gephi Streaming API</a></li>
<li>By <a href="http://twitter.com/ooof">@ooof</a>: <a href="http://www.udemy.com/lectures/gephi2-67426">担任讲师的数据可视化教程，已经同步到第二课：Gephi中文教程（2）用户界面和基本操作流程</a></li>
<li>By <a href="http://twitter.com/psychemedia">@psychemedia</a>: <a href="http://blog.ouseful.info/2012/04/03/visualising-networks-in-gephi-via-a-scraperwiki-exported-gexf-file/">Visualising Networks in Gephi via a Scraperwiki Exported GEXF File</a></li>
<li>By <a href="http://twitter.com/Telegraph">@Telegraph</a>: <a href="http://www.telegraph.co.uk/news/worldnews/middleeast/syria/9159131/Syria-Asma-and-Bashar-al-Assads-email-network.html?utm_source=dlvr.it&#038;utm_medium=twitter">Syria: Asma and Bashar al-Assad&#8217;s email network</a></li>
<li>By <a href="http://twitter.com/sharpshoot">@sharpshoot</a>: <a href="http://www.livestream.com/gigaombigdata/video?clipId=pla_aca94f6f-d34c-4a85-b219-4fbeae065c1a">See what we&#8217;re building at @quidlabs. Watching Big Data: An Augmented Intelligence For Strategic Decision Making</a></li>
<li>By <a href="http://twitter.com/socialflow">@socialflow</a>: <a href="http://blog.socialflow.com/post/7120244932/data-viz-kony2012-see-how-invisible-networks-helped-a-campaign-capture-the-worlds-attention">KONY2012: See How Invisible Networks Helped a Campaign Capture the World’s Attention</a></li>
<li>By <a href="http://twitter.com/weavrs">@weavrs</a>: <a href="http://www.flickr.com/photos/philterphactory/">Some purdy Data Visualisation of Weavrs using Gephi.</a></li>
<li>By <a href="http://twitter.com/JCPlantin">@JCPlantin</a>: <a href="http://cartonomics.org/2012/03/08/post-fukushima-radiation-debate-mapping-the-online-issue-network/">Graph of Post Fukushima Radiation Debate</a></li>
</ul>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>New research papers:</strong></p>
<ul>
<li>F. Celli, L. Rossi: <a href="http://aclweb.org/anthology-new/W/W12/W12-06.pdf#page=22">The Role of Emotional Stability in Twitter Conversations</a>, Proceedings of the Workshop on Semantic Analysis in Social Media, part of the 13th Conference of the European Chapter of the Association for Computational Linguistics (EACL 2012)</li>
<li>P. Oldham, S. Hall, G. Burton: Synthetic Biology: <a href="http://www.plosone.org/article/info:doi%2F10.1371%2Fjournal.pone.0034368">Mapping the Scientific Landscape</a>, PLoS ONE 7(4): e34368</li>
<li>J. Lee et al.: <a href="http://www.jucs.org/jucs_18_4/social_network_based_reputation/jucs_18_04_0532_0553_lee.pdf">Social Network Based Reputation Computation and Document Classification</a>, Journal of Universal Computer Science, vol. 18, no. 4 (2012), 532-553</li>
<li>C. Horsethief: <a href="http://arxiv.org/ftp/arxiv/papers/1204/1204.3891.pdf">Re-differentiation as collective intelligence: The Ktunaxa language online community</a>, CI2012</li>
<li>J. Jerkins: <a href="http://dl.acm.org/citation.cfm?id=2184515">MINA: an algorithm for detecting the presence of extrinsic network nodes using a message induced graph</a>, Proceedings of the 50th Annual Southeast Regional Conference (ACM-SE&#8217;12)</li>
<li>B. Latour, P. Jensen, T. Venturini, S. Grauwin, D. Boullier: <a href="https://perso.ens-lyon.fr/pablo.jensen/whole.pdf">The Whole is Always Smaller Than Its Parts</a>, British Journal of Sociology</li>
<li>M. Fatemi, L. Tokarchuk: <a href="http://www.fever.ch/usbkey_eurosys12/workshops/MPM/pdf/07-fatemi.pdf">An Empirical Study on IMDb and its Communities Based on the Network of Co-Reviewers</a>, Proceedings of MPM&#8217;12</li>
<li>Z. Batist: <a href="http://zackbatist.com/honoursprojectfinal/honoursprojectfinal.pdf">Feasting in Bronze Age Greece: A Network Analysis Approach</a>, Bachelor of Arts, Carleton University</li>
<li>M. Turalska, E. Geneston, B.J. West, P. Allegrini, and P. Grigolini: <a href="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3305924/">Cooperation-Induced Topological Complexity: A Promising Road to Fault Tolerance and Hebbian Learning</a>, Front Physiol. 2012; 3: 52</li>
<li>J. Kelly, V. Barash, K. Alexanyan, B. Etling, R. Faris, U. Gasser, J. Palfrey: <a href="https://cyber.law.harvard.edu/sites/cyber.law.harvard.edu/files/Mapping_Russian_Twitter_2012.pdf">Mapping Russian Twitter</a>, Berkman Center Research Publication No. 2012-3</li>
<li>T. Vinodrai et al.: <a href="http://www.environment.uwaterloo.ca/geography/faculty/steffaniescott/documents/2012vinodraietaledcotakingregionalaction.pdf">Taking regional action? Understanding networks in the local food, green energy &#038; creative sectors in Waterloo region</a>, Economic Developers Council of Ontario (EDCO)</li>
<li>J. Devezas, H. Alves, A. Figueir: <a href="http://josedevezas.com/publications/devezas-news_context_folksonomy_web_clipping-ICDMA2012.pdf">Creating News Context From a Folksonomy of Web Clipping</a>, ICDMA2012</li>
<li>L. Gilarranz, J. Bascompte: <a href="http://www.sciencedirect.com/science/article/pii/S0022519311005972">Spatial network structure and metapopulation persistence</a>, Journal of Theoretical Biology, 297: 11-16</li>
</ul>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/monthly-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The GSoC rocket launched</title>
		<link>https://gephi.org/2012/the-gsoc-rocket-launched-3/</link>
		<comments>https://gephi.org/2012/the-gsoc-rocket-launched-3/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 16:28:23 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[gsoc]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4990</guid>
		<description><![CDATA[The Google Summer of Code 2012 has officially started! The results have been announced by Google. Congratulations to the students who join the Gephi project:

Eduardo Espinoza &#8211; Legend Module in Preview
Romain Yon &#8211; Cloud Gephi
Taras Klaskovsky  &#8211; Force Directed Edge Bundling algorithm
Vikash Anand &#8211; Statistics Reports and HTML5 Charts
Min WU &#8211; Interconnect Graph Streaming [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-4862" title="Google Summer of Code 2012" src="https://gephi.org/wp-content/uploads/2010/02/GSoC_2012_logo_250px.png" alt="" width="250" height="127" />The Google Summer of Code 2012 has officially started! The <a href="http://www.google-melange.com/gsoc/projects/list/google/gsoc2012">results</a> have been announced by Google. Congratulations to the students who join the Gephi project:</p>
<ul>
<li>Eduardo Espinoza<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Legend Module in Preview</span></li>
<li>Romain Yon<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Cloud Gephi</span></li>
<li>Taras Klaskovsky <span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Force Directed Edge Bundling algorithm</span></li>
<li>Vikash Anand<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Statistics Reports and HTML5 Charts</span></li>
<li>Min WU<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Interconnect Graph Streaming API and <a href="http://graphstream-project.org/">GraphStream</a></span></li>
</ul>
<p><span style="font-style: italic;">You put a lot of attention on doing the bests applications and demonstrate great motivation in addition to strong technical skills. We are very excited to work with you guys!</span></p>
<p>This year we are also honored to count on world-class researchers as mentors: <a href="http://pigne.org/">Yoann Pigné</a> is an Assistant Professor at the university of Le Havre, France, and is a leader of the <a href="http://graphstream-project.org/">GraphStream</a> project. We will co-mentor the Graph Streaming project with <a href="http://www.di.unito.it/~panisson/">André Panisson</a>, our former Google Summer of Code student. André got his Ph.D. recently, and authored the video of <a href="/2011/the-egyptian-revolution-on-twitter/">the Egyptian Revolution on Twitter</a>. Finally, <a href="http://www.informatik.uni-rostock.de/~ct/">Christian Tominski</a>, who mentored the Preview refactoring last year, will mentor the Force Directed Edge Bundling project. He is a Lecturer and Researcher at the Institute for Computer Science at the University of Rostock. He has authored several articles in the field of information visualization.</p>
<p>Former Google Summer of Code students will also mentor and advise students, like Luiz Ribeiro.</p>
<h4><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />The Summer <a href="https://www.google-melange.com/gsoc/events/google/gsoc2012">Timeline</a>:</h4>
<p>* <strong>Until May 21:</strong> Students get to know mentors, read documentation, get up to speed to begin working on their projects.<br />
* <strong>May 21:</strong> Students starts to code<br />
* <strong>July 13:</strong> Mid-term evaluation<br />
* <strong>August 24:</strong> Final evaluation</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/the-gsoc-rocket-launched-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>0.8.1 beta released</title>
		<link>https://gephi.org/2012/0-8-1-beta-released/</link>
		<comments>https://gephi.org/2012/0-8-1-beta-released/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 07:51:01 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[0.8.1]]></category>
		<category><![CDATA[localization]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[timelime]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4882</guid>
		<description><![CDATA[The latest version of Gephi has been released, download it for Windows, Mac OS and Linux platforms. This release delivers a complete new timeline component with many awaited features. The timeline is at the heart of our dynamic network analysis (longitudinal networks) effort at Gephi and this feature is the result of last year&#8217;s Google Summer [...]]]></description>
			<content:encoded><![CDATA[<p>The latest version of Gephi has been released, <a title="Download" href="/users/download/"><strong>download</strong></a> it for Windows, Mac OS and Linux platforms. This release delivers a complete new timeline component with many awaited features. The timeline is at the heart of our dynamic network analysis (longitudinal networks) effort at Gephi and this feature is the result of last year&#8217;s <a href="/gsoc-mid-term-a-new-timeline">Google Summer of Code</a>. It gives the ability to explore a network over time in a very powerful way.</p>
<p class="reclame" style="text-align: center; font-weight: normal; font-size: 11px; margin: 20px;"><img class="size-full wp-image-4888 " title="Timeline in 0.8.1-beta" src="https://gephi.org/wp-content/uploads/2012/03/timeline_sparkline.png" alt="" width="586" height="54" /><br />
<span>New Timeline with embedded sparkline. Example with a Twitter user network.</span></p>
<p>The timeline new features include <strong>animation</strong> (play button), <strong>custom bounds</strong> and embedded <strong>sparkline</strong>. In the previous Gephi version we added the ability to run metrics over time. For instance, one can calculate the average degree over time or simply the number of nodes (like in the example above). With the new timeline it&#8217;s possible to display a dynamic attribute directly in the component. For example if you&#8217;re looking at a Twitter network you can plot the total number of tweets as a sparkline.</p>
<p>This release also ships with three new languages: <strong>Czech</strong>, <strong>Chinese</strong> and <strong>Russian</strong>. Special Thanks to our awesome localization team.</p>
<p style="text-align: center;"><img class="size-full wp-image-2594   aligncenter" title="separator" src="https://gephi.org/wp-content/uploads/2010/06/separator.png" alt="" width="98" height="20" /></p>
<p>We just started the <strong>Google Summer of Code</strong> with <a href="google-summer-of-code-2012">exciting projects</a>! We&#8217;re looking for talented students this summer (apply <a href="http://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012">here</a>). The team will also work on the next major release of Gephi (0.9). If you have ideas or suggestions, please don&#8217;t hesitate to express then on our forum or through GitHub <a href="https://github.com/gephi/gephi/issues">issues</a>. Our <a href="http://wiki.gephi.org/index.php/Roadmap">roadmap</a> is open and most ideas comes from users&#8217; experience.</p>
<p>Because it&#8217;s a major release, changes <strong>are not deployed through the AutoUpdate</strong>, you need to download and install the new version. Plug-ins also need to be checked for compatibility. They will reappear on the Plugin Center in the coming days, as they are verified. Thanks for your patience.</p>
<p><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />Consult the <a href="http://wiki.gephi.org/index.php/Gephi_Releases#Gephi_0.8.1beta_.28Mar_29_2012.29">release notes</a> and the new <a href="/docs/api">Javadoc</a> for more information.</p>
<h3>New features</h3>
<table style="background: #eeeeee; margin-top: 15px;" border="0" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td><img class="alignnone size-full wp-image-4887" style="border-image: initial; border: 1px solid black;" title="New Timeline" src="https://gephi.org/wp-content/uploads/2012/03/tineline_thumb.png" alt="" width="100" height="71" /></td>
<td valign="top"><strong>New Timeline</strong></p>
<p>Exciting new timeline with animation, custom bounds settings and embedded spakline. The timeline interval and bounds can now be set manually by the user. By hitting the play button the interval moves automatically. All parameters can be configured. The timeline date support has been completely rewritten, now showing dates and periods in a readable way.</td>
</tr>
<tr>
<td><img class="alignnone size-full wp-image-4886" style="border-image: initial; border: 1px solid black;" title="Local/Global ranking scale" src="https://gephi.org/wp-content/uploads/2012/03/local_scale_thumb.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>Local/Global Ranking</strong></p>
<p>Compare networks over time or with different filters is now easier as Ranking lets you decide whether the scale should be local or global. In local scale, sizes and colors depend on the visible sub-graph. In global scale (set by default) they depend on the whole graph, thus allowing comparisons over time.</td>
</tr>
<tr>
<td><img class="alignnone size-thumbnail wp-image-4900" style="border-image: initial; border: 1px solid black;" title="Modularity supports weighted networks" src="https://gephi.org/wp-content/uploads/2012/03/Screen-shot-2012-03-25-at-3.39.56-PM-100x100.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>Weighted community-detection</strong></p>
<p><a href="https://sites.google.com/site/findcommunities/">Louvain Modularity</a> (Community detection) adds edge weight support and resolution setting.</td>
</tr>
</tbody>
</table>
<h3>New and Noteworthy</h3>
<p>* Better Preview performance when hidden edges (good for large graphs)<br />
* Self-loop filter. Remove self loops in the graph.</p>
<h3>New localization (Go to Tools &gt; Languages)</h3>
<p>* Russian<br />
* Chinese (China)<br />
* Czech</p>
<h3>Bug fixes</h3>
<p>* Exception when deserializing a preview preset <a href="https://github.com/gephi/gephi/issues/554">(Issue 554)</a><br />
* ClassCastException when saving a gephi file after PDF export <a href="https://github.com/gephi/gephi/issues/552">(Issue 552)</a><br />
* Cannot Preserve Z-Coordinate in GEXF exporter <a href="https://github.com/gephi/gephi/issues/547">(Issue 547)</a><br />
* Gephi won&#8217;t start on Mac OS X Lion because of a missing JAWT library <a href="https://github.com/gephi/gephi/issues/542">(Issue 542)</a><br />
* Add a local/global scale button to Ranking <a href="https://github.com/gephi/gephi/issues/541">(Issue 541)</a><br />
* Spreadsheet import: edge weight not imported <a href="https://github.com/gephi/gephi/issues/540">(Issue 540)</a><br />
* NOT operator wrong with topology filters <a href="https://github.com/gephi/gephi/issues/539">(Issue 539)</a><br />
* Multiple partition filters not named: cannot tell them apart <a href="https://github.com/gephi/gephi/issues/537">(Issue 537)</a><br />
* AttributeContollerImpl should be renamed to AttributeControllerImpl <a href="https://github.com/gephi/gephi/issues/530">(Issue 530)</a><br />
* Timeline &#8211; Set Custom Bounds does not support DATETIME <a href="https://github.com/gephi/gephi/issues/529">(Issue 529)</a><br />
* Data Laboratory &#8211; Dynamic Attributes Edit function resets values <a href="https://github.com/gephi/gephi/issues/528">(Issue 528)</a><br />
* DL exporter fix <a href="https://github.com/gephi/gephi/issues/525">(Issue 525)</a><br />
* Validator of MySQL&#8217;s &#8220;host&#8221; field <a href="https://github.com/gephi/gephi/issues/521">(Issue 521)</a><br />
* Edge/Node attributes don&#8217;t support datetime format <a href="https://github.com/gephi/gephi/issues/518">(Issue 518)</a><br />
* Directed Graph cluster coefficient provides incorrect values in certain situations <a href="https://github.com/gephi/gephi/issues/517">(Issue 517)</a><br />
* NullPointer in GUI when defining range Filters <a href="https://github.com/gephi/gephi/issues/516">(Issue 516)</a><br />
* datalab: empty column fails edge csv import <a href="https://github.com/gephi/gephi/issues/515">(Issue 515)</a><br />
* updateDimensions in PreviewController does not take into account node size <a href="https://github.com/gephi/gephi/issues/514">(Issue 514)</a><br />
* Overview&#8217;s graph area does not redraw edges automatically <a href="https://github.com/gephi/gephi/issues/513">(Issue 513)</a><br />
* c+p correction: HITS hub chart was repeated twice in output. <a href="https://github.com/gephi/gephi/issues/510">(Issue 510)</a><br />
* database import from Postgres does not handle node color attribute <a href="https://github.com/gephi/gephi/issues/506">(Issue 506)</a><br />
* Incorrect Teradata JDBC url <a href="https://github.com/gephi/gephi/issues/505">(Issue 505)</a><br />
* [Datalab] Duplicated nodes on import spreadsheet <a href="https://github.com/gephi/gephi/issues/498">(Issue 498)</a><br />
* [Datalab] Failing silently to load attribute values on import spreadsheet <a href="https://github.com/gephi/gephi/issues/497">(Issue 497)</a><br />
* Attribute Columns Property editors don&#8217;t support dynamic numbers <a href="https://github.com/gephi/gephi/issues/494">(Issue 494)</a><br />
* Arrows not hidden when edges hidden on Preview <a href="https://github.com/gephi/gephi/issues/493">(Issue 493)</a><br />
* Some text appears garbled when loaded from a project file <a href="https://github.com/gephi/gephi/issues/488">(Issue 488)</a><br />
* Exception when adding a new Perspective plugin development <a href="https://github.com/gephi/gephi/issues/486">(Issue 486)</a><br />
* NullPointer Exception with Edge Labels <a href="https://github.com/gephi/gephi/issues/478">(Issue 478)</a><br />
* Filter range does not filter if min == max <a href="https://github.com/gephi/gephi/issues/477">(Issue 477)</a><br />
* Heatmap Tool Sometimes Doesn&#8217;t Work <a href="https://github.com/gephi/gephi/issues/472">(Issue 472)</a><br />
* deleting a field in data lab yields an error <a href="https://github.com/gephi/gephi/issues/468">(Issue 468)</a><br />
* Email imports can&#8217;t be cancelled <a href="https://github.com/gephi/gephi/issues/466">(Issue 466)</a><br />
* Invalid XML character error when loading a gephi file <a href="https://github.com/gephi/gephi/issues/465">(Issue 465)</a><br />
* Range Slider writes N/A if the min and max values are the same <a href="https://github.com/gephi/gephi/issues/464">(Issue 464)</a><br />
* datalab: exception on hiding a column used to sort the table <a href="https://github.com/gephi/gephi/issues/454">(Issue 454)</a><br />
* Can&#8217;t build without Netbeans installed <a href="https://github.com/gephi/gephi/issues/452">(Issue 452)</a><br />
* Auto-refresh not updated after changing the spline <a href="https://github.com/gephi/gephi/issues/448">(Issue 448)</a><br />
* AttributeRangeFilter returns main graph when nothing matches filter <a href="https://github.com/gephi/gephi/issues/435">(Issue 435)</a><br />
* Timeline need more precision when dealing with dates <a href="https://github.com/gephi/gephi/issues/202">(Issue 202)</a><br />
* Degree Filter Not Filtering as Subfilter in Tookit <a href="https://github.com/gephi/gephi/issues/69">(Issue 69)</a><br />
* UnsatisfiedLinkError on startup on Mac OS X <a href="https://github.com/gephi/gephi/issues/44">(Issue 44)</a></p>
<h3>Plugins development</h3>
<p>Last november we migrated our source code from Launchpad to <a href="https://github.com/gephi">GitHub</a> and have seen an increase of activity in plugin development. We also simplified the environment and wrote more documentation how to get started. We created a dedicated <a href="https://github.com/gephi/gephi-plugins">repository</a> on GitHub and compiled a list of more than 20 different code examples on the <a href="https://gephi.org/2012/introducing-the-gephi-plugins-bootcamp/">Gephi Plugins Bootcamp</a>.</p>
<p><strong>Do Gephi technologies matter for your research or business?</strong> You can support us by <a href="http://pledgie.com/campaigns/13977">donating</a> to the <a href="http://consortium.gephi.org/">Gephi Consortium</a>, or becoming a member to have an impact on our roadmap.</p>
<p>Feel free to <a href="mailto:contact@gephi.org">reach to us</a> if you are willing to organize events (meetups, workshops, hackathon, etc.), we will support them.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/0-8-1-beta-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Summer of Code 2012</title>
		<link>https://gephi.org/2012/google-summer-of-code-2012/</link>
		<comments>https://gephi.org/2012/google-summer-of-code-2012/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 03:34:48 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[gsoc]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4864</guid>
		<description><![CDATA[It&#8217;s a great news, Gephi has been accepted again for the Google Summer of Code. The program is the best way for students around the world to start contributing to an open-source project. Since 2009, each edition is a great success and dramatically boosted Gephi&#8217;s project development.
What is Gephi?
Networks are everywhere: email systems, financial transaction systems [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-4862" title="Google Summer of Code 2012" src="https://gephi.org/wp-content/uploads/2010/02/GSoC_2012_logo_250px.png" alt="" width="250" height="127" />It&#8217;s a great news, Gephi has been accepted again for the <a href="http://code.google.com/soc/">Google Summer of Code</a>. The program is the best way for students around the world to start contributing to an open-source project. Since 2009, each edition is a great success and dramatically boosted Gephi&#8217;s project development.</p>
<h3>What is Gephi?</h3>
<p>Networks are everywhere: email systems, financial transaction systems and gene-protein interaction networks are just a few examples. Gephi began as a university student project four years ago and has quickly become an open source software leader in the <a href="https://en.wikipedia.org/wiki/Exploratory_data_analysis">visualization and analysis</a> of large <a href="https://en.wikipedia.org/wiki/Network_theory">networks</a>. It is an important contribution to the ecosystem of tools used by researchers and big data analysts to explore and extract value from the deluge of relational data and disseminate a better understanding for people to think about a “connected” world.</p>
<p>Gephi is a “Photoshop” for graphs: designed to make data navigation and manipulation easy, it covers the entire process from data importing to aesthetics refinements and communication. Users interact with the visualization and manipulate structures, shapes and colors to reveal the properties of complex and messy data. The goal is to help data analysts make hypotheses and intuitively discover patterns or errors in large data collections.</p>
<p>Gephi&#8217;s project aims at providing the perfect tool to visualize and analyze networks. We focus on usability, performance and modularity:</p>
<ul>
<li><strong>Usability:</strong> Easy to install, an UI without scripts and real-time manipulation.</li>
<li><strong>Performance:</strong> Visualization engine and data structures are built scalable. Supporting always-larger graphs is an endless challenge!</li>
<li><strong>Modularity:</strong> Extensible software architecture, built on top of <a href="http://platform.netbeans.org/">Netbeans Platform</a>. Add plug-ins with ease.</li>
</ul>
<p><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />Learn more about Gephi, watch <a href="http://vimeo.com/9726202">Introducing Gephi 0.7</a>, <a href="/download">download</a> and try it by following <a href="/users/quick-start/">Quick Start Tutorial</a>.</p>
<p>Gephi&#8217;s project is young, the growing community is composed of engineers and scientists involved in network science, datavis and complex networks.</p>
<h3>List of ideas</h3>
<p>List of ideas are availabe on our <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012">wiki</a>. They cover various skills and level of difficulties:</p>
<p>* <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012#Legend_module">Legend module</a> &#8211; <span style="color: #555555; font-size: 11px;">Integrate a legend in the Preview module</span><br />
* <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012#Flexible_Table_Importer">Flexible Table Importer</a> &#8211; <span style="color: #555555; font-size: 11px;">Create a generic network creation wizard from data tables</span><br />
* <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012#Cloud_Gephi">Cloud Gephi</a> &#8211; <span style="color: #555555; font-size: 11px;">Build an online gallery and bring some of Gephi&#8217;s features to the cloud</span><br />
* <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012#Force Directed Edge Bundling">Force Directed Edge Bundling</a> &#8211; <span style="color: #555555; font-size: 11px;">Implement Force Directed Edge Bundling algorithm</span><br />
* <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012#Statistics Reports and HTML5 Charts">Statistics Reports and HTML5 Charts</a> &#8211; <span style="color: #555555; font-size: 11px;">Improve  statistic report and port existing charts to HTML5+Javascript</span><br />
* <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012#Statistics_Unit_Tests">Statistics Unit Tests</a> &#8211; <span style="color: #555555; font-size: 11px;">Add unit tests to the statistical algorithms</span><br />
* <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2012#Graph_Streaming">Graph Streaming</a> &#8211; <span style="color: #555555; font-size: 11px;">Improve Graph Streaming API and interconnect GraphStream&#8217;s dynamic graph event model with Gephi</span></p>
<p>Please also propose your ideas on the <a href="https://forum.gephi.org/viewtopic.php?f=9&amp;t=67">forum</a>. They will be considered and discussed by the community. Have a look at our long-term <a href="https://wiki.gephi.org/index.php/Roadmap#Roadmap_-_Target_1.0">Roadmap</a>.</p>
<h3>Students, join the network</h3>
<p>Students, apply now for Gephi proposals. Join us on <a href="https://forum.gephi.org/viewtopic.php?f=9&#038;t=1732">the forum</a> and fill in <a href="https://forum.gephi.org/viewtopic.php?f=9&amp;t=74">the questionnaire</a>. Be careful, <span style="color: red;"><strong>deadline for submitting proposals is April 6</strong></span> (<a href="https://www.google-melange.com/gsoc/events/google/gsoc2012">timeline</a>)!</p>
<p>Hélder Suzuki, student for Gephi in 2009 and now software engineer at Google, wrote:<br />
<code>At Gephi students will have the opportunity to produce high impact work on a rapidly growing area and be noted for it.</code></p>
<p>View our previous Google Summer of Code projects <a href="/users/gsoc/">here</a> and read <a href="/tag/gsoc+interview/">former students interviews</a>.</p>
<p><a href="http://twitter.com/gephi">Follow Gephi on Twitter</a></p>
<p><img class="aligncenter size-full wp-image-2200" title="Gephi render example" src="/wp-content/uploads/2010/03/screenshot_gephi1903.png" alt="" width="507" height="604" /></p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/google-summer-of-code-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How 3 years of Google Summer of Code made us great</title>
		<link>https://gephi.org/2012/how-3-years-of-google-summer-of-code-made-us-great/</link>
		<comments>https://gephi.org/2012/how-3-years-of-google-summer-of-code-made-us-great/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 18:21:23 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[gsoc]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4854</guid>
		<description><![CDATA[
This post was originally posted on the Google Open Source blog by Sébastien Heymann, co-founder of the Gephi project and Google Summer of Code administrator.
Networks are everywhere: email systems, financial transaction systems and gene-protein interaction networks are just a few examples. Gephi began as a university student project four years ago and has quickly become [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full" style="border: 5px solid #cccccc;" title="Sébastien picture" src="/wp-content/uploads/2009/04/seb.jpg" alt="" width="80" height="80" />
<p class="reclame" style="text-align: left; font-weight: normal; font-size:11px;">This post was originally posted on the <a href="http://google-opensource.blogspot.com/2012/03/gephi-how-3-years-of-google-summer-of.html">Google Open Source blog</a> by Sébastien Heymann, co-founder of the Gephi project and Google Summer of Code administrator.</p>
<p>Networks are everywhere: email systems, financial transaction systems and gene-protein interaction networks are just a few examples. Gephi began as a university student project four years ago and has quickly become an open source software leader in the <a href="https://en.wikipedia.org/wiki/Exploratory_data_analysis">visualization and analysis</a> of large <a href="https://en.wikipedia.org/wiki/Network_theory">networks</a>. It is an important contribution to the ecosystem of tools used by researchers and big data analysts to explore and extract value from the deluge of relational data and disseminate a better understanding for people to think about a “connected” world.</p>
<p>Gephi is a “Photoshop” for such data: designed to make data navigation and manipulation easy, it covers the entire process from data importing to aesthetics refinements and communication. Users interact with the visualization and manipulate structures, shapes and colors to reveal the properties of complex and messy data. The goal is to help <a href="http://en.wikipedia.org/wiki/Visual_Analytics">data analysts</a> make hypotheses and intuitively discover patterns or errors in large data collections.</p>
<p style="text-align: center;"><img class="size-full wp-image-2594  aligncenter" title="separator" src="/wp-content/uploads/2010/06/separator.png" alt="" width="98" height="20" /></p>
<p>Our success was made much faster thanks to the <a href="http://code.google.com/soc/">Google Summer of Code</a>. The timing of our acceptance into our first Google Summer of Code in 2009 was perfect: we were at the point where we could make the project really open in the way our infrastructure could scale code, and our human organization was ready to welcome contributors. Participating in the program gave us a boost of fame helping us promote the project and created an international community for Gephi.</p>
<p>We met many people and learned a lot, but this is the most important lesson to share: though students are paid stipends for their work during the program, money should not be the first incentive. To encourage students to stick with the project, we talk with each of them to find their deeper motivations in working on Gephi and try and develop a win-win situation. And it works! Many of the students continue to contribute to the project for at least a few months after the end of the Google Summer of Code program, and others have gone on to become members of our <a href="/about/people/">team</a>.</p>
<p>We recognize this long-term investment by promoting their work, like <a href="http://it.linkedin.com/pub/andr%C3%A9-panisson/11/163/81a">André Panisson</a> who released a plug-in in 2010, which connects Gephi to a graph stream and visualizes it in real-time. André made this amazing video of the <a href="/2011/the-egyptian-revolution-on-twitter/">Egyptian Revolution on Twitter</a>, when he monitored the hashtag #jan25. More recently, <a href="http://www.linkedin.com/pub/martin-skurla/28/114/951">Martin Škurla</a> presented his work at <a href="http://fosdem.org/2012/">FOSDEM 2012</a> and <a href="/2012/gephi-neo4j-presentation-at-fosdem/">talked</a> about his plug-in which connects Gephi to the graph database <a href="http://neo4j.org/">Neo4j</a>. He started his project during the Google Summer of Code 2010 and continued his work until the release. We really appreciated the effort, so the <a href="https://consortium.gephi.org/">Gephi Consortium</a> and Neo Technologies Inc. paid his expenses to attend the conference. Finally, I must talk about <a href="http://www.linkedin.com/pub/eduardo-ramos-ib%C3%A1%C3%B1ez/22/315/b62">Eduardo Ramos</a>, who we rejected as a student two years ago for Google Summer of Code but who was so motivated that he decided to contribute to Gephi anyway, becoming one of the project leaders, a Google Summer of Code mentor&#8230; and a friend!</p>
<p>To learn more about Gephi, watch our <a href="http://vimeo.com/9726202">madness screencast</a> and view our previous Google Summer of Code projects <a href="https://gephi.org/users/gsoc/">here</a>. Want to apply for Gephi? Join us on the <a href="https://forum.gephi.org/viewforum.php?f=9">forum</a>.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/how-3-years-of-google-summer-of-code-made-us-great/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly news</title>
		<link>https://gephi.org/2012/weekly-news-2/</link>
		<comments>https://gephi.org/2012/weekly-news-2/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 09:44:52 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4840</guid>
		<description><![CDATA[In this short post we summarize the community&#8217;s activity of last week. It aims at giving the last news to the people who don&#8217;t have a Twitter account or who don&#8217;t connect to it each day.
New plugin:

Recast Column in the Data Laboratory

New Web articles:

By @gvegayon: rgexf, an R library to build GEXF graph files
RT @ooof: [...]]]></description>
			<content:encoded><![CDATA[<p>In this short post we summarize the community&#8217;s activity of last week. It aims at giving the last news to the people who don&#8217;t have a Twitter account or who don&#8217;t connect to it each day.</p>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>New plugin:</strong></p>
<ul>
<li><a href="https://gephi.org/plugins/recast-column/">Recast Column in the Data Laboratory</a></li>
</ul>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>New Web articles:</strong></p>
<ul>
<li>By <a href="http://twitter.com/gvegayon">@gvegayon</a>: <a href="https://bitbucket.org/gvegayon/rgexf/wiki/Home">rgexf, an R library to build GEXF graph files</a></li>
<li>RT <a href="http://twitter.com/ooof">@ooof</a>: <a href="http://braingnp.org/data/2012/03/05/information_explosion_visualization_gephi_mooc/">信息大爆炸后，数据可视化、Gephi、MOOC… </a></li>
</ul>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>New research paper:</strong></p>
<ul>
<li>A. Helmond and E. Weltevrede: <a href="http://firstmonday.org/htbin/cgiwrap/bin/ojs/index.php/fm/article/viewArticle/3775/3142">Where do bloggers blog? Platform transitions within the historical Dutch blogosphere</a>, First Monday, vol 17, number 2</li>
</ul>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/weekly-news-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly news</title>
		<link>https://gephi.org/2012/weekly-news/</link>
		<comments>https://gephi.org/2012/weekly-news/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 09:39:13 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4824</guid>
		<description><![CDATA[In this short post we summarize the community&#8217;s activity of last week. It aims at giving the last news to the people who don&#8217;t have a Twitter account or who don&#8217;t connect to it each day.
New Web articles:

By Totetmatt: Arrow V &#8211; Command Line Crawler in Python using Gephi graph streaming
RT @pcbje: Visualizing k-nearest neighbors [...]]]></description>
			<content:encoded><![CDATA[<p>In this short post we summarize the community&#8217;s activity of last week. It aims at giving the last news to the people who don&#8217;t have a Twitter account or who don&#8217;t connect to it each day.</p>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>New Web articles:</strong></p>
<ul>
<li>By <a href="https://twitter.com/Totetmatt">Totetmatt</a>: <a href="http://matthieu-totet.fr/Koumin/tools/arrowv-command-line-crawler/">Arrow V &#8211; Command Line Crawler in Python using Gephi graph streaming</a></li>
<li>RT <a href="http://twitter.com/pcbje">@pcbje</a>: <a href="http://pcbje.com/post/17432986180/visualizing-k-nearest-neighbors-with-gephi">Visualizing k-nearest neighbors with Gephi</a></li>
<li>By <a href="https://twitter.com/seinecle">@seinecle</a>: <a href="http://youtu.be/ht0IHn5OoVA">Overlyde &#8211; create dynamic maps of scientific publications from the Web of Science</a></li>
<li>By <a href="https://twitter.com/sharismlab">@sharismlab</a>: <a href="http://www.udemy.com/gephi/">介绍 Gephi 的各项主要操作方法 Gephi course in Chinese on the way</a></li>
<li>RT <a href="https://twitter.com/mdomenjoud">@mdomenjoud</a>:<a href="http://blog.octo.com/introduction-aux-graphes-avec-neo4j-et-gephi/"> Introduction aux graphes avec #Neo4j et Gephi #OCTOTechnology , un sujet R&#038;D passionnant!</a></li>
</ul>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /><strong>New research papers:</strong></p>
<ul>
<li>M. Gencer: <a href="http://www.igi-global.com/article/content/64320">The Evolution of IETF Standards and their Production</a>, International Journal of IT Standards and Standardization Research (IJITSR)</li>
<li>A. Herdagdelen et al.: <a href="http://arxiv.org/pdf/1202.4393.pdf">An Exploration of Social Identity: The Geography and Politics of News-Sharing Communities in Twitter</a></li>
<li>I. Vlachos, A. Aertsen, A. Kumar:<a href="http://www.ploscompbiol.org/article/info%3Adoi%2F10.1371%2Fjournal.pcbi.1002311"> Beyond Statistical Significance: Implications of Network Structure on Neuronal Activity</a>, PLoS Comput Biol 8(1): e1002311.</li>
<li>V. Labatut and J-M. Balasque: <a href="http://hal.archives-ouvertes.fr/docs/00/66/32/52/PDF/labatut2011b.pdf">Detection and Interpretation of Communities in Complex Networks: Practical Methods and Application</a></li>
</ul>
<p>Notice that all research papers using Gephi are listed on <a href="https://wiki.gephi.org/index.php/Gephi_Research">the wiki</a>.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/weekly-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annual report 2011</title>
		<link>https://gephi.org/2012/annual-report-2011/</link>
		<comments>https://gephi.org/2012/annual-report-2011/#comments</comments>
		<pubDate>Sat, 25 Feb 2012 11:50:07 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[consortium]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4815</guid>
		<description><![CDATA[The previous year has seen the consecration of Gephi in various research fields and the software development is now fully mature, leading the way to neat plugins and usages by companies. Looking back to one year ago, we are proud to note that we reached all of our goals, excepting the user manual. Following is [...]]]></description>
			<content:encoded><![CDATA[<p>The previous year has seen the consecration of Gephi in various research fields and the software development is now fully mature, leading the way to neat plugins and usages by companies. Looking back to <a href="/2011/happy-new-year/">one year ago</a>, we are proud to note that we reached all of our goals, excepting the user manual. Following is the result of the Gephi Consortium for 2011.</p>
<p><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />Get the annual report in PDF <a href="https://consortium.gephi.org/docs/gephi-consortium-public-results-2011.pdf">here <img src="/wp-content/uploads/2009/03/application_pdf.png" alt="" title="See PDF" width="32" height="32" /></a></p>
<p>For any question, please contact us at <a href="mailto:consortium@gephi.org">consortium@gephi.org</a>.</p>
<p style="text-align: center;"><img class="size-full wp-image-2594   aligncenter" style="margin-top: 20px;" title="separator" src="/wp-content/uploads/2010/06/separator.png" alt="" width="98" height="20" /></p>
<p><img src="https://gephi.org/wp-content/uploads/2012/02/usages-700.jpg" alt="" title="usages" width="700" height="461" class="alignnone size-full wp-image-4817" /></p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/annual-report-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

