- Graduated from Γcole CentraleSupΓ©lec (M.Eng.), UniversitΓ© Paris-Saclay (M.Sc.) and State University of Campinas (B.Eng.).
- Fluent in π¬π§ English, π«π· French, π§π· Portuguese, and πͺπΈ Spanish.
- I love merging creativity, science, and systems thinking to solve real-world problems with data.
-- Hi, I'm Ingrid β expressed as SQL.
-- Dialect: PostgreSQL-ish (but readable everywhere).
-- βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
-- 1) Core profile
-- βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
CREATE TABLE person (
id SERIAL PRIMARY KEY,
full_name TEXT NOT NULL CHECK (length(full_name) > 1),
origin TEXT NOT NULL,
current_city TEXT NOT NULL,
mission TEXT NOT NULL,
curiosity INT NOT NULL CHECK (curiosity BETWEEN 1 AND 10),
creativity INT NOT NULL CHECK (creativity BETWEEN 1 AND 10)
);
INSERT INTO person (full_name, origin, current_city, mission, curiosity, creativity)
VALUES
('Ingrid Valverde', 'Brazil π§π·', 'Luxembourg π±πΊ', 'Turning data into intelligence', 10, 10);βData is not just numbers β itβs the language of stories waiting to be told.β