Metadata
Title
M.M.E. de Smaele
Category
general
UUID
9770dfa3470240de829c31109f0da8de
Source URL
https://repository.tudelft.nl/person/Person_0852af09-b1e8-423a-a166-fa5d6a375bf7
Parent URL
https://repository.tudelft.nl/person/Person_12c2f967-4bb1-472e-a56d-67fac1875e47
Crawl Time
2026-03-11T05:31:29+00:00
Rendered Raw Markdown
# M.M.E. de Smaele

**Source**: https://repository.tudelft.nl/person/Person_0852af09-b1e8-423a-a166-fa5d6a375bf7
**Parent**: https://repository.tudelft.nl/person/Person_12c2f967-4bb1-472e-a56d-67fac1875e47

Md

document.addEventListener("DOMContentLoaded", function () {
applyColorsToBadge()
});
function applyColorsToBadge() {
/\*\*
\* If not photo the person background badges are colorizing according to them name
\* (to maintain color constant without necessity of entry in database)
\* This script apply the bg colors according.
\*/
const elementBadge = document.getElementById("badge-")
const badgeHasImage = elementBadge.children[0]
if (badgeHasImage) {
elementBadge.style.backgroundColor = "transparent"
} else {
const colorId = "Md"
elementBadge.style.backgroundColor = generateColor(colorId);
}
}
const colorPalette = [
"#0076C2", "#009B77", "#E21A1A", "#D4A300",
"#2978A0", "#315659", "#9AB87A",
"#444B6E", "#3D315B", "#7D8CC4",
"#7E5920", "#8E5572", "#C879FF",
];
function generateColor(input) {
/\*\*
\* Function to generate a color from input string
\*/
// Hash the input to generate a consistent number
let hash = 0;
for (let i = 0; i < input.length; i++) {
hash = input.charCodeAt(i) + ((hash << 5) - hash);
}
// Map the hash to the color palette
const paletteIndex = Math.abs(hash) % colorPalette.length;
const baseColor = colorPalette[paletteIndex];
// Slightly modify the base color to keep it unique
return adjustColor(baseColor, hash);
}
function adjustColor(color, hash) {
/\*
\* Function to slightly adjust the color within colorPalette range to keep it unique
\* We have a color range pallet to maintain colors inside a certain website palette
\*/
let r = parseInt(color.substr(1, 2), 16);
let g = parseInt(color.substr(3, 2), 16);
let b = parseInt(color.substr(5, 2), 16);
// Add a slight variation based on the hash
r = (r + (hash & 0x0F)) % 256;
g = (g + ((hash >> 4) & 0x0F)) % 256;
b = (b + ((hash >> 8) & 0x0F)) % 256;
// Ensure color remains within range
return `#${('00' + r.toString(16)).substr(-2)}${('00' + g.toString(16)).substr(-2)}${('00' + b.toString(16)).substr(-2)}`;
}

## M.M.E. de Smaele

info

Please Note

<p>This page displays the records of the person named above and is not linked to a unique person identifier. This record may need to be merged to a profile.</p>

// Add event listeners to the navigation tabs active based on the url
document.addEventListener('DOMContentLoaded', function () {
setActiveTab();
});
function setActiveTab() {
const path = window.location.pathname;
document.querySelectorAll('.nav-tab-link a').forEach(function (tabLink) {
tabLink.classList.remove("active");
});
const activeTab = getActiveTab(path)
activeTab.classList.add("active");
}
function getActiveTab(path) {
/\*\*
\* We first look at the path to see which tab is active (being displayed)
\* If the path is not present, the user is in the "root/default" of the page "/person/:person\_id".
\* Is this case the first one (following the order in tabMapping) who has some quantity of work is the tab
\* being displayed (check person\_controller.py), thus this one is set active.
\*/
const tabMapping = {
academic: 2,
supervised: 0,
editorial: 0,
other: 0
};
// Check path first to set tab as active
for (let key in tabMapping) {
if (path.includes(key)) {
return document.querySelector(`[data-tab="${key}"]`);
}
}
// Fallback to work quantities
for (let key in tabMapping) {
if (tabMapping[key] > 0) {
return document.querySelector(`[data-tab="${key}"]`);
}
}
return null; // default case, if no match
}

Journal article
(2)

Sort by descending (newest to oldest)

Sort by ascending (oldest to newest)

2 records found

1

[Are the FAIR Data Principles fair?](https://repository.tudelft.nl/record/uuid:d2a7cbe2-5b58-442d-b2ef-f7ed741685af)

Journal article
(2020)
-
[Alastair Dunning](https://repository.tudelft.nl/person/Person_12c2f967-4bb1-472e-a56d-67fac1875e47)
,
[Madeleine de Smaele](https://repository.tudelft.nl/person/Person_0852af09-b1e8-423a-a166-fa5d6a375bf7)
,
[Jasmin Boehmer](https://repository.tudelft.nl/person/Person_39e488d0-2b14-4d6c-84fc-ba0084cbd0f0)

This practice paper describes an ongoing research project to test the effectiveness and relevance of the FAIR Data Principles. Simultaneously, it will analyse how easy it is for data archives to adhere to the principles. The research took place from November 2016 to January 2017,
...

This practice paper describes an ongoing research project to test the effectiveness and relevance of the FAIR Data Principles. Simultaneously, it will analyse how easy it is for data archives to adhere to the principles. The research took place from November 2016 to January 2017, and will be underpinned with feedback from the repositories.
The FAIR Data Principles feature 15 facets corresponding to the four letters of FAIR - Findable, Accessible, Interoperable, Reusable. These principles have already gained traction within the research world. The European Commission has recently expanded its demand for research to produce open data. The relevant guidelines1are explicitly written in the context of the FAIR Data Principles. Given an increasing number of researchers will have exposure to the guidelines, understanding their viability and suggesting where there may be room for modification and adjustment is of vital importance.
This practice paper is connected to a dataset(Dunning et al.,2017) containing the original overview of the sample group statistics and graphs, in an Excel spreadsheet. Over the course of two months, the web-interfaces, help-pages and metadata-records of over 40 data repositories have been examined, to score the individual data repository against the FAIR principles and facets. The traffic-light rating system enables colour-coding according to compliance and vagueness. The statistical analysis provides overall, categorised, on the principles focussing, and on the facet focussing results.
The analysis includes the statistical and descriptive evaluation, followed by elaborations on Elements of the FAIR Data Principles, the subject specific or repository specific differences, and subsequently what repositories can do to improve their information architecture.

expand\_more

[Data-intelligence training for library staff](https://repository.tudelft.nl/record/uuid:5d88048c-0a9e-43ab-9006-a8d2b6d31d1f)

Journal article
(2015)
-
[Ellen Verbakel](https://repository.tudelft.nl/person/Person_b5a93766-b4f3-402d-a892-7230a8ad2322)
,
[Madeleine De Smaele](https://repository.tudelft.nl/person/Person_0852af09-b1e8-423a-a166-fa5d6a375bf7)
,
[Marina Noordegraaf](https://repository.tudelft.nl/person/Person_e675542b-b6d5-40ca-9f58-1213d8705633)
,
[Nicole Potters](https://repository.tudelft.nl/person/Person_a618077e-76e7-413d-8a58-d97762d9766f)

The course Data Intelligence 4 Librarians was developed by 3TU.Datacentrum at the end of 2011 to provide online resources and training for digital preservation practitioners, specifically for library staff. The course is intended to overcome the insecurity and perceived lack of k
...

The course Data Intelligence 4 Librarians was developed by 3TU.Datacentrum at the end of 2011 to provide online resources and training for digital preservation practitioners, specifically for library staff. The course is intended to overcome the insecurity and perceived lack of knowledge about data management which prevents library staff from proactively providing support to research staff with the management, storage and sharing of their research data. The course objectives are: 1) to transfer and exchange knowledge about data management, and 2) to provide participants with the skills required to advise researchers or research groups on efficient and effective ways of adding value to their data. The course is an additional service provided by 3TU.Datacentrum44 a digital repository for research data set up by the research libraries of the three Dutch Universities of Technology (3TU): Delft University of Technology, Eindhoven University of Technology, and the University of Twente. The paper describes the process of creating the course, the methodology, and the results of the two courses in 2012. There were three phases to creating the course: 1) an investigation of the training needs, 2) the design of the course and 3) the development of the training materials. The training needs could be divided into hard skills (such as data management basics, data citation and knowledge of the data browser interface) and soft skills (such as acquisition skills, advisory skills and a reflective attitude towards their profession). This has led to a course with a competency-based modular design, consisting of four modules. The project team consisted of 3TU.Datacentrum staff. The team designed a blended learning course, composed of a didactical mix of group meetings, online study and homework assignments, including the website Data Intelligence45 that provides online reference material. By using a modern collaboration environment and social media, the course meets the needs of the modern scientific community. The training methodology proved effective in creating a solid base for digital preservation and a network of starting data librarians. In the first half of 2012, 14 librarians participated in the pilot course and provided feedback. The feedback has been used to improve the next cycle of the course, which started in September 2012. In February 2013 the third cycle starts. This paper demonstrates the choices made during the design process. Finally, future plans are discussed. They include expanding the course to make the materials also suitable to researchers and other data repositories in cooperation with organisations from The Netherlands.

expand\_more