<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://iridia.ulb.ac.be/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dgarzonr</id>
	<title>IridiaWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://iridia.ulb.ac.be/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dgarzonr"/>
	<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/wiki/Special:Contributions/Dgarzonr"/>
	<updated>2026-06-10T09:42:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.4</generator>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Getting_started_for_Demiurge&amp;diff=8226</id>
		<title>Getting started for Demiurge</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Getting_started_for_Demiurge&amp;diff=8226"/>
		<updated>2022-09-29T14:50:49Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* Install AutoMoDe and related software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will list all the necessary steps you should take before starting to work on the Demiurge project.&lt;br /&gt;
&lt;br /&gt;
== Set up your working environment ==&lt;br /&gt;
&lt;br /&gt;
* Activate all resources as described [[What_you_need_to_begin_to_work_in_IRIDIA | on this page]], if you not have done so already.&lt;br /&gt;
&amp;lt;!-- ** '''TODO''' What is most important of these steps? --&amp;gt;&lt;br /&gt;
* Set up your workstation (see [[Workstation_configuration|this page]] for more details)&lt;br /&gt;
* Send your [https://www.github.com github] account name to the Demiurge repository administrator (at the moment Ken)&lt;br /&gt;
** He will add you to the [https://github.com/demiurge-project demiurge-project organization] so that you can see the private development repositories&lt;br /&gt;
* Get yourself added to the Demiurge Whatsapp group&lt;br /&gt;
* Give your e-mail address to Mauro, he will add you to the Demiurge mailing list&lt;br /&gt;
&lt;br /&gt;
== Install AutoMoDe and related software ==&lt;br /&gt;
&lt;br /&gt;
* Install argos3&lt;br /&gt;
*# Install all prerequisites (specified at the [https://github.com/ilpincy/argos3 github page])&lt;br /&gt;
*#* You can do so by running the following command in your terminal:&lt;br /&gt;
*#* &amp;lt;code&amp;gt;sudo apt-get install libfreeimage-dev libfreeimageplus-dev qt5-default freeglut3-dev libxi-dev libxmu-dev liblua5.2-dev lua5.2 doxygen graphviz graphviz-dev asciidoc&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install argos&lt;br /&gt;
*#* Be aware that we are currently not using the most recent version but instead the release &amp;quot;3.0.0-beta48&amp;quot;&lt;br /&gt;
*#* Get the repository:&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git clone git@github.com:ilpincy/argos3.git argos3&amp;lt;/code&amp;gt;, clones the repository &lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd argos3&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git checkout 3.0.0-beta48&amp;lt;/code&amp;gt;, checks out the version that we are using at the moment&lt;br /&gt;
*#* '''If you are on the cluster:''' Change the CMake-version from 2.8.12 to 2.8.8 in the src/CMakeLists.txt file. There are two occurences that need to be replaced.&lt;br /&gt;
*#* Prepare the build of argos3&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export ARGOS_INSTALL_PATH=$HOME&amp;lt;/code&amp;gt;, if you want to install argos3 into $HOME/argos3-dist (recommended on the cluster), otherwise choose the location to your liking&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;mkdir build &amp;amp;&amp;amp; cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=$ARGOS_INSTALL_PATH/argos3-dist -DCMAKE_BUILD_TYPE=Release -DARGOS_INSTALL_LDSOCONF=OFF -DARGOS_DOCUMENTATION=OFF ../src&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make doc&amp;lt;/code&amp;gt;, if you have forgotten the -DARGOS_DOCUMENTATION=OFF&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* Before you can install our epuck-plugin, you have to remove the default plugin first. In argos3-dist run the following commdands&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;rm -rf $ARGOS_INSTALL_PATH/argos3-dist/include/argos3/plugins/robots/e-puck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;rm -rf $ARGOS_INSTALL_PATH/argos3-dist/lib/argos3/lib*epuck*.so&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* Add the following lines to your .bashrc (or create a separate file and source it from your .bashrc)&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export ARGOS_INSTALL_PATH=$HOME&amp;lt;/code&amp;gt; (or whatever you chose in the earlier step)&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export PKG_CONFIG_PATH=$ARGOS_INSTALL_PATH/argos3-dist/lib/pkgconfig&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export ARGOS_PLUGIN_PATH=$ARGOS_INSTALL_PATH/argos3-dist/lib/argos3&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export LD_LIBRARY_PATH=$ARGOS_PLUGIN_PATH:$LD_LIBRARY_PATH&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export PATH=$ARGOS_INSTALL_PATH/argos3-dist/bin/:$PATH&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install the e-puck plugin&lt;br /&gt;
*#* Get the repository&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/argos3-epuck.git argos3-epuck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd argos3-epuck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git checkout v48&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* '''If you are on the cluster:'''&lt;br /&gt;
*#*# Open src/plugins/robots/e-puck/CMakeLists.txt and comment the line with &amp;lt;code&amp;gt;include(VisionTools.cmake)&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# Open src/cmake/ARGoSBuildChecks.cmake and remove the checks for Lua and Qt/OpenGL&lt;br /&gt;
*#* Prepare the build of the epuck-plugin&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;mkdir build &amp;amp;&amp;amp; cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=$ARGOS_INSTALL_PATH/argos3-dist -DCMAKE_BUILD_TYPE=Release ../src&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
** If you don't want to install everything by hand [http://iridia.ulb.ac.be/~afranzin/files/scripts/bundle_argos3_epuck.sh this script] might be useful. However you need all prerequisites installed before running the script.&lt;br /&gt;
&lt;br /&gt;
* Install AutoMoDe&lt;br /&gt;
*# Download and install the loopfunctions&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/experiments-loop-functions.git AutoMoDe-loopfunctions&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe-loopfunctions&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;git checkout dev&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build &amp;amp;&amp;amp; cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=$ARGOS_INSTALL_PATH/argos3-dist -DCMAKE_BUILD_TYPE=Release ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install the e-puck DAO&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/demiurge-epuck-dao.git AutoMoDe-DAO&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe-DAO&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build &amp;amp;&amp;amp; cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=$ARGOS_INSTALL_PATH/argos3-dist -DCMAKE_BUILD_TYPE=Release ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install AutoMoDe&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/ARGoS3-AutoMoDe.git AutoMoDe&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build &amp;amp;&amp;amp; cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
* If you have to work on the cluster you should follow [http://majorana.ulb.ac.be/wordpress/how-to-install-argos3-on-majorana/ these instructions] to install Argos. AutoMoDe can be installed as on your local computer.&lt;br /&gt;
&lt;br /&gt;
* In order to install irace on the cluster, follow these steps:&lt;br /&gt;
*# Download the [https://nextcloud.ananas.space/s/WhQ2yqhmqoaBRdC irace package]&lt;br /&gt;
*# Upload the .tar.gz file to your home directory in the cluster&lt;br /&gt;
*# Install the R package locally&lt;br /&gt;
*#* &amp;lt;code&amp;gt;mkdir ~/R/x86_64-redhat-linux-gnu-library/3.5/&amp;lt;/code&amp;gt;  (At the moment it is not possible to put it anywhere else)&lt;br /&gt;
*#* Run the following command: &amp;lt;code&amp;gt;R CMD INSTALL -l ~/R/x86_64-redhat-linux-gnu-library/3.5/ irace_2.2.tar.gz&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Add irace to IRACE_HOME, PATH and R_LIBS path (for example in your [https://en.wikipedia.org/wiki/Bash_%28Unix_shell%29#Startup_scripts .bashrc file] with the following commands)&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export R_LIBS_USER=~/R/x86_64-redhat-linux-gnu-library/3.5&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export IRACE_HOME=${R_LIBS_USER}/irace&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export PATH=${IRACE_HOME}/bin/:${PATH}&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export R_LIBS=${R_LIBS_USER}:${R_LIBS}&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* In order to install EvoStick&lt;br /&gt;
*# ''Coming soon''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--** Installing new software in the cluster is not always easy. Therefore many modules are not up-to-date and you have to stick to the versions that are used by the cluster. Check before writing your software that you have approximately the same versions as on the cluster or you might encounter some surprises when running your experiments.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Running robot experiments in the arena ==&lt;br /&gt;
&lt;br /&gt;
* A detailed description on running experiments in the Arena can be found [[AutoMoDe_Arena_Experiments | here]]&lt;br /&gt;
&lt;br /&gt;
== Writing your paper ==&lt;br /&gt;
&lt;br /&gt;
* See [[Demiurge_Writing_Papers | this page]] for information on how to write your paper.&lt;br /&gt;
&lt;br /&gt;
== Important paper to read ==&lt;br /&gt;
&lt;br /&gt;
* [http://iridia.ulb.ac.be/~mbiro/paperi/FraBraBru-etal2014si.pdf AutoMoDe Vanilla]&lt;br /&gt;
* [http://iridia.ulb.ac.be/~mbiro/paperi/FraBraBru-etal2015si.pdf AutoMoDe Chocolate]&lt;br /&gt;
* [http://iridia.ulb.ac.be/IridiaTrSeries/link/IridiaTr2016-004.pdf Irace User Guide]&lt;br /&gt;
&lt;br /&gt;
== Useful pages to bookmark ==&lt;br /&gt;
&lt;br /&gt;
* http://iridia.ulb.ac.be/IridiaTrSeries/: Here all Technical reports will be published&lt;br /&gt;
* https://github.com/demiurge-project: The github page for all of our repositories&lt;br /&gt;
&lt;br /&gt;
== People working on the project ==&lt;br /&gt;
&lt;br /&gt;
* '''TODO'''&lt;br /&gt;
&lt;br /&gt;
== Resources depending on your area of expertise ==&lt;br /&gt;
&lt;br /&gt;
* '''TODO'''&lt;br /&gt;
&lt;br /&gt;
== Development guidelines (git rules) ==&lt;br /&gt;
&lt;br /&gt;
* See [[Demiurge_Development_Guidelines | this page ]] for information how the Development guidelines for using the git repositories.&lt;br /&gt;
&lt;br /&gt;
== Proj H402 (Master 1 project) ==&lt;br /&gt;
We have an organization (in terms of GitLab group) on [https://gitlab.com/ GitLab] where we can host the git repositories for the students of [[PROJ-H-402_-_Computing_Project:_Rules | PROJ-H-402]].&lt;br /&gt;
Please keep the following things in mind:&lt;br /&gt;
* Students should be added as &amp;quot;Developer&amp;quot; to the repository. There should be no need to add them to the group.&lt;br /&gt;
* When a student is finished with the project, please let them prepare a release. This allows us to identify the contribution of each individual student, even if two or more students work on the same repository or another student takes up the development.&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Ground_Sensors&amp;diff=8172</id>
		<title>Ground Sensors</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Ground_Sensors&amp;diff=8172"/>
		<updated>2020-02-27T10:21:01Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
'''Ground sensor'''&lt;br /&gt;
&lt;br /&gt;
I found at least two ways of using the ground sensors on the e-pucks. This is the one that works best:&lt;br /&gt;
   &lt;br /&gt;
   int ground_tmp[6];&lt;br /&gt;
   int ground[3];&lt;br /&gt;
   /* retrieve the values from the sensor */&lt;br /&gt;
   e_i2cp_init();&lt;br /&gt;
   e_i2cp_enable();&lt;br /&gt;
   e_i2cp_read(0xC0, 0);&lt;br /&gt;
   i = 0;&lt;br /&gt;
   for(j = 0; j &amp;lt; 6; j++) {&lt;br /&gt;
      if (j % 2 == 0) ground_tmp[j] = e_i2cp_read(0xC0, j + 1);&lt;br /&gt;
      else            ground_tmp[j] = e_i2cp_read(0xC0, j - 1);&lt;br /&gt;
   }&lt;br /&gt;
   e_i2cp_disable();&lt;br /&gt;
&lt;br /&gt;
   /* getting the actual values */&lt;br /&gt;
   ground[0] = ((unsigned int)(ground_tmp[0] &amp;amp; 0xff)) +((unsigned int) ground_tmp[1] &amp;lt;&amp;lt; 8) - ground_sensor_zero[0];&lt;br /&gt;
   ground[1] = ((unsigned int)(ground_tmp[2] &amp;amp; 0xff)) +((unsigned int) ground_tmp[3] &amp;lt;&amp;lt; 8) - ground_sensor_zero[1];&lt;br /&gt;
   ground[2] = ((unsigned int)(ground_tmp[4] &amp;amp; 0xff)) +((unsigned int) ground_tmp[5] &amp;lt;&amp;lt; 8) - ground_sensor_zero[2];&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the function I use to calibrate the sensors (on black paper):&lt;br /&gt;
&lt;br /&gt;
 void GroundSensorCalibrate() {&lt;br /&gt;
   int i, j;&lt;br /&gt;
   char tmp[50];&lt;br /&gt;
   long sensor_tmp[6] = {0};&lt;br /&gt;
   long sensor[3] = {0};&lt;br /&gt;
   long delay;&lt;br /&gt;
   &lt;br /&gt;
   btcomSendString(&amp;quot;calibration ground:\n&amp;quot;);&lt;br /&gt;
   for (i=0; i&amp;lt;16; i++) {&lt;br /&gt;
      // read the values&lt;br /&gt;
      e_i2cp_init();&lt;br /&gt;
      e_i2cp_enable();&lt;br /&gt;
      e_i2cp_read(0xC0, 0);&lt;br /&gt;
      for(j = 0; j &amp;lt; 6; j++) {&lt;br /&gt;
         if (j % 2 == 0) sensor_tmp[j] = e_i2cp_read(0xC0, j + 1);&lt;br /&gt;
         else            sensor_tmp[j] = e_i2cp_read(0xC0, j - 1);&lt;br /&gt;
      }&lt;br /&gt;
      e_i2cp_disable();&lt;br /&gt;
      &lt;br /&gt;
      // store the values&lt;br /&gt;
      sensor[0] += ((unsigned int)(sensor_tmp[0] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[1] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      sensor[1] += ((unsigned int)(sensor_tmp[2] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[3] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      sensor[2] += ((unsigned int)(sensor_tmp[4] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[5] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      &lt;br /&gt;
      // pause&lt;br /&gt;
      for (delay = 0; delay &amp;lt; 100000; delay++){&lt;br /&gt;
         __asm__(&amp;quot;nop&amp;quot;);&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
   for (i=0; i&amp;lt;3; i++) { ground_sensor_zero[i]=(sensor[i]&amp;gt;&amp;gt;4);&lt;br /&gt;
      sprintf(tmp,&amp;quot;%d\t%d&amp;quot;,i, ground_sensor_zero[i]);   &lt;br /&gt;
      btcomSendString(tmp);&lt;br /&gt;
      btcomSendString(&amp;quot;\n&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
   &lt;br /&gt;
   for (delay = 0; delay &amp;lt; 100000; delay++){&lt;br /&gt;
      __asm__(&amp;quot;nop&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
'''How to fix  I2C error on ground sensors'''&lt;br /&gt;
&lt;br /&gt;
It's possible to use contemporaneously both the e-puck extension for gumstix overo and the ground sensor; in this case the camera and the ground sensor will share the same I2C bus and like the camera, also the ground sensor will not be anymore reachable from the e-puck side, but only from the overo side.&lt;br /&gt;
&lt;br /&gt;
The I2C bus is configured to work at 400 KHz in the system running on the gumstix overo, thus we need to change the bus speed to 100 KHz in order to communicate with the ground sensor module; the simplest way is to set a kernel parameter in u-boot:&lt;br /&gt;
&lt;br /&gt;
    enter u-boot by pressing any key at boot start&lt;br /&gt;
&lt;br /&gt;
type the following command to init the I2C bus 3 to 100 KHz:&lt;br /&gt;
    setenv i2cspeed 3,100 &lt;br /&gt;
type the following command to pass an additional parameter to the kernel that is the i2c_bus=${i2cspeed}:&lt;br /&gt;
    setenv mmcargs setenv bootargs console=${console} i2c_bus=${i2cspeed} ${optargs} mpurate=${mpurate} vram=${vram} omapfb.mode=dvi:${dvimode} omapdss.def_disp=${defaultdisplay} root=${mmcroot} rootfstype=${mmcrootfstype}&lt;br /&gt;
type the following command to save the environment changes&lt;br /&gt;
    saveenv&lt;br /&gt;
type the folloeing command to start booting&lt;br /&gt;
    boot&lt;br /&gt;
&lt;br /&gt;
Pay attention that all the peripherals connected to the bus will now work at 100 KHz, thus also the e-puck camera and the LSM330 (accelerometer + gyroscope) present with e-puck HwRev 1.3.&lt;br /&gt;
If you want to set back the bus speed to 400 KHz you need to follow steps 2-4, by setting the i2cspeed u-boot environment variable with setenv i2cspeed 3,400.&lt;br /&gt;
Communicating with the ground sensor is as easy as open a device and reading from it; a source code example can be found in the following link http://projects.gctronic.com/Gumstix/groundsensor.c. You will find this application example in the /home/root/demos/gumstix-common directory; start it by executing ./i2c_groundsensors and the sensors values will be displayed in the terminal.&lt;br /&gt;
Make sure that you have installed the last system update otherwise you'll encounter some problems.&lt;br /&gt;
You can find more information about the I2C and gumstix in the following links:&lt;br /&gt;
&lt;br /&gt;
    https://wiki.gumstix.com/index.php/Category:How_to_-_i2c&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Ground_Sensors&amp;diff=8171</id>
		<title>Ground Sensors</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Ground_Sensors&amp;diff=8171"/>
		<updated>2020-02-27T10:20:33Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
'''Ground sensor'''&lt;br /&gt;
&lt;br /&gt;
I found at least two ways of using the ground sensors on the e-pucks. This is the one that works best:&lt;br /&gt;
   &lt;br /&gt;
   int ground_tmp[6];&lt;br /&gt;
   int ground[3];&lt;br /&gt;
   /* retrieve the values from the sensor */&lt;br /&gt;
   e_i2cp_init();&lt;br /&gt;
   e_i2cp_enable();&lt;br /&gt;
   e_i2cp_read(0xC0, 0);&lt;br /&gt;
   i = 0;&lt;br /&gt;
   for(j = 0; j &amp;lt; 6; j++) {&lt;br /&gt;
      if (j % 2 == 0) ground_tmp[j] = e_i2cp_read(0xC0, j + 1);&lt;br /&gt;
      else            ground_tmp[j] = e_i2cp_read(0xC0, j - 1);&lt;br /&gt;
   }&lt;br /&gt;
   e_i2cp_disable();&lt;br /&gt;
&lt;br /&gt;
   /* getting the actual values */&lt;br /&gt;
   ground[0] = ((unsigned int)(ground_tmp[0] &amp;amp; 0xff)) +((unsigned int) ground_tmp[1] &amp;lt;&amp;lt; 8) - ground_sensor_zero[0];&lt;br /&gt;
   ground[1] = ((unsigned int)(ground_tmp[2] &amp;amp; 0xff)) +((unsigned int) ground_tmp[3] &amp;lt;&amp;lt; 8) - ground_sensor_zero[1];&lt;br /&gt;
   ground[2] = ((unsigned int)(ground_tmp[4] &amp;amp; 0xff)) +((unsigned int) ground_tmp[5] &amp;lt;&amp;lt; 8) - ground_sensor_zero[2];&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the function I use to calibrate the sensors (on black paper):&lt;br /&gt;
&lt;br /&gt;
 void GroundSensorCalibrate() {&lt;br /&gt;
   int i, j;&lt;br /&gt;
   char tmp[50];&lt;br /&gt;
   long sensor_tmp[6] = {0};&lt;br /&gt;
   long sensor[3] = {0};&lt;br /&gt;
   long delay;&lt;br /&gt;
   &lt;br /&gt;
   btcomSendString(&amp;quot;calibration ground:\n&amp;quot;);&lt;br /&gt;
   for (i=0; i&amp;lt;16; i++) {&lt;br /&gt;
      // read the values&lt;br /&gt;
      e_i2cp_init();&lt;br /&gt;
      e_i2cp_enable();&lt;br /&gt;
      e_i2cp_read(0xC0, 0);&lt;br /&gt;
      for(j = 0; j &amp;lt; 6; j++) {&lt;br /&gt;
         if (j % 2 == 0) sensor_tmp[j] = e_i2cp_read(0xC0, j + 1);&lt;br /&gt;
         else            sensor_tmp[j] = e_i2cp_read(0xC0, j - 1);&lt;br /&gt;
      }&lt;br /&gt;
      e_i2cp_disable();&lt;br /&gt;
      &lt;br /&gt;
      // store the values&lt;br /&gt;
      sensor[0] += ((unsigned int)(sensor_tmp[0] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[1] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      sensor[1] += ((unsigned int)(sensor_tmp[2] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[3] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      sensor[2] += ((unsigned int)(sensor_tmp[4] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[5] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      &lt;br /&gt;
      // pause&lt;br /&gt;
      for (delay = 0; delay &amp;lt; 100000; delay++){&lt;br /&gt;
         __asm__(&amp;quot;nop&amp;quot;);&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
   for (i=0; i&amp;lt;3; i++) { ground_sensor_zero[i]=(sensor[i]&amp;gt;&amp;gt;4);&lt;br /&gt;
      sprintf(tmp,&amp;quot;%d\t%d&amp;quot;,i, ground_sensor_zero[i]);   &lt;br /&gt;
      btcomSendString(tmp);&lt;br /&gt;
      btcomSendString(&amp;quot;\n&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
   &lt;br /&gt;
   for (delay = 0; delay &amp;lt; 100000; delay++){&lt;br /&gt;
      __asm__(&amp;quot;nop&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
'''How to fix  I2C error on ground sensors'''&lt;br /&gt;
&lt;br /&gt;
It's possible to use contemporaneously both the e-puck extension for gumstix overo and the ground sensor; in this case the camera and the ground sensor will share the same I2C bus and like the camera, also the ground sensor will not be anymore reachable from the e-puck side, but only from the overo side.&lt;br /&gt;
&lt;br /&gt;
The I2C bus is configured to work at 400 KHz in the system running on the gumstix overo, thus we need to change the bus speed to 100 KHz in order to communicate with the ground sensor module; the simplest way is to set a kernel parameter in u-boot:&lt;br /&gt;
&lt;br /&gt;
enter u-boot by pressing any key at boot start&lt;br /&gt;
&lt;br /&gt;
type the following command to init the I2C bus 3 to 100 KHz:&lt;br /&gt;
    setenv i2cspeed 3,100 &lt;br /&gt;
type the following command to pass an additional parameter to the kernel that is the i2c_bus=${i2cspeed}:&lt;br /&gt;
    setenv mmcargs setenv bootargs console=${console} i2c_bus=${i2cspeed} ${optargs} mpurate=${mpurate} vram=${vram} omapfb.mode=dvi:${dvimode} omapdss.def_disp=${defaultdisplay} root=${mmcroot} rootfstype=${mmcrootfstype}&lt;br /&gt;
type the following command to save the environment changes&lt;br /&gt;
    saveenv&lt;br /&gt;
type the folloeing command to start booting&lt;br /&gt;
    boot&lt;br /&gt;
&lt;br /&gt;
Pay attention that all the peripherals connected to the bus will now work at 100 KHz, thus also the e-puck camera and the LSM330 (accelerometer + gyroscope) present with e-puck HwRev 1.3.&lt;br /&gt;
If you want to set back the bus speed to 400 KHz you need to follow steps 2-4, by setting the i2cspeed u-boot environment variable with setenv i2cspeed 3,400.&lt;br /&gt;
Communicating with the ground sensor is as easy as open a device and reading from it; a source code example can be found in the following link http://projects.gctronic.com/Gumstix/groundsensor.c. You will find this application example in the /home/root/demos/gumstix-common directory; start it by executing ./i2c_groundsensors and the sensors values will be displayed in the terminal.&lt;br /&gt;
Make sure that you have installed the last system update otherwise you'll encounter some problems.&lt;br /&gt;
You can find more information about the I2C and gumstix in the following links:&lt;br /&gt;
&lt;br /&gt;
    https://wiki.gumstix.com/index.php/Category:How_to_-_i2c&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Ground_Sensors&amp;diff=8170</id>
		<title>Ground Sensors</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Ground_Sensors&amp;diff=8170"/>
		<updated>2020-02-27T10:16:23Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
'''Ground sensor'''&lt;br /&gt;
&lt;br /&gt;
I found at least two ways of using the ground sensors on the e-pucks. This is the one that works best:&lt;br /&gt;
   &lt;br /&gt;
   int ground_tmp[6];&lt;br /&gt;
   int ground[3];&lt;br /&gt;
   /* retrieve the values from the sensor */&lt;br /&gt;
   e_i2cp_init();&lt;br /&gt;
   e_i2cp_enable();&lt;br /&gt;
   e_i2cp_read(0xC0, 0);&lt;br /&gt;
   i = 0;&lt;br /&gt;
   for(j = 0; j &amp;lt; 6; j++) {&lt;br /&gt;
      if (j % 2 == 0) ground_tmp[j] = e_i2cp_read(0xC0, j + 1);&lt;br /&gt;
      else            ground_tmp[j] = e_i2cp_read(0xC0, j - 1);&lt;br /&gt;
   }&lt;br /&gt;
   e_i2cp_disable();&lt;br /&gt;
&lt;br /&gt;
   /* getting the actual values */&lt;br /&gt;
   ground[0] = ((unsigned int)(ground_tmp[0] &amp;amp; 0xff)) +((unsigned int) ground_tmp[1] &amp;lt;&amp;lt; 8) - ground_sensor_zero[0];&lt;br /&gt;
   ground[1] = ((unsigned int)(ground_tmp[2] &amp;amp; 0xff)) +((unsigned int) ground_tmp[3] &amp;lt;&amp;lt; 8) - ground_sensor_zero[1];&lt;br /&gt;
   ground[2] = ((unsigned int)(ground_tmp[4] &amp;amp; 0xff)) +((unsigned int) ground_tmp[5] &amp;lt;&amp;lt; 8) - ground_sensor_zero[2];&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the function I use to calibrate the sensors (on black paper):&lt;br /&gt;
&lt;br /&gt;
 void GroundSensorCalibrate() {&lt;br /&gt;
   int i, j;&lt;br /&gt;
   char tmp[50];&lt;br /&gt;
   long sensor_tmp[6] = {0};&lt;br /&gt;
   long sensor[3] = {0};&lt;br /&gt;
   long delay;&lt;br /&gt;
   &lt;br /&gt;
   btcomSendString(&amp;quot;calibration ground:\n&amp;quot;);&lt;br /&gt;
   for (i=0; i&amp;lt;16; i++) {&lt;br /&gt;
      // read the values&lt;br /&gt;
      e_i2cp_init();&lt;br /&gt;
      e_i2cp_enable();&lt;br /&gt;
      e_i2cp_read(0xC0, 0);&lt;br /&gt;
      for(j = 0; j &amp;lt; 6; j++) {&lt;br /&gt;
         if (j % 2 == 0) sensor_tmp[j] = e_i2cp_read(0xC0, j + 1);&lt;br /&gt;
         else            sensor_tmp[j] = e_i2cp_read(0xC0, j - 1);&lt;br /&gt;
      }&lt;br /&gt;
      e_i2cp_disable();&lt;br /&gt;
      &lt;br /&gt;
      // store the values&lt;br /&gt;
      sensor[0] += ((unsigned int)(sensor_tmp[0] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[1] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      sensor[1] += ((unsigned int)(sensor_tmp[2] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[3] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      sensor[2] += ((unsigned int)(sensor_tmp[4] &amp;amp; 0xff)) +((unsigned int) sensor_tmp[5] &amp;lt;&amp;lt; 8);&lt;br /&gt;
      &lt;br /&gt;
      // pause&lt;br /&gt;
      for (delay = 0; delay &amp;lt; 100000; delay++){&lt;br /&gt;
         __asm__(&amp;quot;nop&amp;quot;);&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
   for (i=0; i&amp;lt;3; i++) { ground_sensor_zero[i]=(sensor[i]&amp;gt;&amp;gt;4);&lt;br /&gt;
      sprintf(tmp,&amp;quot;%d\t%d&amp;quot;,i, ground_sensor_zero[i]);   &lt;br /&gt;
      btcomSendString(tmp);&lt;br /&gt;
      btcomSendString(&amp;quot;\n&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
   &lt;br /&gt;
   for (delay = 0; delay &amp;lt; 100000; delay++){&lt;br /&gt;
      __asm__(&amp;quot;nop&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
'''How to fix  I2C error on ground sensors'''&lt;br /&gt;
&lt;br /&gt;
It's possible to use contemporaneously both the e-puck extension for gumstix overo and the ground sensor; in this case the camera and the ground sensor will share the same I2C bus and like the camera, also the ground sensor will not be anymore reachable from the e-puck side, but only from the overo side.&lt;br /&gt;
&lt;br /&gt;
The I2C bus is configured to work at 400 KHz in the system running on the gumstix overo, thus we need to change the bus speed to 100 KHz in order to communicate with the ground sensor module; the simplest way is to set a kernel parameter in u-boot:&lt;br /&gt;
&lt;br /&gt;
    enter u-boot by pressing any key at boot start&lt;br /&gt;
    type the command setenv i2cspeed 3,100; this init the I2C bus 3 to 100 KHz&lt;br /&gt;
    type the command setenv mmcargs setenv bootargs console=${console} i2c_bus=${i2cspeed} ${optargs} mpurate=${mpurate} vram=${vram} omapfb.mode=dvi:${dvimode} omapdss.def_disp=${defaultdisplay} root=${mmcroot} rootfstype=${mmcrootfstype} ; basically we pass an additional parameter to the kernel that is the i2c_bus=${i2cspeed}&lt;br /&gt;
    type the command saveenv to save the environment changes&lt;br /&gt;
    type boot to start booting&lt;br /&gt;
&lt;br /&gt;
Pay attention that all the peripherals connected to the bus will now work at 100 KHz, thus also the e-puck camera and the LSM330 (accelerometer + gyroscope) present with e-puck HwRev 1.3.&lt;br /&gt;
If you want to set back the bus speed to 400 KHz you need to follow steps 2-4, by setting the i2cspeed u-boot environment variable with setenv i2cspeed 3,400.&lt;br /&gt;
Communicating with the ground sensor is as easy as open a device and reading from it; a source code example can be found in the following link http://projects.gctronic.com/Gumstix/groundsensor.c. You will find this application example in the /home/root/demos/gumstix-common directory; start it by executing ./i2c_groundsensors and the sensors values will be displayed in the terminal.&lt;br /&gt;
Make sure that you have installed the last system update otherwise you'll encounter some problems.&lt;br /&gt;
You can find more information about the I2C and gumstix in the following links:&lt;br /&gt;
&lt;br /&gt;
    https://wiki.gumstix.com/index.php/Category:How_to_-_i2c&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8162</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8162"/>
		<updated>2019-07-10T20:33:47Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:Dem-col-114x114.png|thumb|center|150px|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
|[[Image:Dem-bw-133x133.png|thumb|center|150px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
|[[Image:Demirulb1-bw-3307x3308.png|thumb|center|150px|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
|[[Image:Demirulb2-bw-3307x3308.png|thumb|center|150px|DEMIURGE logo in b/w version with detailed reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
|[[Image:Demirulb3-bw-3307x3308.png|thumb|center|150px|DEMIURGE logo in b/w version with detailed reference to IRIDIA, ULB, and automatic design (PNG 3307x3308).]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8161</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8161"/>
		<updated>2019-07-10T20:33:18Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:Dem-bw-133x133.png|thumb|center|150px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
|[[Image:Dem-col-114x114.png|thumb|center|150px|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
|[[Image:Demirulb1-bw-3307x3308.png|thumb|center|150px|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
|[[Image:Demirulb2-bw-3307x3308.png|thumb|center|150px|DEMIURGE logo in b/w version with detailed reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
|[[Image:Demirulb3-bw-3307x3308.png|thumb|center|150px|DEMIURGE logo in b/w version with detailed reference to IRIDIA, ULB, and automatic design (PNG 3307x3308).]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=File:Demirulb3-bw-3307x3308.png&amp;diff=8160</id>
		<title>File:Demirulb3-bw-3307x3308.png</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=File:Demirulb3-bw-3307x3308.png&amp;diff=8160"/>
		<updated>2019-07-10T20:32:39Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: DEMIURGE logo in b/w version with detailed reference to IRIDIA, ULB and automatic design&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DEMIURGE logo in b/w version with detailed reference to IRIDIA, ULB and automatic design&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=File:Demirulb2-bw-3307x3308.png&amp;diff=8159</id>
		<title>File:Demirulb2-bw-3307x3308.png</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=File:Demirulb2-bw-3307x3308.png&amp;diff=8159"/>
		<updated>2019-07-10T20:31:21Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: DEMIURGE logo in b/w version with detailed reference to IRIDIA and ULB (PNG 3307x3308).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DEMIURGE logo in b/w version with detailed reference to IRIDIA and ULB (PNG 3307x3308).&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8158</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8158"/>
		<updated>2019-07-10T20:29:52Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:Dem-bw-133x133.png|thumb|center|150px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
|[[Image:Dem-col-114x114.png|thumb|center|150px|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
|[[Image:Demirulb1-bw-3307x3308.png|thumb|center|150px|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8157</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8157"/>
		<updated>2019-07-10T20:29:17Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:Dem-bw-133x133.png|thumb|left|150px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
|[[Image:Dem-col-114x114.png|thumb|none|150px|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
|[[Image:Demirulb1-bw-3307x3308.png|thumb|right|150px|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8156</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8156"/>
		<updated>2019-07-10T20:27:51Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|left|150px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|150px|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Demirulb1-bw-3307x3308.png|thumb|right|150px|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8155</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8155"/>
		<updated>2019-07-10T20:27:16Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|left|150px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|150px|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Demirulb1-bw-3307x3308.png|thumb|none|150px|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8154</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8154"/>
		<updated>2019-07-10T20:26:40Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|left|200px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|200px|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Demirulb1-bw-3307x3308.png|thumb|none|200px|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8153</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8153"/>
		<updated>2019-07-10T20:26:27Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|left|200px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|200px|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Demirulb1-bw-3307x3308.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8152</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8152"/>
		<updated>2019-07-10T20:26:08Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|left|200px|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|upright=2.5|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Demirulb1-bw-3307x3308.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8151</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8151"/>
		<updated>2019-07-10T20:25:26Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|left|upright=2.5|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|upright=2.5|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Demirulb1-bw-3307x3308.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8150</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8150"/>
		<updated>2019-07-10T20:25:04Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|left|upright=2.5|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|upright=2.5|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Demirulb1-bw-3307x3308.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version with reference to IRIDIA and ULB (PNG 3307x3308).&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=File:Demirulb1-bw-3307x3308.png&amp;diff=8149</id>
		<title>File:Demirulb1-bw-3307x3308.png</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=File:Demirulb1-bw-3307x3308.png&amp;diff=8149"/>
		<updated>2019-07-10T20:23:54Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: DEMIURGE logo in b/w version with reference to IRIDIA and ULB(PNG 3307x3308).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DEMIURGE logo in b/w version with reference to IRIDIA and ULB(PNG 3307x3308).&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8148</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8148"/>
		<updated>2019-07-10T20:21:04Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|left|upright=2.5|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|upright=2.5|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8147</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8147"/>
		<updated>2019-07-10T20:19:50Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|upright=2.5|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8146</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8146"/>
		<updated>2019-07-10T20:18:52Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|upright=2.5|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8145</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8145"/>
		<updated>2019-07-10T20:18:30Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-col-114x114.png|thumb|none|upright=2.5|DEMIURGE logo in color version (PNG 114x114). There is also a  [[:Image:Dem-col-1200x1200.png|1200x1200 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=File:Dem-col-1200x1200.png&amp;diff=8144</id>
		<title>File:Dem-col-1200x1200.png</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=File:Dem-col-1200x1200.png&amp;diff=8144"/>
		<updated>2019-07-10T20:17:27Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: DEMIURGE logo in color version (PNG 1200x1200)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DEMIURGE logo in color version (PNG 1200x1200)&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=File:Dem-col-114x114.png&amp;diff=8143</id>
		<title>File:Dem-col-114x114.png</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=File:Dem-col-114x114.png&amp;diff=8143"/>
		<updated>2019-07-10T20:16:42Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: DEMIURGE logo in color version (PNG 114x114)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;DEMIURGE logo in color version (PNG 114x114)&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8142</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8142"/>
		<updated>2019-07-10T20:16:02Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version (PNG 133x133). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8141</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8141"/>
		<updated>2019-07-10T20:15:07Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|DEMIURGE logo in b/w version (PNG 133x1333). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8140</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8140"/>
		<updated>2019-07-10T20:14:54Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|Demiurge logo in b/w version (PNG 133x1333). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8139</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8139"/>
		<updated>2019-07-10T20:13:09Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 133x1333). There is also a  [[:Image:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8138</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8138"/>
		<updated>2019-07-10T20:12:43Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 133x1333). There is also a  [[:Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8137</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8137"/>
		<updated>2019-07-10T20:11:47Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 133x1333). There is also a  [[Dem-bw-3062x3062.png|3062x3062 version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8136</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8136"/>
		<updated>2019-07-10T20:10:43Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Dem-bw-133x133.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a 3062x3062 version [[Dem-bw-3062x3062.png]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=File:Dem-bw-3062x3062.png&amp;diff=8135</id>
		<title>File:Dem-bw-3062x3062.png</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=File:Dem-bw-3062x3062.png&amp;diff=8135"/>
		<updated>2019-07-10T20:10:09Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: Demiurge logo in b/w (3062x3062).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Demiurge logo in b/w (3062x3062).&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=File:Dem-bw-133x133.png&amp;diff=8134</id>
		<title>File:Dem-bw-133x133.png</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=File:Dem-bw-133x133.png&amp;diff=8134"/>
		<updated>2019-07-10T20:03:05Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: Demiurge logo in b/w (133x133).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Demiurge logo in b/w (133x133).&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8133</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8133"/>
		<updated>2019-07-10T19:57:16Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8132</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8132"/>
		<updated>2019-07-10T19:55:59Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi).&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8131</id>
		<title>Logos</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Logos&amp;diff=8131"/>
		<updated>2019-07-10T19:55:18Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* DEMIURGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;page-warning&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:icon_warning.png|40px]] &lt;br /&gt;
'''IMPORTANT:''' If you create a logo/graphic&lt;br /&gt;
&lt;br /&gt;
* [[#Sources|UPLOAD ITS SOURCE to the IRIDIA Repository]]. Otherwise it's lost when you'll leave the lab.&lt;br /&gt;
&lt;br /&gt;
* Every time you upload a new file (a new logo or a new revision of an existing one), MENTION IN THE DESCRIPTION the precise software and steps.&lt;br /&gt;
&lt;br /&gt;
* If you create a better version of some existing file, REPLACE IT by going to the page of the existing file and uploading a new revision.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
&lt;br /&gt;
The sources ([[Wikipedia:SVG|SVG]] vector files) of the logos below can be found in [[Development_Server|IRIDIA Repository]] at:&lt;br /&gt;
&lt;br /&gt;
 https://iridia-dev.ulb.ac.be/projects/iridia_logos/svn&lt;br /&gt;
&lt;br /&gt;
== IRIDIA ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Classic B/W logo ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:iridia_logo_classic_with_ulb.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, with all text (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_with_ulb.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_simple.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, simpler without the name of the ULB (PNG 300dpi). There is also a scalable vector version in [[:Image:iridia_logo_classic_simple.pdf|PDF format]].]]&lt;br /&gt;
|[[Image:iridia_logo_classic_short.png|thumb|center|upright=1.4|IRIDIA Classic B/W version, short without any extra text (PNG 300dpi). There is also a scalable vector version in  [[:Image:iridia_logo_classic_short.pdf|PDF format]].]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Modern B/W logo ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
== CoDE ==&lt;br /&gt;
&lt;br /&gt;
[[Image:code_logo_color.png|thumb|left|upright=1.5|CoDE logo (PNG). There is also a scalable vector version in [[:Image:code_logo.pdf|PDF format]].]]&lt;br /&gt;
[[Image:code_logo_bw.png|thumb|none|upright=1.5|CoDE logo black and white with stripes (PNG). There is also a scalable vector version in [[:Image:code_logo_bw.pdf|PDF format]].]]&lt;br /&gt;
&lt;br /&gt;
== ULB ==&lt;br /&gt;
&lt;br /&gt;
The ULB has a [http://www.ulb.ac.be/dre/com/logo-ulb.html gallery with many official logos]. If you create a version that is not available there, please upload it saying how you created it (precise software and steps) and add it to the SVN and below.&lt;br /&gt;
&lt;br /&gt;
== FNRS ==&lt;br /&gt;
&lt;br /&gt;
The logos below should be the same as the [http://www1.frs-fnrs.be/fr/communiquer-en-transparence/logos.html current official logo of the FNRS].&lt;br /&gt;
&lt;br /&gt;
== Project Logos ==&lt;br /&gt;
&lt;br /&gt;
=== DEMIURGE ===&lt;br /&gt;
&lt;br /&gt;
[[Image:iridia_logo_fancy.png|thumb|none|upright=2.5|IRIDIA Modern B/W version (PNG 300dpi). There is also a [[:Image:iridia_logo_fancy.pdf|PDF version]].]]&lt;br /&gt;
&lt;br /&gt;
=== Swarmanoid ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarmanoid_logo.png|thumb|none|upright=2|Swarmanoid logo bitmap only (PNG).]]&lt;br /&gt;
&lt;br /&gt;
=== Swarm-bots ===&lt;br /&gt;
&lt;br /&gt;
[[Image:swarm-bots_logo.png|thumb|none|upright=2|Swarm-bots logo bitmap only (PNG)]]&lt;br /&gt;
&lt;br /&gt;
=== MetaNet ===&lt;br /&gt;
&lt;br /&gt;
[[Image:metanet_logo_color.png|thumb|left|upright=1.2|MetaNet color logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_color.pdf|PDF format]].]]&lt;br /&gt;
[[Image:metanet_logo_bw.png|thumb|none|upright=1.2|MetaNet black and white logo (PNG). There is also a scalable vector version in  [[:Image:metanet_logo_bw.pdf|PDF format]].]]&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Getting_started_for_Demiurge&amp;diff=8130</id>
		<title>Getting started for Demiurge</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Getting_started_for_Demiurge&amp;diff=8130"/>
		<updated>2019-07-10T17:45:19Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* Set up your working environment */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will list all the necessary steps you should take before starting to work on the Demiurge project.&lt;br /&gt;
&lt;br /&gt;
== Set up your working environment ==&lt;br /&gt;
&lt;br /&gt;
* Activate all resources as described [[What_you_need_to_begin_to_work_in_IRIDIA | on this page]], if you not have done so already.&lt;br /&gt;
&amp;lt;!-- ** '''TODO''' What is most important of these steps? --&amp;gt;&lt;br /&gt;
* Set up your workstation (see [[Workstation_configuration|this page]] for more details)&lt;br /&gt;
* Send your [https://www.github.com github] account name to the Demiurge repository administrator (at the moment Ken)&lt;br /&gt;
** He will add you to the [https://github.com/demiurge-project demiurge-project organization] so that you can see the private development repositories&lt;br /&gt;
&amp;lt;!-- ** Development rules for the github repositories: '''TODO''' --&amp;gt;&lt;br /&gt;
* Get yourself added to the Demiurge Whatsapp group&lt;br /&gt;
* Give your e-mail address to Mauro, he will add you to the Demiurge mailing list&lt;br /&gt;
* Install argos&lt;br /&gt;
*# Install all prerequisites (specified at the [https://github.com/ilpincy/argos3 github page])&lt;br /&gt;
*#* You can do so by running the following command in your terminal: '''TODO: Check again this is the right list of prerequisites'''&lt;br /&gt;
*#* &amp;lt;code&amp;gt;sudo apt-get install libfreeimage-dev libfreeimageplus-dev qt5-default freeglut3-dev libxi-dev libxmu-dev liblua5.2-dev lua5.2 doxygen graphviz graphviz-dev asciidoc&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install argos&lt;br /&gt;
*#* Be aware that we are currently not using the most recent version but instead the release &amp;quot;3.0.0-beta48&amp;quot;&lt;br /&gt;
*#* Get the repository:&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git clone git@github.com:ilpincy/argos3.git argos3&amp;lt;/code&amp;gt;, clones the repository '''TODO:''' Setting up ssh keys?&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd argos3&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git checkout 3.0.0-beta48&amp;lt;/code&amp;gt;, checks out the version that we are using at the moment&lt;br /&gt;
*#* '''If you are on the cluster:''' Change the CMake-version from 2.8.12 to 2.8.8 in the src/CMakeLists.txt file. There are two occurences that need to be replaced.&lt;br /&gt;
*#* Prepare the build of argos3&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;mkdir build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=[INSTALL_LOCATION]/argos3-dist -DCMAKE_BUILD_TYPE=Release -DARGOS_INSTALL_LDSOCONF=OFF -DARGOS_DOCUMENTATION=OFF ../src&amp;lt;/code&amp;gt;, where the [INSTALL_LOCATION] is the place where you will place all compiled projects (on the cluster /home/[USER_NAME]/)&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make doc&amp;lt;/code&amp;gt;, if you have forgotten the -DARGOS_DOCUMENTATION=OFF&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* Before you can install our epuck-plugin, you have to remove the default plugin first. In argos3-dist run the following commdands&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;rm -rf [INSTALL_LOCATION]/argos3-dist/include/argos3/plugins/robots/e-puck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;rm -rf [INSTALL_LOCATION]/argos3-dist/lib/argos3/lib*epuck*.so&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* Add the following lines to your .bashrc (or create a separate file and source it from your .bashrc)&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export PKG_CONFIG_PATH=[INSTALL_LOCATION]/argos3-dist/lib/pkgconfig&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export ARGOS_PLUGIN_PATH=[INSTALL_LOCATION]/argos3-dist/lib/argos3&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export LD_LIBRARY_PATH=$ARGOS_PLUGIN_PATH:$LD_LIBRARY_PATH&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export PATH=[INSTALL_LOCATION]/argos3-dist/bin/:$PATH&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install the e-puck plugin&lt;br /&gt;
*#* Get the repository&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/argos3-epuck.git argos3-epuck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd argos3-epuck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git checkout v48&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* '''If you are on the cluster:'''&lt;br /&gt;
*#*# Open src/plugins/robots/e-puck/CMakeLists.txt and comment the line with &amp;lt;code&amp;gt;include(VisionTools.cmake)&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# Open src/cmake/ARGoSBuildChecks.cmake and remove the checks for Lua and Qt/OpenGL&lt;br /&gt;
*#* Prepare the build of the epuck-plugin&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;mkdir build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=[INSTALL_LOCATION]/argos3-dist -DCMAKE_BUILD_TYPE=Release ../src&amp;lt;/code&amp;gt;, where the [INSTALL_LOCATION] is the same place as for argos3 (on the cluster /home/[USER_NAME]/)&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
** If you don't want to install everything by hand [http://iridia.ulb.ac.be/~afranzin/files/scripts/bundle_argos3_epuck.sh this script] might be useful. However you need all prerequisites installed before running the script.&lt;br /&gt;
* Install AutoMoDe&lt;br /&gt;
*# Download and install the loopfunctions&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/experiments-loop-functions.git AutoMoDe-loopfunctions&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe-loopfunctions&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;git checkout simulation&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=[INSTALL_LOCATION]/argos3-dist -DCMAKE_BUILD_TYPE=Release ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install the e-puck DAO&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/demiurge-epuck-dao.git AutoMoDe-DAO&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe-DAO&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build &amp;amp;&amp;amp; cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=[INSTALL_LOCATION]/argos3-dist -DCMAKE_BUILD_TYPE=Release ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install AutoMoDe&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/AutoMoDe-private.git AutoMoDe&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
* If you have to work on the cluster you should follow [http://majorana.ulb.ac.be/wordpress/how-to-install-argos3-on-majorana/ these instructions] to install Argos. AutoMoDe can be installed as on your local computer.&lt;br /&gt;
* In order to install irace on the cluster, follow these steps:&lt;br /&gt;
*# Download the [https://nextcloud.ananas.space/s/WhQ2yqhmqoaBRdC irace package]&lt;br /&gt;
*# Upload the .tar.gz file to your home directory in the cluster&lt;br /&gt;
*# Install the R package locally&lt;br /&gt;
*#* &amp;lt;code&amp;gt;mkdir ~/R/x86_64-redhat-linux-gnu-library/3.5/&amp;lt;/code&amp;gt;  (At the moment it is not possible to put it anywhere else)&lt;br /&gt;
*#* Run the following command: &amp;lt;code&amp;gt;R CMD INSTALL -l ~/R/x86_64-redhat-linux-gnu-library/3.5/ irace_2.2.tar.gz&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Add irace to IRACE_HOME, PATH and R_LIBS path (for example in your [https://en.wikipedia.org/wiki/Bash_%28Unix_shell%29#Startup_scripts .bashrc file] with the following commands)&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export R_LIBS_USER=~/R/x86_64-redhat-linux-gnu-library/3.5&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export IRACE_HOME=${R_LIBS_USER}/irace&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export PATH=${IRACE_HOME}/bin/:${PATH}&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export R_LIBS=${R_LIBS_USER}:${R_LIBS}&amp;lt;/code&amp;gt;&lt;br /&gt;
* In order to install EvoStick&lt;br /&gt;
*# ''Coming soon''&lt;br /&gt;
* In order to install NEAT&lt;br /&gt;
*# ''Coming soon''&lt;br /&gt;
&amp;lt;!--** Installing new software in the cluster is not always easy. Therefore many modules are not up-to-date and you have to stick to the versions that are used by the cluster. Check before writing your software that you have approximately the same versions as on the cluster or you might encounter some surprises when running your experiments.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Running robot experiments in the arena ==&lt;br /&gt;
&lt;br /&gt;
* A detailed description on running experiments in the Arena can be found [[AutoMoDe_Arena_Experiments | here]]&lt;br /&gt;
&lt;br /&gt;
== Writing your paper ==&lt;br /&gt;
&lt;br /&gt;
* See [[Demiurge_Writing_Papers | this page]] for information on how to write your paper.&lt;br /&gt;
&lt;br /&gt;
== Important paper to read ==&lt;br /&gt;
&lt;br /&gt;
* [http://iridia.ulb.ac.be/~mbiro/paperi/FraBraBru-etal2014si.pdf AutoMoDe Vanilla]&lt;br /&gt;
* [http://iridia.ulb.ac.be/~mbiro/paperi/FraBraBru-etal2015si.pdf AutoMoDe Chocolate]&lt;br /&gt;
* [http://iridia.ulb.ac.be/IridiaTrSeries/link/IridiaTr2016-004.pdf Irace User Guide]&lt;br /&gt;
&lt;br /&gt;
== Useful pages to bookmark ==&lt;br /&gt;
&lt;br /&gt;
* http://iridia.ulb.ac.be/IridiaTrSeries/: Here all Technical reports will be published&lt;br /&gt;
* https://github.com/demiurge-project: The github page for all of our repositories&lt;br /&gt;
&lt;br /&gt;
== People working on the project ==&lt;br /&gt;
&lt;br /&gt;
* '''TODO'''&lt;br /&gt;
&lt;br /&gt;
== Resources depending on your area of expertise ==&lt;br /&gt;
&lt;br /&gt;
* '''TODO'''&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
	<entry>
		<id>https://iridia.ulb.ac.be/w/index.php?title=Getting_started_for_Demiurge&amp;diff=8129</id>
		<title>Getting started for Demiurge</title>
		<link rel="alternate" type="text/html" href="https://iridia.ulb.ac.be/w/index.php?title=Getting_started_for_Demiurge&amp;diff=8129"/>
		<updated>2019-07-10T13:20:02Z</updated>

		<summary type="html">&lt;p&gt;Dgarzonr: /* Set up your working environment */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will list all the necessary steps you should take before starting to work on the Demiurge project.&lt;br /&gt;
&lt;br /&gt;
== Set up your working environment ==&lt;br /&gt;
&lt;br /&gt;
* Activate all resources as described [[What_you_need_to_begin_to_work_in_IRIDIA | on this page]], if you not have done so already.&lt;br /&gt;
&amp;lt;!-- ** '''TODO''' What is most important of these steps? --&amp;gt;&lt;br /&gt;
* Set up your workstation (see [[Workstation_configuration|this page]] for more details)&lt;br /&gt;
* Send your [https://www.github.com github] account name to the Demiurge repository administrator (at the moment Ken)&lt;br /&gt;
** He will add you to the [https://github.com/demiurge-project demiurge-project organization] so that you can see the private development repositories&lt;br /&gt;
&amp;lt;!-- ** Development rules for the github repositories: '''TODO''' --&amp;gt;&lt;br /&gt;
* Get yourself added to the Demiurge Whatsapp group&lt;br /&gt;
* Give your e-mail address to Mauro, he will add you to the Demiurge mailing list&lt;br /&gt;
* Install argos&lt;br /&gt;
*# Install all prerequisites (specified at the [https://github.com/ilpincy/argos3 github page])&lt;br /&gt;
*#* You can do so by running the following command in your terminal: '''TODO: Check again this is the right list of prerequisites'''&lt;br /&gt;
*#* &amp;lt;code&amp;gt;sudo apt-get install libfreeimage-dev libfreeimageplus-dev qt5-default freeglut3-dev libxi-dev libxmu-dev liblua5.2-dev lua5.2 doxygen graphviz graphviz-dev asciidoc&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install argos&lt;br /&gt;
*#* Be aware that we are currently not using the most recent version but instead the release &amp;quot;3.0.0-beta48&amp;quot;&lt;br /&gt;
*#* Get the repository:&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git clone git@github.com:ilpincy/argos3.git argos3&amp;lt;/code&amp;gt;, clones the repository '''TODO:''' Setting up ssh keys?&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd argos3&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git checkout 3.0.0-beta48&amp;lt;/code&amp;gt;, checks out the version that we are using at the moment&lt;br /&gt;
*#* '''If you are on the cluster:''' Change the CMake-version from 2.8.12 to 2.8.8 in the src/CMakeLists.txt file. There are two occurences that need to be replaced.&lt;br /&gt;
*#* Prepare the build of argos3&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;mkdir build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=[INSTALL_LOCATION]/argos3-dist -DCMAKE_BUILD_TYPE=Release -DARGOS_INSTALL_LDSOCONF=OFF -DARGOS_DOCUMENTATION=OFF ../src&amp;lt;/code&amp;gt;, where the [INSTALL_LOCATION] is the place where you will place all compiled projects (on the cluster /home/[USER_NAME]/)&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make doc&amp;lt;/code&amp;gt;, if you have forgotten the -DARGOS_DOCUMENTATION=OFF&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* Before you can install our epuck-plugin, you have to remove the default plugin first. In argos3-dist run the following commdands&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;rm -rf [INSTALL_LOCATION]/argos3-dist/include/argos3/plugins/robots/e-puck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;rm -rf [INSTALL_LOCATION]/argos3-dist/lib/argos3/lib*epuck*.so&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* Add the following lines to your .bashrc (or create a separate file and source it from your .bashrc)&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export PKG_CONFIG_PATH=[INSTALL_LOCATION]/argos3-dist/lib/pkgconfig&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export ARGOS_PLUGIN_PATH=[INSTALL_LOCATION]/argos3-dist/lib/argos3&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export LD_LIBRARY_PATH=$ARGOS_PLUGIN_PATH:$LD_LIBRARY_PATH&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;export PATH=[INSTALL_LOCATION]/argos3-dist/bin/:$PATH&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install the e-puck plugin&lt;br /&gt;
*#* Get the repository&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/argos3-epuck.git argos3-epuck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd argos3-epuck&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;git checkout v48&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* '''If you are on the cluster:'''&lt;br /&gt;
*#*# Open src/plugins/robots/e-puck/CMakeLists.txt and comment the line with &amp;lt;code&amp;gt;include(VisionTools.cmake)&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# Open src/cmake/ARGoSBuildChecks.cmake and remove the checks for Lua and Qt/OpenGL&lt;br /&gt;
*#* Prepare the build of the epuck-plugin&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;mkdir build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=[INSTALL_LOCATION]/argos3-dist -DCMAKE_BUILD_TYPE=Release ../src&amp;lt;/code&amp;gt;, where the [INSTALL_LOCATION] is the same place as for argos3 (on the cluster /home/[USER_NAME]/)&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*#*# &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
** If you don't want to install everything by hand [http://iridia.ulb.ac.be/~afranzin/files/scripts/bundle_argos3_epuck.sh this script] might be useful. However you need all prerequisites installed before running the script.&lt;br /&gt;
* Install AutoMoDe&lt;br /&gt;
*# Download and install the loopfunctions&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/experiments-loop-functions.git AutoMoDe-loopfunctions&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe-loopfunctions&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;git checkout simulation&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=[INSTALL_LOCATION]/argos3-dist -DCMAKE_BUILD_TYPE=Release ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install the e-puck DAO&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/demiurge-epuck-dao.git AutoMoDe-DAO&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe-DAO&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build &amp;amp;&amp;amp; cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake -DCMAKE_INSTALL_PREFIX=[INSTALL_LOCATION]/argos3-dist -DCMAKE_BUILD_TYPE=Release ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make install&amp;lt;/code&amp;gt;&lt;br /&gt;
*# Download and install AutoMoDe&lt;br /&gt;
*## &amp;lt;code&amp;gt;git clone git@github.com:demiurge-project/AutoMoDe-private.git AutoMoDe&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd AutoMoDe&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;mkdir build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cd build&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;cmake ..&amp;lt;/code&amp;gt;&lt;br /&gt;
*## &amp;lt;code&amp;gt;make&amp;lt;/code&amp;gt;&lt;br /&gt;
* If you have to work on the cluster you should follow [http://majorana.ulb.ac.be/wordpress/how-to-install-argos3-on-majorana/ these instructions] to install Argos. AutoMoDe can be installed as on your local computer.&lt;br /&gt;
* In order to install irace on the cluster, follow these steps:&lt;br /&gt;
*# Download the [https://nextcloud.ananas.space/s/WhQ2yqhmqoaBRdC irace package]&lt;br /&gt;
*# Upload the .tar.gz file to your home directory in the cluster&lt;br /&gt;
*# Install the R package locally&lt;br /&gt;
*#* Run the following command: &amp;lt;code&amp;gt;R CMD INSTALL -l ~/R/x86_64-redhat-linux-gnu-library/2.15/ irace_2.2.tar.gz&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* Please note that the irace package must be located in ~/R/x86_64-redhat-linux-gnu-library/2.15/irace to be correctly located by R. At the moment it is not possible to put it anywhere else&lt;br /&gt;
*#* If you are installing on the new rack, replace the 2.15 in the path by 3.5. This is because we have an updated version of R.&lt;br /&gt;
*# Add irace to IRACE_HOME, PATH and R_LIBS path (for example in your [https://en.wikipedia.org/wiki/Bash_%28Unix_shell%29#Startup_scripts .bashrc file] with the following commands)&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export R_LIBS_USER=~/R/x86_64-redhat-linux-gnu-library/2.15&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export IRACE_HOME=${R_LIBS_USER}/irace&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export PATH=${IRACE_HOME}/bin/:${PATH}&amp;lt;/code&amp;gt;&lt;br /&gt;
*#* &amp;lt;code&amp;gt;export R_LIBS=${R_LIBS_USER}:${R_LIBS}&amp;lt;/code&amp;gt;&lt;br /&gt;
* In order to install EvoStick&lt;br /&gt;
*# ''Coming soon''&lt;br /&gt;
* In order to install NEAT&lt;br /&gt;
*# ''Coming soon''&lt;br /&gt;
&amp;lt;!--** Installing new software in the cluster is not always easy. Therefore many modules are not up-to-date and you have to stick to the versions that are used by the cluster. Check before writing your software that you have approximately the same versions as on the cluster or you might encounter some surprises when running your experiments.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Running robot experiments in the arena ==&lt;br /&gt;
&lt;br /&gt;
* A detailed description on running experiments in the Arena can be found [[AutoMoDe_Arena_Experiments | here]]&lt;br /&gt;
&lt;br /&gt;
== Writing your paper ==&lt;br /&gt;
&lt;br /&gt;
* See [[Demiurge_Writing_Papers | this page]] for information on how to write your paper.&lt;br /&gt;
&lt;br /&gt;
== Important paper to read ==&lt;br /&gt;
&lt;br /&gt;
* [http://iridia.ulb.ac.be/~mbiro/paperi/FraBraBru-etal2014si.pdf AutoMoDe Vanilla]&lt;br /&gt;
* [http://iridia.ulb.ac.be/~mbiro/paperi/FraBraBru-etal2015si.pdf AutoMoDe Chocolate]&lt;br /&gt;
* [http://iridia.ulb.ac.be/IridiaTrSeries/link/IridiaTr2016-004.pdf Irace User Guide]&lt;br /&gt;
&lt;br /&gt;
== Useful pages to bookmark ==&lt;br /&gt;
&lt;br /&gt;
* http://iridia.ulb.ac.be/IridiaTrSeries/: Here all Technical reports will be published&lt;br /&gt;
* https://github.com/demiurge-project: The github page for all of our repositories&lt;br /&gt;
&lt;br /&gt;
== People working on the project ==&lt;br /&gt;
&lt;br /&gt;
* '''TODO'''&lt;br /&gt;
&lt;br /&gt;
== Resources depending on your area of expertise ==&lt;br /&gt;
&lt;br /&gt;
* '''TODO'''&lt;/div&gt;</summary>
		<author><name>Dgarzonr</name></author>
	</entry>
</feed>