<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://tsgdoc.socsci.ru.nl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=C.Lieu</id>
	<title>TSG Doc - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://tsgdoc.socsci.ru.nl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=C.Lieu"/>
	<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php/Special:Contributions/C.Lieu"/>
	<updated>2026-04-30T09:11:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.4</generator>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Python&amp;diff=3506</id>
		<title>Python</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Python&amp;diff=3506"/>
		<updated>2015-11-25T08:56:58Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* List of Python Packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Python&lt;br /&gt;
| logo                   = Python-logo-generic.svg&lt;br /&gt;
| logo size              = 180px&lt;br /&gt;
| logo alt               = Python(tm)&lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = 2.7.9&lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Python&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = &lt;br /&gt;
| website                = [http://www.python.org python.org]&lt;br /&gt;
| resources              = &lt;br /&gt;
  &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[wikipedia:Python_(programming_language)|Python]] is a general-purpose, high-level programming language. It is also a [[wikipedia:Python_%28genus%29|type of snake]], but one is arguably more relevant to your research than the other.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
===Windows (32 bit)===&lt;br /&gt;
# Download the '''[https://www.python.org/downloads/ Win32 installer]'''&lt;br /&gt;
# Double-click on the executable and follow the steps on your screen.&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
=== Windows Environment Variables ===&lt;br /&gt;
&amp;lt;pre&amp;gt;Computer --&amp;gt; Properties --&amp;gt; Advanced settings --&amp;gt; Environment Variables.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:python_env.jpg]]&lt;br /&gt;
 &lt;br /&gt;
Add the following Path:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;C:\Python27;C:\Python27\Lib\site-packages\;C:\Python27\Scripts\;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:python_path.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[image:python_path2.jpg]]&lt;br /&gt;
&lt;br /&gt;
===Package Management===&lt;br /&gt;
&lt;br /&gt;
==== pip ====&lt;br /&gt;
After Python is installed, you can use [[wikipedia:Pip_(package_manager)|pip]] to install your required packages. '''pip is included with Python 2.7.9 or greater'''. For older versions, use the following steps to install:&lt;br /&gt;
&lt;br /&gt;
# Download [https://raw.github.com/pypa/pip/master/contrib/get-pip.py get-pip.py]&lt;br /&gt;
# Execute get-pip by entering the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;python get-pip.py&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To install a package, simply execute the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;c:\pip install PACKAGE_NAME&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Replace PACKAGE_NAME with the name of the package of choice.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' By default, packages are installed in the following folder (Windows):&lt;br /&gt;
&amp;lt;pre&amp;gt;C:\Python27\Lib\site-packages&amp;lt;/pre&amp;gt;&lt;br /&gt;
This location may differ if you have installed Python somewhere else.&lt;br /&gt;
&lt;br /&gt;
==== Setuptools ====&lt;br /&gt;
For package management with setuptools, install setuptools using the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;pip install -U setuptools&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To install a package, simply execute the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;c:\easy_install PACKAGE_NAME&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Replace PACKAGE_NAME with the name of the package of choice.&lt;br /&gt;
&lt;br /&gt;
===List of Python Packages===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Python Library  &lt;br /&gt;
! Description &lt;br /&gt;
! Installed&lt;br /&gt;
! Installer Type&lt;br /&gt;
! URL&lt;br /&gt;
|-&lt;br /&gt;
| PIL || Python Image Library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Package Manager || http://www.pythonware.com/products/pil/  &lt;br /&gt;
|-&lt;br /&gt;
| SciPy || Python-based ecosystem of open-source software for mathematics, science, and engineering. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Package Manager || http://www.scipy.org/install.html&lt;br /&gt;
|-&lt;br /&gt;
| PyWin32 || Python Extensions for Windows || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://sourceforge.net/projects/pywin32/files/pywin32/&lt;br /&gt;
|-&lt;br /&gt;
| PySerial || Serial access for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || https://pypi.python.org/pypi/pyserial&lt;br /&gt;
|-&lt;br /&gt;
| wxPython || GUI Toolkit for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.wxpython.org/download.php#msw&lt;br /&gt;
|-&lt;br /&gt;
| matplotlib || 2D plotting library for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer  || http://matplotlib.org/downloads.html&lt;br /&gt;
|-&lt;br /&gt;
| pyo || dedicated Python module for digital signal processing || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://ajaxsoundstudio.com/software/pyo/&lt;br /&gt;
|-&lt;br /&gt;
| Opencv2 || Open Source Computer Vision is a library of programming functions mainly aimed at real-time computer vision || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://opencv.org/&lt;br /&gt;
|-&lt;br /&gt;
| PyQt ||  Python binding of the cross-platform GUI toolkit Qt || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.riverbankcomputing.co.uk/software/pyqt/download5&lt;br /&gt;
|-&lt;br /&gt;
| PyQtGraph || Scientific Graphics and GUI Library for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.pyqtgraph.org/ &lt;br /&gt;
|-&lt;br /&gt;
| LXML || library for processing XML and HTML in the Python language || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://lxml.de/&lt;br /&gt;
|-&lt;br /&gt;
| PyGame || Pygame is a set of Python modules designed for writing games. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Windows installer || http://pygame.org/news.html&lt;br /&gt;
|-&lt;br /&gt;
| PANDAS || Python Data Analysis Library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://pandas.pydata.org/&lt;br /&gt;
|-&lt;br /&gt;
| Expyriment || A Python library for congnitive and neuroscientific experiments. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://www.expyriment.org/&lt;br /&gt;
|-&lt;br /&gt;
| Pyparse || Parse text files in an easier and more maintainable manner || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || https://pypi.python.org/pypi/PyParse/1.1.7&lt;br /&gt;
|-&lt;br /&gt;
| AVbin || media decoding/decompression library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || https://code.google.com/p/avbin/&lt;br /&gt;
|-&lt;br /&gt;
| Pyglet || a cross-platform windowing and multimedia library for Python. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Manual Install || [[File:Pyglet-1.1.4.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| FreeType || Library to Render Fonts || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Manual Install || [[file:freetype.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| Psignifit || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Psychology Software in Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://www.psychopy.org&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
For Psychopy dependancies, check the [[Psychopy]] page.&lt;br /&gt;
&lt;br /&gt;
=== Windows Handlers ===&lt;br /&gt;
Check the Handlers by opening the Windows registry editor.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;reg&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_CLASSES_ROOT\Python.CompiledFile\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_CLASSES_ROOT\Python.File\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Python.CompiledFile\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Python.File\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Python DLL Files ===&lt;br /&gt;
&lt;br /&gt;
* '''C:\Python27\DLLs\'''&lt;br /&gt;
* Path Within the script.&lt;br /&gt;
* '''C:\Windows\System32''' or &lt;br /&gt;
* '''C:\Windows\SysWOW64'''&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
===Example: TestArgs.py===&lt;br /&gt;
Execute the following script within the commandline (CMD): &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;python testArgs.py a.&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
You should see the following result:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
number of argument:  2&lt;br /&gt;
 argv[0]: ./testArgs.py&lt;br /&gt;
 argv[1]: a&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*[[Psychopy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==External Links== &lt;br /&gt;
*{{Official website|http://www.python.org}}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Python&amp;diff=3505</id>
		<title>Python</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Python&amp;diff=3505"/>
		<updated>2015-11-25T08:29:27Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* List of Python Packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Python&lt;br /&gt;
| logo                   = Python-logo-generic.svg&lt;br /&gt;
| logo size              = 180px&lt;br /&gt;
| logo alt               = Python(tm)&lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = 2.7.9&lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Python&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = &lt;br /&gt;
| website                = [http://www.python.org python.org]&lt;br /&gt;
| resources              = &lt;br /&gt;
  &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[wikipedia:Python_(programming_language)|Python]] is a general-purpose, high-level programming language. It is also a [[wikipedia:Python_%28genus%29|type of snake]], but one is arguably more relevant to your research than the other.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
===Windows (32 bit)===&lt;br /&gt;
# Download the '''[https://www.python.org/downloads/ Win32 installer]'''&lt;br /&gt;
# Double-click on the executable and follow the steps on your screen.&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
=== Windows Environment Variables ===&lt;br /&gt;
&amp;lt;pre&amp;gt;Computer --&amp;gt; Properties --&amp;gt; Advanced settings --&amp;gt; Environment Variables.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:python_env.jpg]]&lt;br /&gt;
 &lt;br /&gt;
Add the following Path:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;C:\Python27;C:\Python27\Lib\site-packages\;C:\Python27\Scripts\;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:python_path.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[image:python_path2.jpg]]&lt;br /&gt;
&lt;br /&gt;
===Package Management===&lt;br /&gt;
&lt;br /&gt;
==== pip ====&lt;br /&gt;
After Python is installed, you can use [[wikipedia:Pip_(package_manager)|pip]] to install your required packages. '''pip is included with Python 2.7.9 or greater'''. For older versions, use the following steps to install:&lt;br /&gt;
&lt;br /&gt;
# Download [https://raw.github.com/pypa/pip/master/contrib/get-pip.py get-pip.py]&lt;br /&gt;
# Execute get-pip by entering the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;python get-pip.py&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To install a package, simply execute the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;c:\pip install PACKAGE_NAME&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Replace PACKAGE_NAME with the name of the package of choice.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' By default, packages are installed in the following folder (Windows):&lt;br /&gt;
&amp;lt;pre&amp;gt;C:\Python27\Lib\site-packages&amp;lt;/pre&amp;gt;&lt;br /&gt;
This location may differ if you have installed Python somewhere else.&lt;br /&gt;
&lt;br /&gt;
==== Setuptools ====&lt;br /&gt;
For package management with setuptools, install setuptools using the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;pip install -U setuptools&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To install a package, simply execute the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;c:\easy_install PACKAGE_NAME&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Replace PACKAGE_NAME with the name of the package of choice.&lt;br /&gt;
&lt;br /&gt;
===List of Python Packages===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Python Library  &lt;br /&gt;
! Description &lt;br /&gt;
! Installed&lt;br /&gt;
! Installer Type&lt;br /&gt;
! URL&lt;br /&gt;
|-&lt;br /&gt;
| PIL || Python Image Library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Package Manager || http://www.pythonware.com/products/pil/  &lt;br /&gt;
|-&lt;br /&gt;
| SciPy || Python-based ecosystem of open-source software for mathematics, science, and engineering. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Package Manager || http://www.scipy.org/install.html&lt;br /&gt;
|-&lt;br /&gt;
| PyWin32 || Python Extensions for Windows || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://sourceforge.net/projects/pywin32/files/pywin32/&lt;br /&gt;
|-&lt;br /&gt;
| PySerial || Serial access for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || https://pypi.python.org/pypi/pyserial&lt;br /&gt;
|-&lt;br /&gt;
| wxPython || GUI Toolkit for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.wxpython.org/download.php#msw&lt;br /&gt;
|-&lt;br /&gt;
| matplotlib || 2D plotting library for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer  || http://matplotlib.org/downloads.html&lt;br /&gt;
|-&lt;br /&gt;
| pyo || dedicated Python module for digital signal processing || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://ajaxsoundstudio.com/software/pyo/&lt;br /&gt;
|-&lt;br /&gt;
| Opencv2 || Open Source Computer Vision is a library of programming functions mainly aimed at real-time computer vision || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://opencv.org/&lt;br /&gt;
|-&lt;br /&gt;
| PyQt ||  Python binding of the cross-platform GUI toolkit Qt || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.riverbankcomputing.co.uk/software/pyqt/download5&lt;br /&gt;
|-&lt;br /&gt;
| PyQtGraph || Scientific Graphics and GUI Library for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.pyqtgraph.org/ &lt;br /&gt;
|-&lt;br /&gt;
| LXML || library for processing XML and HTML in the Python language || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://lxml.de/&lt;br /&gt;
|-&lt;br /&gt;
| PyGame || Pygame is a set of Python modules designed for writing games. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Windows installer || http://pygame.org/news.html&lt;br /&gt;
|-&lt;br /&gt;
| PANDAS || Python Data Analysis Library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://pandas.pydata.org/&lt;br /&gt;
|-&lt;br /&gt;
| Expyriment || A Python library for congnitive and neuroscientific experiments. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://www.expyriment.org/&lt;br /&gt;
|-&lt;br /&gt;
| Pyparse || Parse text files in an easier and more maintainable manner || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || https://pypi.python.org/pypi/PyParse/1.1.7&lt;br /&gt;
|-&lt;br /&gt;
| AVbin || media decoding/decompression library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || https://code.google.com/p/avbin/&lt;br /&gt;
|-&lt;br /&gt;
| Pyglet || a cross-platform windowing and multimedia library for Python. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Manual Install || [[File:Pyglet-1.1.4.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| FreeType || Library to Render Fonts || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Manual Install || [[file:freetype.zip]]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Psignifit || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Psychology Software in Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://www.psychopy.org&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
For Psychopy dependancies, check the [[Psychopy]] page.&lt;br /&gt;
&lt;br /&gt;
=== Windows Handlers ===&lt;br /&gt;
Check the Handlers by opening the Windows registry editor.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;reg&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_CLASSES_ROOT\Python.CompiledFile\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_CLASSES_ROOT\Python.File\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Python.CompiledFile\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Python.File\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Python DLL Files ===&lt;br /&gt;
&lt;br /&gt;
* '''C:\Python27\DLLs\'''&lt;br /&gt;
* Path Within the script.&lt;br /&gt;
* '''C:\Windows\System32''' or &lt;br /&gt;
* '''C:\Windows\SysWOW64'''&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
===Example: TestArgs.py===&lt;br /&gt;
Execute the following script within the commandline (CMD): &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;python testArgs.py a.&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
You should see the following result:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
number of argument:  2&lt;br /&gt;
 argv[0]: ./testArgs.py&lt;br /&gt;
 argv[1]: a&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*[[Psychopy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==External Links== &lt;br /&gt;
*{{Official website|http://www.python.org}}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Python&amp;diff=3504</id>
		<title>Python</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Python&amp;diff=3504"/>
		<updated>2015-11-25T08:29:13Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* List of Python Packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Python&lt;br /&gt;
| logo                   = Python-logo-generic.svg&lt;br /&gt;
| logo size              = 180px&lt;br /&gt;
| logo alt               = Python(tm)&lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = 2.7.9&lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Python&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = &lt;br /&gt;
| website                = [http://www.python.org python.org]&lt;br /&gt;
| resources              = &lt;br /&gt;
  &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[wikipedia:Python_(programming_language)|Python]] is a general-purpose, high-level programming language. It is also a [[wikipedia:Python_%28genus%29|type of snake]], but one is arguably more relevant to your research than the other.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
===Windows (32 bit)===&lt;br /&gt;
# Download the '''[https://www.python.org/downloads/ Win32 installer]'''&lt;br /&gt;
# Double-click on the executable and follow the steps on your screen.&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
=== Windows Environment Variables ===&lt;br /&gt;
&amp;lt;pre&amp;gt;Computer --&amp;gt; Properties --&amp;gt; Advanced settings --&amp;gt; Environment Variables.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:python_env.jpg]]&lt;br /&gt;
 &lt;br /&gt;
Add the following Path:&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;C:\Python27;C:\Python27\Lib\site-packages\;C:\Python27\Scripts\;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[image:python_path.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[image:python_path2.jpg]]&lt;br /&gt;
&lt;br /&gt;
===Package Management===&lt;br /&gt;
&lt;br /&gt;
==== pip ====&lt;br /&gt;
After Python is installed, you can use [[wikipedia:Pip_(package_manager)|pip]] to install your required packages. '''pip is included with Python 2.7.9 or greater'''. For older versions, use the following steps to install:&lt;br /&gt;
&lt;br /&gt;
# Download [https://raw.github.com/pypa/pip/master/contrib/get-pip.py get-pip.py]&lt;br /&gt;
# Execute get-pip by entering the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;python get-pip.py&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
To install a package, simply execute the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;c:\pip install PACKAGE_NAME&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Replace PACKAGE_NAME with the name of the package of choice.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' By default, packages are installed in the following folder (Windows):&lt;br /&gt;
&amp;lt;pre&amp;gt;C:\Python27\Lib\site-packages&amp;lt;/pre&amp;gt;&lt;br /&gt;
This location may differ if you have installed Python somewhere else.&lt;br /&gt;
&lt;br /&gt;
==== Setuptools ====&lt;br /&gt;
For package management with setuptools, install setuptools using the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;pip install -U setuptools&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To install a package, simply execute the following command: &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;c:\easy_install PACKAGE_NAME&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Replace PACKAGE_NAME with the name of the package of choice.&lt;br /&gt;
&lt;br /&gt;
===List of Python Packages===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Python Library  &lt;br /&gt;
! Description &lt;br /&gt;
! Installed&lt;br /&gt;
! Installer Type&lt;br /&gt;
! URL&lt;br /&gt;
|-&lt;br /&gt;
| PIL || Python Image Library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Package Manager || http://www.pythonware.com/products/pil/  &lt;br /&gt;
|-&lt;br /&gt;
| SciPy || Python-based ecosystem of open-source software for mathematics, science, and engineering. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Package Manager || http://www.scipy.org/install.html&lt;br /&gt;
|-&lt;br /&gt;
| PyWin32 || Python Extensions for Windows || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://sourceforge.net/projects/pywin32/files/pywin32/&lt;br /&gt;
|-&lt;br /&gt;
| PySerial || Serial access for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || https://pypi.python.org/pypi/pyserial&lt;br /&gt;
|-&lt;br /&gt;
| wxPython || GUI Toolkit for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.wxpython.org/download.php#msw&lt;br /&gt;
|-&lt;br /&gt;
| matplotlib || 2D plotting library for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer  || http://matplotlib.org/downloads.html&lt;br /&gt;
|-&lt;br /&gt;
| pyo || dedicated Python module for digital signal processing || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://ajaxsoundstudio.com/software/pyo/&lt;br /&gt;
|-&lt;br /&gt;
| Opencv2 || Open Source Computer Vision is a library of programming functions mainly aimed at real-time computer vision || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://opencv.org/&lt;br /&gt;
|-&lt;br /&gt;
| PyQt ||  Python binding of the cross-platform GUI toolkit Qt || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.riverbankcomputing.co.uk/software/pyqt/download5&lt;br /&gt;
|-&lt;br /&gt;
| PyQtGraph || Scientific Graphics and GUI Library for Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://www.pyqtgraph.org/ &lt;br /&gt;
|-&lt;br /&gt;
| LXML || library for processing XML and HTML in the Python language || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://lxml.de/&lt;br /&gt;
|-&lt;br /&gt;
| PyGame || Pygame is a set of Python modules designed for writing games. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Windows installer || http://pygame.org/news.html&lt;br /&gt;
|-&lt;br /&gt;
| PANDAS || Python Data Analysis Library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://pandas.pydata.org/&lt;br /&gt;
|-&lt;br /&gt;
| Expyriment || A Python library for congnitive and neuroscientific experiments. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://www.expyriment.org/&lt;br /&gt;
|-&lt;br /&gt;
| Pyparse || Parse text files in an easier and more maintainable manner || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || https://pypi.python.org/pypi/PyParse/1.1.7&lt;br /&gt;
|-&lt;br /&gt;
| AVbin || media decoding/decompression library || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || https://code.google.com/p/avbin/&lt;br /&gt;
|-&lt;br /&gt;
| Pyglet || a cross-platform windowing and multimedia library for Python. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Manual Install || [[File:Pyglet-1.1.4.zip]]&lt;br /&gt;
|-&lt;br /&gt;
| FreeType || Library to Render Fonts || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Manual Install || [[file:freetype.zip]]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| psignifit || || || ||&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Psychology Software in Python || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || Package Manager || http://www.psychopy.org&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
For Psychopy dependancies, check the [[Psychopy]] page.&lt;br /&gt;
&lt;br /&gt;
=== Windows Handlers ===&lt;br /&gt;
Check the Handlers by opening the Windows registry editor.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;reg&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_CLASSES_ROOT\Python.CompiledFile\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_CLASSES_ROOT\Python.File\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Python.CompiledFile\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Windows Registry Editor Version 5.00&lt;br /&gt;
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Python.File\shell\open\command]&lt;br /&gt;
@=&amp;quot;\&amp;quot;C:\\Python27\\python.exe\&amp;quot; \&amp;quot;%1\&amp;quot; %*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Python DLL Files ===&lt;br /&gt;
&lt;br /&gt;
* '''C:\Python27\DLLs\'''&lt;br /&gt;
* Path Within the script.&lt;br /&gt;
* '''C:\Windows\System32''' or &lt;br /&gt;
* '''C:\Windows\SysWOW64'''&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
===Example: TestArgs.py===&lt;br /&gt;
Execute the following script within the commandline (CMD): &amp;lt;code style=&amp;quot;background-color:#000; color:#fff; padding:1px 3px;&amp;quot;&amp;gt;python testArgs.py a.&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
You should see the following result:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
number of argument:  2&lt;br /&gt;
 argv[0]: ./testArgs.py&lt;br /&gt;
 argv[1]: a&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*[[Psychopy]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
==External Links== &lt;br /&gt;
*{{Official website|http://www.python.org}}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3503</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3503"/>
		<updated>2015-11-25T08:22:25Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* DCC (Updated 20-11-2015) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC (Updated 20-11-2015) ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPac || BioPac Student Lab || 3.7.7 || Individual Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop || Git Desktop || 3.0.7 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| 7zip || 7zip || 9.20 || Individual Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3502</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3502"/>
		<updated>2015-11-25T08:22:01Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Standard Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC (Updated 20-11-2015) ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPac || BioPac Student Lab || 3.7.7 || Individual Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop || Git Desktop || 3.0.7 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || Individual Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| 7zip || 7zip || 9.20 || Individual Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3501</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3501"/>
		<updated>2015-11-25T08:21:29Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* DCC (Updated 20-11-2015) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC (Updated 20-11-2015) ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPac || BioPac Student Lab || 3.7.7 || Individual Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop || Git Desktop || 3.0.7 || Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || Individual Non-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3500</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3500"/>
		<updated>2015-11-23T14:19:08Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* DCC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC (Updated 20-11-2015) ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop || Git Desktop || 3.0.7 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3499</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3499"/>
		<updated>2015-11-23T14:18:28Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes  || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop || Git Desktop || 3.0.7 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3498</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3498"/>
		<updated>2015-11-23T14:17:21Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || Individual None-Commercial || - ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || Individual None-Commercial || - || ||&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop || Git Desktop || 3.0.7 || Individual None-Commercial || - || ||&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || Individual None-Commercial || - || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3497</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3497"/>
		<updated>2015-11-23T14:17:01Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || || - || Individual None-Commercial ||  &lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || Individual None-Commercial || - || ||&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop || Git Desktop || 3.0.7 || Individual None-Commercial || - || ||&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || Individual None-Commercial || - || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3496</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3496"/>
		<updated>2015-11-23T14:16:19Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || || - || ||  &lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || || - || ||&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop || Git Desktop || 3.0.7 || || - || ||&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || || - || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3495</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3495"/>
		<updated>2015-11-23T14:14:42Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || || - || ||  &lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || 4.7.3 || || - || ||&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop Client || Git Desktop Client || || || - || ||&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || || - || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3494</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3494"/>
		<updated>2015-11-23T14:09:02Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || || - || ||  &lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || || || - || ||&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop Client || Git Desktop Client || || || - || ||&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || 9.20 || || - || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3493</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3493"/>
		<updated>2015-11-23T14:07:04Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.06.09.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || 2.6.3 || || - || ||  &lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || || || - || ||&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop Client || Git Desktop Client || || || - || ||&lt;br /&gt;
|- &lt;br /&gt;
| 7zip || 7zip || || || - || ||&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3492</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3492"/>
		<updated>2015-11-23T13:58:04Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* DCC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || || || - || ||  &lt;br /&gt;
|-&lt;br /&gt;
| Cyberduck || Cyberduck || || || - || ||&lt;br /&gt;
|-&lt;br /&gt;
| Git Desktop Client || Git Desktop Client || || || - || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3491</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3491"/>
		<updated>2015-11-23T13:56:57Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Git || Git || || || - || || ||  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3490</id>
		<title>System Image</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=System_Image&amp;diff=3490"/>
		<updated>2015-11-23T13:54:32Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Research Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== DCC ==&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.83.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.9.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Mouse Software || Logitech || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Spyder Utility || Datacolor || - || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= BSI =&lt;br /&gt;
&lt;br /&gt;
==== Research Applications ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Presentation || Neurobehavioral Systems || 18.1.03.31.15 || Individual Non-Commercial || Network/Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Psychopy || Nottingham University || 1.82.01 || GNU GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| Matlab || MathWorks || 2013b || Academic || Network || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes &lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 3 Desktop || Millisecond Software || 3.0.6.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; |  No&lt;br /&gt;
|-&lt;br /&gt;
| Inquisit 4 Lab || Millisecond Software || 4.0.8.0 Desktop || Institutional (Academic) || Serial number || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| E-Prime Standard Edition || PST-Software || 2.0.10.353 || Individual || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Arduino IDE || Arduino || 1.6.3 ||  LGPL or GPL || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Brainvision || Media Recorder || 1.20.0801 || Individual Non-Commercial || Dongle || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| BioPack || BioPack Student Lab || 3.7.7 || Individual Non-Commercial || Device || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Python || Python || 2.7.9 || Individual None-Commercial || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Standard Applications ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Product Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Publisher &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed Version &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Type &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | License Distribution&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Windows&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:64px;&amp;quot;| Linux &lt;br /&gt;
|-&lt;br /&gt;
| Office 2010 || Microsoft || 2010 Plus || Academic License || User License || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| VLC Media Player || VideoLan || 2.1.5 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-&lt;br /&gt;
| MPC-HC || MPC-HC || 1.7.8 || open-source || open-source || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| F-Secure Client Security || F-Secure || 11.60 || Academic License || Per device  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Logitech Webcam Software || Logitech || 2.51.828.0 || vendor || vendor || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No &lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat Reader || Adobe || Versie XI (11.0.10) || - || - || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#F99;&amp;quot; | No&lt;br /&gt;
|-&lt;br /&gt;
| Audacity ||  || 2.1.0 || GNU || GNU || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes&lt;br /&gt;
|-  &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3489</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3489"/>
		<updated>2015-11-19T13:07:09Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Accepting new SSH key (only for some users with existing repository) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [[:File:Xkcd_git.png | Quick start guide]]&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Gitlab documentation]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johannes Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Accepting new SSH key (only for some users with existing repository) ===&lt;br /&gt;
&lt;br /&gt;
Some users will see the  following message when they want to make a remote connection with SSH. (existing repository)&lt;br /&gt;
When you see the below message you will need to say yes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ Warning: the ECDSA host key for 'smlgitlab.socsci.ru.nl' differs from the key for the IP address 'x.x.x.x'&lt;br /&gt;
$ Offending key for IP in /home/user/.ssh/known_hosts:23 Matching host key in /home/user/.ssh/known_hosts:13 &lt;br /&gt;
$ Are you sure you want to continue connecting (yes/no)? yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Remote SSH connection should be established.&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3488</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3488"/>
		<updated>2015-11-19T13:05:58Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Accepting new SSH key (only for some users with existing repository) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [[:File:Xkcd_git.png | Quick start guide]]&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Gitlab documentation]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johannes Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Accepting new SSH key (only for some users with existing repository) ===&lt;br /&gt;
&lt;br /&gt;
Some users will see the  following message when they want to make a remote connection with SSH. (existing repository)&lt;br /&gt;
When you see the below message you will need to accept the new key.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ Warning: the ECDSA host key for 'smlgitlab.socsci.ru.nl' differs from the key for the IP address 'x.x.x.x'&lt;br /&gt;
$ Offending key for IP in /home/user/.ssh/known_hosts:23 Matching host key in /home/user/.ssh/known_hosts:13 &lt;br /&gt;
$ Are you sure you want to continue connecting (yes/no)? yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All should be fine when the new key got accepted. &lt;br /&gt;
Remote SSH connection should be established.&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3487</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3487"/>
		<updated>2015-11-19T13:04:47Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Accepting new SSH key (only for some users with existing repository) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [[:File:Xkcd_git.png | Quick start guide]]&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Gitlab documentation]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johannes Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Accepting new SSH key (only for some users with existing repository) ===&lt;br /&gt;
&lt;br /&gt;
Some users will see the  following message when they want to make a remote connection with SSH. (existing repository)&lt;br /&gt;
When you see the below message you will need to accept the new key.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ Warning: the ECDSA host key for 'smlgitlab.socsci.ru.nl' differs from the key for the IP address 'x.x.x.x'&lt;br /&gt;
$ Offending key for IP in /home/user/.ssh/known_hosts:23 Matching host key in /home/user/.ssh/known_hosts:13 &lt;br /&gt;
$ Are you sure you want to continue connecting (yes/no)? yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All should be fine when accepting the new key. Remote SSH connection should be possible again&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3486</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3486"/>
		<updated>2015-11-19T13:04:06Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Accepting new SSH key (only for some users with existing repository) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [[:File:Xkcd_git.png | Quick start guide]]&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Gitlab documentation]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johannes Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Accepting new SSH key (only for some users with existing repository) ===&lt;br /&gt;
&lt;br /&gt;
Some users will see the  following message when they want to make a remote connection with SSH. (existing repository)&lt;br /&gt;
When you see the below message you will need to accept the new key.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
Warning: the ECDSA host key for 'smlgitlab.socsci.ru.nl' differs from the key for the IP address 'x.x.x.x'&lt;br /&gt;
Offending key for IP in /home/user/.ssh/known_hosts:23 Matching host key in /home/user/.ssh/known_hosts:13 &lt;br /&gt;
Are you sure you want to continue connecting (yes/no)? yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All should be fine when accepting the new key. Remote SSH connection should be possible again&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3485</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3485"/>
		<updated>2015-11-19T13:01:38Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [[:File:Xkcd_git.png | Quick start guide]]&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Gitlab documentation]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johannes Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Accepting new SSH key (only for some users with existing repository) ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
Warning: the ECDSA host key for 'smlgitlab.socsci.ru.nl' differs from the key for the IP address 'x.x.x.x'&lt;br /&gt;
Offending key for IP in /home/user/.ssh/known_hosts:23 Matching host key in /home/user/.ssh/known_hosts:13 &lt;br /&gt;
Are you sure you want to continue connecting (yes/no)? yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All should be fine when accepting the new key.&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3484</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3484"/>
		<updated>2015-11-19T12:46:15Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Accepting new SSH key (only for current users) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [[:File:Xkcd_git.png | Quick start guide]]&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Gitlab documentation]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johannes Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3483</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3483"/>
		<updated>2015-11-19T12:46:01Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [[:File:Xkcd_git.png | Quick start guide]]&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Gitlab documentation]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johannes Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Accepting new SSH key (only for current users) ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3476</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3476"/>
		<updated>2015-11-16T06:28:44Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [[:File:Xkcd_git.png | Quick start guide]]&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Gitlab documentation]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johannes Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Psychopy&amp;diff=3460</id>
		<title>Psychopy</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Psychopy&amp;diff=3460"/>
		<updated>2015-11-13T10:53:31Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Psychopy&lt;br /&gt;
| logo                   = Psychopy Logo.png&lt;br /&gt;
| logo size              = 250px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Python&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = &lt;br /&gt;
| website                = &lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [[Media:TemplatePsychopy2013.zip|Template]]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [https://www.socsci.ru.nl/~wilberth/psychopy/index.html Course]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
PsychoPy is an alternative to Presentation, e-Prime and Inquisit. It is a Python library and application that allows presentation of stimuli and collection of data for a wide range of neuroscience, psychology and psychophysics experiments. When used on DCC computers PsychoPy is guaranteed to be millisecond accurate.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
=== Python Packages ===&lt;br /&gt;
&lt;br /&gt;
Click [http://www.psychopy.org/installation.html here] for more information&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Python Library  &lt;br /&gt;
! Version&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| numpy || version 0.9.6 or greater&lt;br /&gt;
|-&lt;br /&gt;
| scipy || version 0.4.8 or greater&lt;br /&gt;
|-&lt;br /&gt;
| pyglet || version 1.1.4, not version 1.2&lt;br /&gt;
|-&lt;br /&gt;
| wxPython || version 2.8.10 or 2.8.11, not 2.9&lt;br /&gt;
|-&lt;br /&gt;
| Python Imaging Library || sudo easy_install PIL&lt;br /&gt;
|-&lt;br /&gt;
| matplotlib || for plotting and fast polygon routines&lt;br /&gt;
|-&lt;br /&gt;
| lxml || needed for loading/saving builder experiment files&lt;br /&gt;
|-&lt;br /&gt;
| openpyxl || for loading params from xlsx files&lt;br /&gt;
|-&lt;br /&gt;
| pyo || sound, version 0.6.2 or higher, compile with —-no-messages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Course ==&lt;br /&gt;
[https://www.socsci.ru.nl/~wilberth/psychopy/index.html psychopy course website]&lt;br /&gt;
== Templates ==&lt;br /&gt;
Find the presentation Template here [[Media:TemplatePsychopy2013.zip]]&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
==== Version History ====&lt;br /&gt;
&lt;br /&gt;
For version history and bug fixes please check here: http://www.psychopy.org/changelog.html&lt;br /&gt;
&lt;br /&gt;
==== Google Mailing list ====&lt;br /&gt;
&lt;br /&gt;
For various information please click here: https://groups.google.com/forum/#!forum/psychopy-users&lt;br /&gt;
&lt;br /&gt;
==== GitHub Repository ====&lt;br /&gt;
&lt;br /&gt;
For requests / bug report / issues click here: https://github.com/psychopy/psychopy&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=File:Psychopy_Logo.png&amp;diff=3459</id>
		<title>File:Psychopy Logo.png</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=File:Psychopy_Logo.png&amp;diff=3459"/>
		<updated>2015-11-13T10:53:12Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Psychopy&amp;diff=3457</id>
		<title>Psychopy</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Psychopy&amp;diff=3457"/>
		<updated>2015-11-13T10:51:21Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Psychopy&lt;br /&gt;
| logo                   = Psychopy Logo.gif&lt;br /&gt;
| logo size              = 250px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Python&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = &lt;br /&gt;
| website                = &lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [[Media:TemplatePsychopy2013.zip|Template]]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [https://www.socsci.ru.nl/~wilberth/psychopy/index.html Course]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
PsychoPy is an alternative to Presentation, e-Prime and Inquisit. It is a Python library and application that allows presentation of stimuli and collection of data for a wide range of neuroscience, psychology and psychophysics experiments. When used on DCC computers PsychoPy is guaranteed to be millisecond accurate.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
=== Python Packages ===&lt;br /&gt;
&lt;br /&gt;
Click [http://www.psychopy.org/installation.html here] for more information&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Python Library  &lt;br /&gt;
! Version&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| numpy || version 0.9.6 or greater&lt;br /&gt;
|-&lt;br /&gt;
| scipy || version 0.4.8 or greater&lt;br /&gt;
|-&lt;br /&gt;
| pyglet || version 1.1.4, not version 1.2&lt;br /&gt;
|-&lt;br /&gt;
| wxPython || version 2.8.10 or 2.8.11, not 2.9&lt;br /&gt;
|-&lt;br /&gt;
| Python Imaging Library || sudo easy_install PIL&lt;br /&gt;
|-&lt;br /&gt;
| matplotlib || for plotting and fast polygon routines&lt;br /&gt;
|-&lt;br /&gt;
| lxml || needed for loading/saving builder experiment files&lt;br /&gt;
|-&lt;br /&gt;
| openpyxl || for loading params from xlsx files&lt;br /&gt;
|-&lt;br /&gt;
| pyo || sound, version 0.6.2 or higher, compile with —-no-messages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Course ==&lt;br /&gt;
[https://www.socsci.ru.nl/~wilberth/psychopy/index.html psychopy course website]&lt;br /&gt;
== Templates ==&lt;br /&gt;
Find the presentation Template here [[Media:TemplatePsychopy2013.zip]]&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
==== Version History ====&lt;br /&gt;
&lt;br /&gt;
For version history and bug fixes please check here: http://www.psychopy.org/changelog.html&lt;br /&gt;
&lt;br /&gt;
==== Google Mailing list ====&lt;br /&gt;
&lt;br /&gt;
For various information please click here: https://groups.google.com/forum/#!forum/psychopy-users&lt;br /&gt;
&lt;br /&gt;
==== GitHub Repository ====&lt;br /&gt;
&lt;br /&gt;
For requests / bug report / issues click here: https://github.com/psychopy/psychopy&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Psychopy&amp;diff=3456</id>
		<title>Psychopy</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Psychopy&amp;diff=3456"/>
		<updated>2015-11-13T10:51:04Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Psychopy&lt;br /&gt;
| logo                   = Psychopy Logo.gif&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Python&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = &lt;br /&gt;
| website                = &lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [[Media:TemplatePsychopy2013.zip|Template]]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [https://www.socsci.ru.nl/~wilberth/psychopy/index.html Course]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
PsychoPy is an alternative to Presentation, e-Prime and Inquisit. It is a Python library and application that allows presentation of stimuli and collection of data for a wide range of neuroscience, psychology and psychophysics experiments. When used on DCC computers PsychoPy is guaranteed to be millisecond accurate.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
=== Python Packages ===&lt;br /&gt;
&lt;br /&gt;
Click [http://www.psychopy.org/installation.html here] for more information&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Python Library  &lt;br /&gt;
! Version&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| numpy || version 0.9.6 or greater&lt;br /&gt;
|-&lt;br /&gt;
| scipy || version 0.4.8 or greater&lt;br /&gt;
|-&lt;br /&gt;
| pyglet || version 1.1.4, not version 1.2&lt;br /&gt;
|-&lt;br /&gt;
| wxPython || version 2.8.10 or 2.8.11, not 2.9&lt;br /&gt;
|-&lt;br /&gt;
| Python Imaging Library || sudo easy_install PIL&lt;br /&gt;
|-&lt;br /&gt;
| matplotlib || for plotting and fast polygon routines&lt;br /&gt;
|-&lt;br /&gt;
| lxml || needed for loading/saving builder experiment files&lt;br /&gt;
|-&lt;br /&gt;
| openpyxl || for loading params from xlsx files&lt;br /&gt;
|-&lt;br /&gt;
| pyo || sound, version 0.6.2 or higher, compile with —-no-messages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Course ==&lt;br /&gt;
[https://www.socsci.ru.nl/~wilberth/psychopy/index.html psychopy course website]&lt;br /&gt;
== Templates ==&lt;br /&gt;
Find the presentation Template here [[Media:TemplatePsychopy2013.zip]]&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
==== Version History ====&lt;br /&gt;
&lt;br /&gt;
For version history and bug fixes please check here: http://www.psychopy.org/changelog.html&lt;br /&gt;
&lt;br /&gt;
==== Google Mailing list ====&lt;br /&gt;
&lt;br /&gt;
For various information please click here: https://groups.google.com/forum/#!forum/psychopy-users&lt;br /&gt;
&lt;br /&gt;
==== GitHub Repository ====&lt;br /&gt;
&lt;br /&gt;
For requests / bug report / issues click here: https://github.com/psychopy/psychopy&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Psychopy&amp;diff=3455</id>
		<title>Psychopy</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Psychopy&amp;diff=3455"/>
		<updated>2015-11-13T10:50:41Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Psychopy&lt;br /&gt;
| logo                   = Psychopy Logo.gif&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Python&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = &lt;br /&gt;
| website                = &lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [[Media:TemplatePsychopy2013.zip|Template]]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [https://www.socsci.ru.nl/~wilberth/psychopy/index.html Course]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
PsychoPy is an alternative to Presentation, e-Prime and Inquisit. It is a Python library and application that allows presentation of stimuli and collection of data for a wide range of neuroscience, psychology and psychophysics experiments. When used on DCC computers PsychoPy is guaranteed to be millisecond accurate.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
=== Python Packages ===&lt;br /&gt;
&lt;br /&gt;
Click [http://www.psychopy.org/installation.html here] for more information&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Python Library  &lt;br /&gt;
! Version&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| numpy || version 0.9.6 or greater&lt;br /&gt;
|-&lt;br /&gt;
| scipy || version 0.4.8 or greater&lt;br /&gt;
|-&lt;br /&gt;
| pyglet || version 1.1.4, not version 1.2&lt;br /&gt;
|-&lt;br /&gt;
| wxPython || version 2.8.10 or 2.8.11, not 2.9&lt;br /&gt;
|-&lt;br /&gt;
| Python Imaging Library || sudo easy_install PIL&lt;br /&gt;
|-&lt;br /&gt;
| matplotlib || for plotting and fast polygon routines&lt;br /&gt;
|-&lt;br /&gt;
| lxml || needed for loading/saving builder experiment files&lt;br /&gt;
|-&lt;br /&gt;
| openpyxl || for loading params from xlsx files&lt;br /&gt;
|-&lt;br /&gt;
| pyo || sound, version 0.6.2 or higher, compile with —-no-messages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Course ==&lt;br /&gt;
[https://www.socsci.ru.nl/~wilberth/psychopy/index.html psychopy course website]&lt;br /&gt;
== Templates ==&lt;br /&gt;
Find the presentation Template here [[Media:TemplatePsychopy2013.zip]]&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
==== Version History ====&lt;br /&gt;
&lt;br /&gt;
For version history and bug fixes please check here: http://www.psychopy.org/changelog.html&lt;br /&gt;
&lt;br /&gt;
==== Google Mailing list ====&lt;br /&gt;
&lt;br /&gt;
For various information please click here: https://groups.google.com/forum/#!forum/psychopy-users&lt;br /&gt;
&lt;br /&gt;
==== GitHub Repository ====&lt;br /&gt;
&lt;br /&gt;
For requests / bug report / issues click here: https://github.com/psychopy/psychopy&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Brainvision&amp;diff=3453</id>
		<title>Brainvision</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Brainvision&amp;diff=3453"/>
		<updated>2015-11-13T10:47:12Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tsg&lt;br /&gt;
| name           = Brainvision&lt;br /&gt;
| image          = Logo brainproducts.png&lt;br /&gt;
| caption        = &lt;br /&gt;
| downloads      = {{bulleted list&lt;br /&gt;
  | [[Media:Analyzer210.zip | Brainvision Analyzer]] (zip)&lt;br /&gt;
  | [[Media:Recorder_1-20.zip | Brainvision Recorder]] (zip)&lt;br /&gt;
  }}&lt;br /&gt;
| manuals        = {{bulleted list&lt;br /&gt;
  | [[Media:BrainVision_Analyzer_UM.pdf | Brainvision Analyser Manual]]&lt;br /&gt;
  | [[Media:BrainVision_Recorder_UM.pdf | Brainvision Recorder Manual]]&lt;br /&gt;
  | [[Media:Macro_Cookbook.pdf | Brainvision Macro Cookbook Manual]]&lt;br /&gt;
  | [[Media:BrainVision_RecView_UM.pdf | Brainvision RecView Manual]]&lt;br /&gt;
  | [[Media:Automation_Reference_Manual.pdf | Brainvision Automation Manual]]&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Electroencephalography is the neurophysiological measurement of electrical activity in the brain as recorded by electrodes placed on the scalp or, in special cases, subdurally or in the cerebral cortex. The resulting traces are known as an electroencephalogram (EEG) and represent a summation of post-synaptic potentials from a large number of neurons. &lt;br /&gt;
&lt;br /&gt;
The use of EEG in neuroscience research delivers a number of benefits. One is that EEG is non-invasive for the research subject. Furthermore, the need to restrict the subject‘s movements is clearly lower than in other fields of neuroscience such as functional magnetic resonance imaging (fMRI). A further benefit is that many EEG applications record spontaneous brain activity, which means that the subject does not need to be able to cooperate with the researcher (as is necessary, for instance, during behavioral testing in neuropsychology). Also, EEGs have a high temporal resolution compared with techniques such as fMRI and PET and are capable of detecting changes in electrical activity in the brain on a time scale in the millisecond region.&lt;br /&gt;
&lt;br /&gt;
In conventional scalp EEG, the recording is obtained by applying electrodes to the scalp using a conductive gel or paste, usually after preparing the scalp area by light abrasion to reduce electrode-scalp impedance. Many systems typically use electrodes which are each attached to an individual wire. Some systems use caps in which electrodes are embedded. This latter method is particularly common when high-density arrays of electrodes are required.&lt;br /&gt;
&lt;br /&gt;
In addition to internal artifacts such as those produced by blinking, there are many artifacts which originate from outside the patient. Movement by the patient generates huge artifacts. Sweating or changes in temperature may cause electrode drifts. Spikes can originate from a momentary change in impedance at a given electrode. Poor grounding of the EEG electrodes can cause significant 50 or 60 Hz artifacts arising from the power system‘s frequency. &lt;br /&gt;
&lt;br /&gt;
Brain Products EEG amplifiers are equipped with a number of noise reduction techniques such as active noise cancellation and active electrodes. High common mode rejection as well as low amplifier noise ensure maximum data quality. Our huge product range includes a range of electrodes and caps with custom or standard montages as well as a variety of requisite accessories.&lt;br /&gt;
&lt;br /&gt;
== Digital Port Settings (Markers/Buttonbox) ==&lt;br /&gt;
&lt;br /&gt;
[[image:DigitalPort.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Interface BITSIbox ==&lt;br /&gt;
&lt;br /&gt;
For the settings of the interface and to send the markers go to: http://tsgdoc.socsci.ru.nl/index.php?title=ButtonBoxes&lt;br /&gt;
&lt;br /&gt;
== Presentation ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the BITSI simple protocol you will have to reset the code manually to 0.&lt;br /&gt;
BITSI simple code:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot; line&amp;gt;&lt;br /&gt;
#TemplateINFO.pcl&lt;br /&gt;
&lt;br /&gt;
output_port Oport = output_port_manager.get_port( 1 );&lt;br /&gt;
&lt;br /&gt;
#TemplateSUBS.pcl&lt;br /&gt;
&lt;br /&gt;
Oport.send_code(100);  #This is your marker code, range code 1-255&lt;br /&gt;
wait_interval(4);      #4ms delay for the code to be recorded by brainvision; 2ms-&amp;gt;500hz sampling rate so 2 samples available&lt;br /&gt;
Oport.send_code(0);    #Back to 0; now ready to send a new code&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In BITSI extended protocol the reset is done by a specific time set with the capital &amp;quot;T&amp;quot;.&lt;br /&gt;
BITSI extended:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot; line&amp;gt;&lt;br /&gt;
#TemplateINFO.pcl&lt;br /&gt;
&lt;br /&gt;
output_port Oport = output_port_manager.get_port( 1 );&lt;br /&gt;
&lt;br /&gt;
#TemplateSUBS.pcl&lt;br /&gt;
&lt;br /&gt;
#only specify this ones, then its valid for the full experiment&lt;br /&gt;
Oport.send_string(&amp;quot;T&amp;quot;);  #Specify the pulse length time&lt;br /&gt;
Oport.send_code(4);    #4ms delay for the code to be recorded by brainvision; 2ms-&amp;gt;500hz sampling rate so 2 samples available&lt;br /&gt;
&lt;br /&gt;
Oport.send_string(&amp;quot;P&amp;quot;);  #Specify its a pulse you want to send out&lt;br /&gt;
Oport.send_code(100);    #This is your marker code, range code 1-255&lt;br /&gt;
#Now it resets itself automatically to 0 after the specified time&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Python ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot; line&amp;gt;&lt;br /&gt;
#!/usr/bin/env python&lt;br /&gt;
&lt;br /&gt;
# import the rusocsci.buttonbox module&lt;br /&gt;
from rusocsci import buttonbox &lt;br /&gt;
&lt;br /&gt;
# make a buttonbox&lt;br /&gt;
bb = buttonbox.Buttonbox()&lt;br /&gt;
&lt;br /&gt;
# wait for a single button press&lt;br /&gt;
bb.sendMarker(100)    #This is your marker code, range code 1-255&lt;br /&gt;
core.wait(0.002)      #2ms delay for the code to be recorded by brainvision; 2ms-&amp;gt;500hz sampling rate&lt;br /&gt;
bb.sendMarker(0)      #Back to 0; now ready to send a new code&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== BrainVision Recorder - Default Workspace ==&lt;br /&gt;
&lt;br /&gt;
'''Audience:'''&lt;br /&gt;
&lt;br /&gt;
All BrainVision Recorder users&lt;br /&gt;
&lt;br /&gt;
'''Description'''&lt;br /&gt;
&lt;br /&gt;
To make sure all data acquired at the DCC can be utilized for extensive analysis, default settings (sample rate, filters and such) are recommended for all EEG experiments.&lt;br /&gt;
These settings have to be specified in the Workspace of the BrainVision Recorder package (screenshots of the BrainVision Recorder program are used below to illustrate how one can enter the settings correctly into the workspace). &lt;br /&gt;
&lt;br /&gt;
'''Download workspace BrainVision Recorder'''&lt;br /&gt;
&lt;br /&gt;
Links and Documentation For the standard 32 and 64 electrode setup, workspaces are available here. &lt;br /&gt;
&lt;br /&gt;
Find the Brainvision analyzer manual here [[Media:actiCAP 32 Channel_default.zip]]&lt;br /&gt;
&lt;br /&gt;
Find the Brainvision analyzer manual here [[Media:actiCAP 64 Channel_default.zip]]&lt;br /&gt;
&lt;br /&gt;
Please check the BrainVision Recorder manual (English / German) for more in depth details.&lt;br /&gt;
&lt;br /&gt;
'''Defining a workspace in BrainVision Recorder'''&lt;br /&gt;
&lt;br /&gt;
The default settings required for EEG experiments have to be specified in the Workspace of the BrainVision Recorder package. This can be done as follows.&lt;br /&gt;
Make a copy with a new name of an existing workspace file. Default 32 and 64 channel workspace files can be found on the data drive, D:\Workfiles\.&lt;br /&gt;
*Open the BrainVision Recorder package on the EEG computer in the lab of your choice by double clicking on the icon.&lt;br /&gt;
*Go to File / Open Workspace and open your workspace file.&lt;br /&gt;
*Go to File / Edit Workspace. &lt;br /&gt;
*The following window will appear on the computer screen:&lt;br /&gt;
&lt;br /&gt;
[[File:1.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this window one defines the directory to which the raw datafiles have to be written. Always choose D:\Raw Files\&amp;lt;your name&amp;gt;\....&lt;br /&gt;
You can also use the option Automatic Filename Generation if you wish to have the names of your raw data files to be automatically generated.&lt;br /&gt;
Please note that your workspace may contain valuable information about your EEG-configuration.&lt;br /&gt;
Always keep a copy of the workspace file with your raw data! Never leave your data on the EEG-PC. Always copy data immediately after your experiment to your network drive.&lt;br /&gt;
Every two weeks your data will be erased automatically.&lt;br /&gt;
&lt;br /&gt;
'''Good practice directly after your experiment:&lt;br /&gt;
&lt;br /&gt;
*Ensure you have a copy of your workspace file&lt;br /&gt;
*Copy your data to your network drive or an external harddrive&lt;br /&gt;
*Make an archive-copy of your raw data files according to the archiving policy in your PI-group.&lt;br /&gt;
*Delete your data files from the local disk of the EEG-PC. Files will be erased automatically!&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
'''AMPLIFIER SETTINGS:'''&lt;br /&gt;
&lt;br /&gt;
Click on the button &amp;quot;next&amp;quot;,  the following window appears on your screen:&lt;br /&gt;
&lt;br /&gt;
[[File:screenshot amplifier settings.png|600px|Image: 600 pixels]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First press &amp;quot;Scan for Amplifiers&amp;quot;. BrainVision Recorder will give an overview of the amplifiers the software is communicating with.&lt;br /&gt;
The following default DCC settings are recommended for all channels.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Setting&lt;br /&gt;
!Default&lt;br /&gt;
|-&lt;br /&gt;
|Nr. of channels to be used &lt;br /&gt;
|[]&lt;br /&gt;
|-&lt;br /&gt;
|Sampling rate (=downsampling filter) &lt;br /&gt;
|500Hz &lt;br /&gt;
|-&lt;br /&gt;
|Resolution &lt;br /&gt;
|0.1 μV &lt;br /&gt;
|-&lt;br /&gt;
|Low Cutoff &lt;br /&gt;
|10 s (frequency 0.016 Hz) &lt;br /&gt;
|-&lt;br /&gt;
|High Cutoff (= anti-aliasing filter) &lt;br /&gt;
|1000 Hz &lt;br /&gt;
|-&lt;br /&gt;
|Low impedance &lt;br /&gt;
|Switched OFF. &lt;br /&gt;
|-&lt;br /&gt;
|Use individual settings &lt;br /&gt;
|Only use this option to specify the electrode names of the electrode arrangement of your choice. &lt;br /&gt;
|} &lt;br /&gt;
 &lt;br /&gt;
'''SOFTWARE FILTERS:'''&lt;br /&gt;
&lt;br /&gt;
Click on the button Next, the following window appears on your screen.&lt;br /&gt;
&lt;br /&gt;
[[File:screenshot software filters.png|600px|Image: 600 pixels]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''PLEASE NOTE THAT THIS CARD HAS THREE TABS!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''TAB1: &amp;quot;Raw data saving filters&amp;quot;'''&lt;br /&gt;
The following default settings are recommended for all channels:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Setting&lt;br /&gt;
!Default DCC settings&lt;br /&gt;
|- &lt;br /&gt;
|Enable filters &lt;br /&gt;
|Switched ON &lt;br /&gt;
|- &lt;br /&gt;
|Low Cutoff Filter &lt;br /&gt;
|10s (frequency 0.016 Hz) &lt;br /&gt;
|- &lt;br /&gt;
|High Cutoff Filter &lt;br /&gt;
|125 Hz &lt;br /&gt;
|- &lt;br /&gt;
|Notch Filter &lt;br /&gt;
|Switched OFF &lt;br /&gt;
|- &lt;br /&gt;
|Use Individual Settings &lt;br /&gt;
|Switched OFF &lt;br /&gt;
|}&lt;br /&gt;
'''Note 1:'''&lt;br /&gt;
&lt;br /&gt;
Sampling of the EEG is done by the amplifier with 5000Hz fixed and either 1000Hz anti aliasing filter (normal) or 250Hz anti aliasing filter (MRI only!). Downsampling can be done realtime on the computer to 200, 250, 500, 1000, 2500 or 5000. An appropriate anti-aliasing filter should be selected for that as well, depending on the downsampling frequency. &lt;br /&gt;
At the default sampling rate of 500Hz, use a cutoff frequency not higher than 200Hz.&lt;br /&gt;
&lt;br /&gt;
'''Note 2:'''&lt;br /&gt;
&lt;br /&gt;
Skin impedance should be kept low, e.g. below 20kΩ. We are currently looking into the possibility of running experiments with high skin impedance.&lt;br /&gt;
&lt;br /&gt;
'''TAB2: &amp;quot;Segmentation filters&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
Click on the tab &amp;quot;Segmentation Filters&amp;quot;, the following window appears on your screen.&lt;br /&gt;
&lt;br /&gt;
[[File:4.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On this page filters can be specified for all data that is segmented/averaged online.&lt;br /&gt;
 &lt;br /&gt;
'''Since we recommend to collect all data in the continuous mode, these filters do not have to be specified and the &amp;quot;Enable Filters&amp;quot; option should  be switched off.'''&lt;br /&gt;
&lt;br /&gt;
'''TAB 3: &amp;quot;Display filters&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
Click on the tab &amp;quot;Display Filters&amp;quot;, the following window appears on your screen.&lt;br /&gt;
&lt;br /&gt;
[[File:5.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These filters are only set for display. &lt;br /&gt;
It is recommended to set the filters in exactly the same way as the &amp;quot;Raw Data Saving Filters&amp;quot; so that you see is what you get.&lt;br /&gt;
Thus, the following default settings are recommended:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Setting&lt;br /&gt;
!Default&lt;br /&gt;
|-&lt;br /&gt;
|Enable filters &lt;br /&gt;
|Switched ON &lt;br /&gt;
|-&lt;br /&gt;
|Low Cutoff Filter &lt;br /&gt;
|10s (frequency 0.016 Hz) &lt;br /&gt;
|-&lt;br /&gt;
|High Cutoff Filter &lt;br /&gt;
|125 Hz &lt;br /&gt;
|-&lt;br /&gt;
|Notch Filter &lt;br /&gt;
|Switched OFF &lt;br /&gt;
|-&lt;br /&gt;
|Use Individual Settings &lt;br /&gt;
|Switched OFF &lt;br /&gt;
|}&lt;br /&gt;
'''SEGMENTATION / AVERAGING:'''&lt;br /&gt;
&lt;br /&gt;
Click on the button &amp;quot;next&amp;quot;, the following window appears on your screen:&lt;br /&gt;
&lt;br /&gt;
[[File:6.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On this page settings can be specified for online segmentation/averaging of EEG data. '''Since we recommend to collect all data in the continuous mode, these settings do not have to be specified and the &amp;quot;Enable Filters&amp;quot; option should  be switched off.''' &lt;br /&gt;
However, if one would like to see an average of their data on screen, just for display purposes, one can enter the settings here (and the filter specifications for the segmented data in the &amp;quot;Segmentation Filters&amp;quot; tab (described above)).&lt;br /&gt;
Please check the BrainVision Recorder manual (English / German) for more in depth details.&lt;br /&gt;
&lt;br /&gt;
[[File:Acticap64.JPG|600px|Image: 600 pixels]]&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=File:Logo_brainproducts.png&amp;diff=3452</id>
		<title>File:Logo brainproducts.png</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=File:Logo_brainproducts.png&amp;diff=3452"/>
		<updated>2015-11-13T10:46:03Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3446</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3446"/>
		<updated>2015-11-13T10:39:54Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
C:\toolbox\psychtoolbox&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3445</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3445"/>
		<updated>2015-11-13T10:39:38Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| logo size              = 125px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
C:\toolbox\psychtoolbox&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3444</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3444"/>
		<updated>2015-11-13T10:39:17Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
C:\toolbox\psychtoolbox&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3443</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3443"/>
		<updated>2015-11-13T10:38:52Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johaness Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3442</id>
		<title>Gitlab Social Sciences</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Gitlab_Social_Sciences&amp;diff=3442"/>
		<updated>2015-11-13T10:38:32Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Gitlab Community Edition&lt;br /&gt;
| logo                   = wm_no_bg.svg&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = Ruby&lt;br /&gt;
| operating system       = &lt;br /&gt;
| platform               = Microsoft Windows, MacOSX, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://en.wikipedia.org/wiki/MIT_License MIT License]&lt;br /&gt;
| website                = [http://about.gitlab.com www.gitlab.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://git-scm.com/downloads Git Download]&lt;br /&gt;
        | [https://git-scm.com/download/gui/linux Git Desktop Clients]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://doc.gitlab.com/ce/ Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
GitLab offers git repository management, code reviews, issue tracking, activity feeds and wikis. &lt;br /&gt;
&lt;br /&gt;
With Gitlab you can:&lt;br /&gt;
* Create code together&lt;br /&gt;
* Review code together&lt;br /&gt;
* Deploy code together&lt;br /&gt;
* Document code together&lt;br /&gt;
&lt;br /&gt;
You can access the Gitlab within the campus network. From outside the campus you will need a VPN connection &amp;lt;ref&amp;gt;[http://www.ru.nl/isc/medewerkers/externe-toegang/veilige-verbinding/@965054/vpn/ Radboud University VPN Manual]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Requirements=== &lt;br /&gt;
* For more information about usage requirements for various operation systems you can click [http://doc.gitlab.com/ce/gitlab-basics/start-using-git.html here]&lt;br /&gt;
&lt;br /&gt;
===User Login===&lt;br /&gt;
&lt;br /&gt;
You can logon on the environment with your University number or student number and password.&lt;br /&gt;
&lt;br /&gt;
 '''https://gitlab.socsci.ru.nl'''&lt;br /&gt;
&lt;br /&gt;
====External Users====&lt;br /&gt;
&lt;br /&gt;
You can send a request with the following information to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or contact [mailto:j.keyser@donders.ru.nl Johaness Keyser]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Username&lt;br /&gt;
|-&lt;br /&gt;
| Email adres&lt;br /&gt;
|-&lt;br /&gt;
| Full Name &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
&lt;br /&gt;
===Command Line Instructions===&lt;br /&gt;
&lt;br /&gt;
Git Global Setup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ git config --global user.name &amp;quot;username&amp;quot;&lt;br /&gt;
$ git config --global user.email &amp;quot;email address&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ mkdir newproject&lt;br /&gt;
$ cd newproject&lt;br /&gt;
$ git init&lt;br /&gt;
$ touch README.md&lt;br /&gt;
$ git add README.md&lt;br /&gt;
$ git commit -m &amp;quot;first commit&amp;quot;&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Push an existing Git repository&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;background-color:#000; color:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
$ cd existing_git_repo&lt;br /&gt;
$ git remote add origin git@gitlab.socsci.ru.nl:username/newproject.git&lt;br /&gt;
$ git push -u origin master&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You can also create a new project within the webinterface in Gitlab.&lt;br /&gt;
*Within the project on the webinterface you will also find the command line instructions.&lt;br /&gt;
&lt;br /&gt;
=== Git Clients ===&lt;br /&gt;
&lt;br /&gt;
You can find the git clients for various operating systems [https://git-scm.com/downloads here]&lt;br /&gt;
&lt;br /&gt;
=== Editor support ===&lt;br /&gt;
&lt;br /&gt;
==== Brackets ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/zaggino/brackets-git Git plugin]&lt;br /&gt;
&lt;br /&gt;
===Documentation===&lt;br /&gt;
&lt;br /&gt;
====Git Documentation====&lt;br /&gt;
For Git documentation click [https://git-scm.com/documentation here]&lt;br /&gt;
&lt;br /&gt;
====GitLab Documentation====&lt;br /&gt;
For step-by-step tutorial click [http://doc.gitlab.com/ce/gitlab-basics/README.html here]&lt;br /&gt;
&lt;br /&gt;
====Video Tutorial====&lt;br /&gt;
&lt;br /&gt;
Or you can watch the following tutorial on the following youtube video.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=7p0hrpNaJ14}}&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For techincal issues you can contact [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers (Server Administrator)]&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|http://www.gitlab.com}}&lt;br /&gt;
*[https://git-scm.com/documentation Git] &amp;amp;nbsp;– Techincal documentation.&lt;br /&gt;
*[http://doc.gitlab.com/ce/ Gitlab]&amp;amp;nbsp;– Technical documentation.&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Virtualization_Server&amp;diff=3441</id>
		<title>Virtualization Server</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Virtualization_Server&amp;diff=3441"/>
		<updated>2015-11-13T10:38:11Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = VMware&lt;br /&gt;
| logo                   = vmware-logo.png&lt;br /&gt;
| logo size              = 150px&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = VMware 6&lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   =&lt;br /&gt;
| operating system       = Linux&lt;br /&gt;
| platform               = Windows, Mac, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://www.vmware.com/support/support-resources/licensing/product-licenses.html product]&lt;br /&gt;
| website                = [https://www.vmware.com www.vmware.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://my.vmware.com/web/vmware/info/slug/datacenter_cloud_infrastructure/vmware_vsphere/6_0 VSphere client]&lt;br /&gt;
        |&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [https://www.vmware.com/support/pubs/vsphere-esxi-vcenter-server-6-pubs.html vSphere Administration with the vSphere Client Guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
Virtualization is a proven software technology that makes it possible to run multiple operating systems and applications on the same server at the same time. &amp;lt;ref&amp;gt; [http://www.vmware.com/virtualization/overview Overview virtualization] &amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Run virtual Machines.&lt;br /&gt;
* Access virtual Machines.&lt;br /&gt;
* Dynamically allocate resources.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[image:virtualization.png | 300px |Image: 300 pixels]]&lt;br /&gt;
&lt;br /&gt;
==Hardware==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;   &lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:110px;&amp;quot;|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:250px;&amp;quot;| [[File:Dell Poweredge R730.jpg|300px|Image: 300 pixels]]&lt;br /&gt;
|-&lt;br /&gt;
| Type || Dell PowerEdge R730&lt;br /&gt;
|-&lt;br /&gt;
| CPU || 2x Intel E5-2650 v3 2.3GHz 10C/20T&lt;br /&gt;
|-&lt;br /&gt;
| Memory || 16x16GB RDIMM 2133MT/s, Dual Rank&lt;br /&gt;
|-&lt;br /&gt;
| Chipset || Intel C630 Series Chipset&lt;br /&gt;
|-&lt;br /&gt;
| Network Controllers || Broadcom 5720 QP 1Gb Network Daughter Card&lt;br /&gt;
|-&lt;br /&gt;
| Storage || 8x4TB&lt;br /&gt;
|-&lt;br /&gt;
| Storage Controller || PERC H730 Integrated RAID Controller, 1GB Cache&lt;br /&gt;
|-&lt;br /&gt;
| Power Supply || 2x 1100w 80Plus Gold&lt;br /&gt;
|-&lt;br /&gt;
| Year of Purchase || 12/2014&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Facility==&lt;br /&gt;
&lt;br /&gt;
This facility is not intended for calculating / HPC big data.&lt;br /&gt;
For such purposes we have  the DCC Cluster facility&amp;lt;ref&amp;gt;[https://wiki.science.ru.nl/DCC/Main_Page DCC Cluster]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Request==&lt;br /&gt;
&lt;br /&gt;
You can send a request to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers].&lt;br /&gt;
&lt;br /&gt;
You also need to provide the following information:&lt;br /&gt;
&lt;br /&gt;
*Requirements (Operating System, Software)&lt;br /&gt;
*CPU Cores&lt;br /&gt;
*Hard drive space&lt;br /&gt;
*Amount of memory needed&lt;br /&gt;
&lt;br /&gt;
The request will be evaluated by calculating the amount of resources left.&lt;br /&gt;
&lt;br /&gt;
==Remote Access==&lt;br /&gt;
&lt;br /&gt;
You will receive email with instructions to access the newly created virtual machine.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|https://www.vmware.com/}}&lt;br /&gt;
*[https://www.vmware.com/support/pubs/vsphere-esxi-vcenter-server-6-pubs.html Documentation]&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Virtualization_Server&amp;diff=3439</id>
		<title>Virtualization Server</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Virtualization_Server&amp;diff=3439"/>
		<updated>2015-11-13T10:36:39Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = VMware&lt;br /&gt;
| logo                   = vmware-logo.png&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = VMware 6&lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   =&lt;br /&gt;
| operating system       = Linux&lt;br /&gt;
| platform               = Windows, Mac, Linux&lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = [https://www.vmware.com/support/support-resources/licensing/product-licenses.html product]&lt;br /&gt;
| website                = [https://www.vmware.com www.vmware.com]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [https://my.vmware.com/web/vmware/info/slug/datacenter_cloud_infrastructure/vmware_vsphere/6_0 VSphere client]&lt;br /&gt;
        |&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [https://www.vmware.com/support/pubs/vsphere-esxi-vcenter-server-6-pubs.html vSphere Administration with the vSphere Client Guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Table of Contents will be generated here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
&lt;br /&gt;
Virtualization is a proven software technology that makes it possible to run multiple operating systems and applications on the same server at the same time. &amp;lt;ref&amp;gt; [http://www.vmware.com/virtualization/overview Overview virtualization] &amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Run virtual Machines.&lt;br /&gt;
* Access virtual Machines.&lt;br /&gt;
* Dynamically allocate resources.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[image:virtualization.png | 300px |Image: 300 pixels]]&lt;br /&gt;
&lt;br /&gt;
==Hardware==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;   &lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:110px;&amp;quot;|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width:250px;&amp;quot;| [[File:Dell Poweredge R730.jpg|300px|Image: 300 pixels]]&lt;br /&gt;
|-&lt;br /&gt;
| Type || Dell PowerEdge R730&lt;br /&gt;
|-&lt;br /&gt;
| CPU || 2x Intel E5-2650 v3 2.3GHz 10C/20T&lt;br /&gt;
|-&lt;br /&gt;
| Memory || 16x16GB RDIMM 2133MT/s, Dual Rank&lt;br /&gt;
|-&lt;br /&gt;
| Chipset || Intel C630 Series Chipset&lt;br /&gt;
|-&lt;br /&gt;
| Network Controllers || Broadcom 5720 QP 1Gb Network Daughter Card&lt;br /&gt;
|-&lt;br /&gt;
| Storage || 8x4TB&lt;br /&gt;
|-&lt;br /&gt;
| Storage Controller || PERC H730 Integrated RAID Controller, 1GB Cache&lt;br /&gt;
|-&lt;br /&gt;
| Power Supply || 2x 1100w 80Plus Gold&lt;br /&gt;
|-&lt;br /&gt;
| Year of Purchase || 12/2014&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Facility==&lt;br /&gt;
&lt;br /&gt;
This facility is not intended for calculating / HPC big data.&lt;br /&gt;
For such purposes we have  the DCC Cluster facility&amp;lt;ref&amp;gt;[https://wiki.science.ru.nl/DCC/Main_Page DCC Cluster]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Request==&lt;br /&gt;
&lt;br /&gt;
You can send a request to [mailto:c.lieu@socsci.ru.nl Chi Lieu] or [mailto:e.lieffers@ru.nl Eric Lieffers].&lt;br /&gt;
&lt;br /&gt;
You also need to provide the following information:&lt;br /&gt;
&lt;br /&gt;
*Requirements (Operating System, Software)&lt;br /&gt;
*CPU Cores&lt;br /&gt;
*Hard drive space&lt;br /&gt;
*Amount of memory needed&lt;br /&gt;
&lt;br /&gt;
The request will be evaluated by calculating the amount of resources left.&lt;br /&gt;
&lt;br /&gt;
==Remote Access==&lt;br /&gt;
&lt;br /&gt;
You will receive email with instructions to access the newly created virtual machine.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==External Links== &amp;lt;!-- Optional --&amp;gt;&lt;br /&gt;
*{{Official website|https://www.vmware.com/}}&lt;br /&gt;
*[https://www.vmware.com/support/pubs/vsphere-esxi-vcenter-server-6-pubs.html Documentation]&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3435</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3435"/>
		<updated>2015-11-13T10:16:18Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Default Location Psychtoolbox */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
C:\toolbox\psychtoolbox&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3433</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3433"/>
		<updated>2015-11-13T10:16:08Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Default Location Psychtoolbox */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
 C:\toolbox\psychtoolbox&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3432</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3432"/>
		<updated>2015-11-13T10:15:54Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Default Location Psychtoolbox */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;matlab&amp;quot; overflow:auto;&amp;quot;&amp;gt;&lt;br /&gt;
 '''C:\toolbox\psychtoolbox'''&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3431</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3431"/>
		<updated>2015-11-13T10:14:54Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: /* Default Location Psychtoolbox */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
 '''C:\toolbox\psychtoolbox'''&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3429</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3429"/>
		<updated>2015-11-13T10:12:43Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
 C:\toolbox\psychtoolbox&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3428</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3428"/>
		<updated>2015-11-13T10:08:49Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = [[Image:Matlab_Logo.png | 150px]]&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
 C:\toolbox\psychtoolbox&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3427</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3427"/>
		<updated>2015-11-13T10:08:34Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = [[Matlab_Logo.png | 150px]]&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
 C:\toolbox\psychtoolbox&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3426</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3426"/>
		<updated>2015-11-13T10:06:32Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = Matlab_Logo.png&lt;br /&gt;
| screenshot             = &lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
 C:\toolbox\psychtoolbox&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3425</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3425"/>
		<updated>2015-11-13T09:34:33Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = &lt;br /&gt;
| screenshot             = Matlab_Logo.png&lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
 C:\toolbox\psychtoolbox&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3424</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3424"/>
		<updated>2015-11-13T09:33:11Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = &lt;br /&gt;
| screenshot             = Matlab_Logo.png | 200px |&lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
 C:\toolbox\psychtoolbox&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
	<entry>
		<id>http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3423</id>
		<title>Matlab</title>
		<link rel="alternate" type="text/html" href="http://tsgdoc.socsci.ru.nl/index.php?title=Matlab&amp;diff=3423"/>
		<updated>2015-11-13T09:31:59Z</updated>

		<summary type="html">&lt;p&gt;C.Lieu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
| name                   = Mathworks Matlab&lt;br /&gt;
| logo                   = &lt;br /&gt;
| screenshot             = Matlab_Logo.png | 200px&lt;br /&gt;
| caption                = &lt;br /&gt;
| developer              = &lt;br /&gt;
| released               = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| discontinued           = &lt;br /&gt;
| latest release version = &lt;br /&gt;
| latest release date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| latest preview version = &lt;br /&gt;
| latest preview date    = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| installed version      = &lt;br /&gt;
| installed version date = &amp;lt;!-- {{Start date and age|YYYY|MM|DD|df=yes}} --&amp;gt;&lt;br /&gt;
| status                 = Active&lt;br /&gt;
| programming language   = C, C++, Java, MATLAB&lt;br /&gt;
| operating system       = Microsoft Windows, Linux, MacOSX&lt;br /&gt;
| platform               = &lt;br /&gt;
| size                   = &lt;br /&gt;
| language               = &lt;br /&gt;
| genre                  = &lt;br /&gt;
| license                = Proprietary commercial software&lt;br /&gt;
| website                = [http://nl.mathworks.com/products/matlab/ www.mathworks.com/matlab]&lt;br /&gt;
| resources              = &lt;br /&gt;
  {{Infobox tsg&lt;br /&gt;
    | child              = yes&lt;br /&gt;
    | downloads          = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Some Download link]&lt;br /&gt;
        | [http://www.ru.nl Some other Download link]&lt;br /&gt;
    }}&lt;br /&gt;
    | manuals            = {{bulleted list&lt;br /&gt;
        | [http://www.ru.nl Quick start guide]&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
MATLAB (matrix laboratory) is a multi-paradigm numerical computing environment and fourth-generation programming language. A proprietary programming language developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with programs written in other languages, including C, C++, Java, Fortran and Python.&lt;br /&gt;
&lt;br /&gt;
== Installed Toolboxes ==&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
 | MATLAB || Simulink || Bioinformatics Toolbox || Control System Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Curve Fitting Toolbox || DSP System Toolbox || Data Acquisition Toolbox || Database Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | DatapixxToolbox || Filter Design HDL Coder || Fixed-Point Designer || Image Acquisition Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Image Processing Toolbox || MATLAB Builder EX || MATLAB Builder JA || MATLAB Compiler&lt;br /&gt;
 |-&lt;br /&gt;
 | Mapping Toolbox || Neural Network Toolbox || Optimization Toolbox || Parallel Computing Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | Partial Differential Equation Toolbox || Psychtoolbox || Signal Processing Toolbox || Simulink 3D Animation&lt;br /&gt;
 |-&lt;br /&gt;
 | Simulink Control Design || Spreadsheet Link EX || Statistics Toolbox || Symbolic Math Toolbox&lt;br /&gt;
 |-&lt;br /&gt;
 | System Identification Toolbox || Wavelet Toolbox || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Matlab Libraries ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Matlab Library  &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Description &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installed&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Installer Type&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | URL&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Psychtoolbox || Psychophysics Toolbox is a free set of Matlab and GNU/Octave functions for vision research. || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Python installer || https://www.psychtoolbox.org/PsychtoolboxDownload &lt;br /&gt;
|-&lt;br /&gt;
| Gstreamer || GStreamer is a library for constructing graphs of media-handling components.  || style=&amp;quot;background-color:#9F9;&amp;quot; | Yes || Windows Installer || http://gstreamer.freedesktop.org/download/&lt;br /&gt;
|-&lt;br /&gt;
| BrainStream || BrainStream is a Matlab toolbox for designing and executing Brain-Computer-Interface (BCI) experiments.  || style=&amp;quot;background-color:#9F9;&amp;quot; | No || toolbox || http://brainstream.nu&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Default Location Psychtoolbox ==&lt;br /&gt;
&lt;br /&gt;
'''Windows'''&lt;br /&gt;
 C:\toolbox\psychtoolbox&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
For license and installation information click [http://wiki.science.ru.nl/cncz/Matlab '''here''']&lt;/div&gt;</summary>
		<author><name>C.Lieu</name></author>
	</entry>
</feed>